mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2025-08-18 05:00:34 +02:00
Compare commits
2 Commits
1.31.1
...
delete-wor
Author | SHA1 | Date | |
---|---|---|---|
|
e60304b30d | ||
|
a6f9c72eb3 |
@@ -190,46 +190,18 @@ As translations need to be updated regularly, you can subscribe to this issue
|
|||||||
to receive a notification when an update is needed:
|
to receive a notification when an update is needed:
|
||||||
https://github.com/Julow/Unexpected-Keyboard/issues/373
|
https://github.com/Julow/Unexpected-Keyboard/issues/373
|
||||||
|
|
||||||
### Adding symbols to Shift, Fn, Compose and other modifiers
|
### Adding Compose key sequences
|
||||||
|
|
||||||
New key combinations can be added to builtin modifiers in the following files:
|
New Compose sequences can be added into `srcs/compose/compose/extra.json`.
|
||||||
|
If a entirely new family of sequences were to be added, a new `.json` file can
|
||||||
|
be created in the same directory to host them.
|
||||||
|
|
||||||
- Shift in `srcs/compose/shift.json`.
|
### Adding key combinations
|
||||||
- Fn in `srcs/compose/fn.json`.
|
|
||||||
- Compose in `srcs/compose/compose/extra.json`.
|
|
||||||
- Other modifiers are defined in the `accent_*.json` files in `srcs/compose`.
|
|
||||||
|
|
||||||
Generated code must then be updated by running:
|
Key combinations are defined in `srcs/juloo.keyboard2/KeyModifier.java`.
|
||||||
|
For example, keys modified by the `Fn` key are defined in method
|
||||||
|
`apply_fn_char`.
|
||||||
|
|
||||||
```
|
Keys with special meaning are defined in `KeyValue.java` in method
|
||||||
./gradlew compileComposeSequences
|
`getKeyByName`. Their special action are defined in `KeyEventHandler.java` in
|
||||||
```
|
method `key_up`
|
||||||
|
|
||||||
These files describe each symbols that get transformed when a given modifier is
|
|
||||||
activated, in JSON format. For example:
|
|
||||||
|
|
||||||
Example from `fn.json`, when `Fn` is activated, `<` becomes `«`:
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"<": "«",
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The result of a sequence can be a key name. See the list of key names in
|
|
||||||
[doc/Possible-key-values.md](doc/Possible-key-values.md). For example from
|
|
||||||
`fn.json`, when `Fn` is activated, space becomes `nbsp`:
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
" ": "nbsp",
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Compose sequences are made of several steps. For example, the sequence
|
|
||||||
`Compose V s = Š` is defined as:
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"V": {
|
|
||||||
"s": "Š"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# Unexpected Keyboard [<img src="https://hosted.weblate.org/widget/unexpected-keyboard/svg-badge.svg" alt="État de la traduction" />](https://hosted.weblate.org/engage/unexpected-keyboard/)
|
# Unexpected Keyboard
|
||||||
|
|
||||||
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
|
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
|
||||||
alt="Get it on F-Droid"
|
alt="Get it on F-Droid"
|
||||||
@@ -24,14 +24,7 @@ Usage: to apply the symbols located in the corners of each key, slide your finge
|
|||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png" alt="Screenshot-4" /> | <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png" alt="Screenshot-5" /> | <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png" alt="Screenshot-6" /> |
|
| <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png" alt="Screenshot-4" /> | <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png" alt="Screenshot-5" /> | <img src="/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png" alt="Screenshot-6" /> |
|
||||||
|
|
||||||
## Help translate the application
|
|
||||||
|
|
||||||
Improve the application translations [using Weblate](https://hosted.weblate.org/engage/unexpected-keyboard/).
|
|
||||||
|
|
||||||
[<img src="https://hosted.weblate.org/widget/unexpected-keyboard/multi-auto.svg" alt="État de la traduction" />](https://hosted.weblate.org/engage/unexpected-keyboard/)
|
|
||||||
|
|
||||||
## Similar apps
|
## Similar apps
|
||||||
|
|
||||||
* [Calculator++](https://git.bubu1.eu/Bubu/android-calculatorpp) - Calculator with a similar UX, swipe to corners for advanced math symbols and operators.
|
* [Calculator++](https://git.bubu1.eu/Bubu/android-calculatorpp) - Calculator with a similar UX, swipe to corners for advanced math symbols and operators.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
@@ -14,8 +14,8 @@ android {
|
|||||||
applicationId "juloo.keyboard2"
|
applicationId "juloo.keyboard2"
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdkVersion 35
|
targetSdkVersion 35
|
||||||
versionCode 48
|
versionCode 46
|
||||||
versionName "1.31.1"
|
versionName "1.30.3"
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@@ -25,30 +25,31 @@ Key values can be any of the following:
|
|||||||
+ `⏯:keyevent:85` A play/pause key (which has no effect in most apps).
|
+ `⏯:keyevent:85` A play/pause key (which has no effect in most apps).
|
||||||
+ `my@:'my.email@domain.com'` A key that sends an arbitrary string
|
+ `my@:'my.email@domain.com'` A key that sends an arbitrary string
|
||||||
|
|
||||||
- A macro, `legend:key_def1,key_def2,...`.
|
- A macro, `symbol:key_def1,key_def2,...`.
|
||||||
This results in a key with legend `legend` that behaves as if the sequence of `key_def` had been pressed in order.
|
This results in a key that behaves as if the sequence of `key_def` had been pressed in order.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
+ `CA:ctrl,a,ctrl,c` A key with legend CA that sends the sequence `ctrl+a`, `ctrl+c`.
|
+ `CA:ctrl,a,ctrl,c` A key with legend CA that sends the sequence `ctrl+a`, `ctrl+c`.
|
||||||
+ `Cd:ctrl,backspace` A key with legend Cd that sends the shortcut `ctrl+backspace`.
|
+ `Cd:ctrl,backspace` A key with legend Cd that sends the shortcut `ctrl+backspace`.
|
||||||
|
|
||||||
### Escape codes
|
## Escape codes
|
||||||
|
Value | Escape code for
|
||||||
When defining a key value, several characters have special effects. If you want a character not to have its usual effect but to be taken literally, you should "escape" it in the usual way for XML:
|
|
||||||
|
|
||||||
To get this character... | ...you can type
|
|
||||||
:---- | :------
|
:---- | :------
|
||||||
A literal newline character, which is different from `enter` and `action` in certain apps. | `\n`
|
`\?` | `?`
|
||||||
A literal tab character, which is different from `tab` in certain apps. | `\t`
|
`\#` | `#`
|
||||||
`\` | `\\`
|
`\@` | `@`
|
||||||
`&` | `&`
|
`\n` | Literal newline character. This is different from `enter` and `action` in certain apps.
|
||||||
`<` | `<`
|
`\t` | Literal tab character. This is different from `tab` in certain apps.
|
||||||
`>` | `>`
|
`\\` | `\`
|
||||||
`"` | `"`
|
|
||||||
|
|
||||||
The characters `?`, `#`, and `@` do not need to be escaped when writing custom layouts. Internally, they can be escaped by prepending backslash (by typing `\?`, `\#`, and `\@`).
|
XML escape codes also work, including:
|
||||||
|
|
||||||
The characters `,` and `:` can be escaped in a key value, using single quotes. For example, this macro defines a key with legend `http` that sends a string containing `:`: `<key c="http:home,'https://'" />` For simplicity, `,` and `:` cannot be escaped in the key legend.
|
Value | Escape code for
|
||||||
|
:------- | :------
|
||||||
|
`&` | `&`
|
||||||
|
`<` | `<`
|
||||||
|
`>` | `>`
|
||||||
|
`"` | `"`
|
||||||
|
|
||||||
## Modifiers
|
## Modifiers
|
||||||
System modifiers are sent to the app, which can take app-specific action.
|
System modifiers are sent to the app, which can take app-specific action.
|
||||||
@@ -95,8 +96,6 @@ Value | Meaning
|
|||||||
`delete_word` | Delete the word to the left of the cursor.
|
`delete_word` | Delete the word to the left of the cursor.
|
||||||
`forward_delete_word` | Delete the word to the right of the cursor.
|
`forward_delete_word` | Delete the word to the right of the cursor.
|
||||||
|
|
||||||
The values with `cursor_` are new in v1.31.0. Previous custom layouts specified the slider with `slider="true"`, which should be removed.
|
|
||||||
|
|
||||||
## Whitespace
|
## Whitespace
|
||||||
Value | Meaning
|
Value | Meaning
|
||||||
:------ | :------
|
:------ | :------
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
Delete a word with a circle gesture on the delete key.
|
|
||||||
Compose key can be unselected.
|
|
||||||
Improved space bar slider and added selection mode.
|
|
||||||
Lock shift with a circle gesture.
|
|
||||||
Improvements to layouts.
|
|
||||||
Various bug fixes and improvements to themes.
|
|
||||||
|
|
||||||
Huge thanks to the contributors: @0skar2 @chuckwagoncomputing @dzaima @eandersons Lokesh Kumar @lrvideckis @ms-jagadeeshan @quantenzitrone @Sestowner @solokot @Spike-from-NH @srikanban @tenextractor
|
|
@@ -1,9 +0,0 @@
|
|||||||
Bug fixes
|
|
||||||
|
|
||||||
Delete a word with a circle gesture on the delete key.
|
|
||||||
Compose key can be unselected.
|
|
||||||
Improved space bar slider and added selection mode.
|
|
||||||
Lock shift with a circle gesture.
|
|
||||||
Various bug fixes and improvements to themes and layouts.
|
|
||||||
|
|
||||||
Many thanks to the contributors: @HaleyHalcyon @Jaoheah @Spike-from-NH
|
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Klávesnice Unexpected</string>
|
<string name="app_name_release">Klávesnice Unexpected</string>
|
||||||
<string name="app_name_debug">Klávesnice Unexpected (pro ladění)</string>
|
<string name="app_name_debug">Klávesnice Unexpected (pro ladění)</string>
|
||||||
<string name="short_description">Nenáročná virtuální klávesnice pro vývojáře.</string>
|
<string name="short_description">Nenáročná virtuální klávesnice pro vývojáře.</string>
|
||||||
<string name="store_description">Hlavní funkcí je možnost psát více znaků posunutím kláves směrem k rohům.\n\nTato aplikace byla původně navržena pro programátory používající Termux.\nNyní je ideální pro každodenní použití.\n\nTato aplikace neobsahuje žádné reklamy, nevyužívá připojení k síti a je Open Source.</string>
|
<string name="store_description">"Hlavní funkcí je možnost psát více znaků posunutím kláves směrem k rohům.
|
||||||
<string name="settings_activity_label">Nastavení Klávesnice Unexpected</string>
|
|
||||||
<string name="pref_portrait">V režimu na výšku</string>
|
Tato aplikace byla původně navržena pro programátory používající Termux.
|
||||||
<string name="pref_landscape">V režimu na šířku</string>
|
Nyní je ideální pro každodenní použití.
|
||||||
<string name="pref_category_layout">Rozvržení</string>
|
|
||||||
<string name="pref_label_brightness">Upravit jas nápisu</string>
|
Tato aplikace neobsahuje žádné reklamy, nevyužívá připojení k síti a je Open Source."</string>
|
||||||
<string name="pref_keyboard_opacity">Upravit průhlednost pozadí klávesnice</string>
|
<string name="settings_activity_label">Nastavení Klávesnice Unexpected</string>
|
||||||
<string name="pref_key_opacity">Upravit průhlednost kláves</string>
|
<string name="pref_portrait">V režimu na výšku</string>
|
||||||
<string name="pref_key_activated_opacity">Upravit průhlednost stisknutých kláves</string>
|
<string name="pref_landscape">V režimu na šířku</string>
|
||||||
<string name="pref_layout_e_system">Dle nastavení systému</string>
|
<string name="pref_category_layout">Rozvržení</string>
|
||||||
<string name="pref_layout_e_custom">Vlastní rozvržení</string>
|
<string name="pref_label_brightness">Upravit jas nápisu</string>
|
||||||
<string name="pref_layouts_add">Přidat alternativní rozložení</string>
|
<string name="pref_keyboard_opacity">Upravit průhlednost pozadí klávesnice</string>
|
||||||
<string name="pref_layouts_item">Rozložení %1$d: %2$s</string>
|
<string name="pref_key_opacity">Upravit průhlednost kláves</string>
|
||||||
<string name="pref_layouts_remove_custom">Odebrat rozložení</string>
|
<string name="pref_key_activated_opacity">Upravit průhlednost stisknutých kláves</string>
|
||||||
<string name="pref_custom_layout_title">Vlastní rozložení</string>
|
<string name="pref_layout_e_system">Dle nastavení systému</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Vlastní rozvržení</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Přidat alternativní rozložení</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Rozložení %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Zobrazit NumPad</string>
|
<string name="pref_layouts_remove_custom">Odebrat rozložení</string>
|
||||||
<string name="pref_show_numpad_never">Nikdy</string>
|
<string name="pref_custom_layout_title">Vlastní rozložení</string>
|
||||||
<string name="pref_show_numpad_landscape">Pouze v režimu na šířku</string>
|
<string name="pref_show_numpad_title">Zobrazit NumPad</string>
|
||||||
<string name="pref_show_numpad_always">Vždy</string>
|
<string name="pref_show_numpad_never">Nikdy</string>
|
||||||
<string name="pref_number_row_title">Zobrazit řádek s čísly</string>
|
<string name="pref_show_numpad_landscape">Pouze v režimu na šířku</string>
|
||||||
<string name="pref_number_row_summary">Přidá řádek s čísly nad klávesnici, pokud je NumPad skrytý</string>
|
<string name="pref_show_numpad_always">Vždy</string>
|
||||||
<string name="pref_numpad_layout">Rozložení NumPadu</string>
|
<string name="pref_number_row_title">Zobrazit řádek s čísly</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Vyšší číslice jako první (horní řádek 789)</string>
|
<string name="pref_number_row_summary">Přidá řádek s čísly nad klávesnici, pokud je NumPad skrytý</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Nižší číslice jako první (horní řádek 123)</string>
|
<string name="pref_numpad_layout">Rozložení NumPadu</string>
|
||||||
<string name="pref_extra_keys_title">Přidat klávesy do klávesnice</string>
|
<string name="pref_numpad_layout_e_high_first">Vyšší číslice jako první (horní řádek 789)</string>
|
||||||
<string name="pref_extra_keys_custom">Přidat vlastní klávesy</string>
|
<string name="pref_numpad_layout_e_low_first">Nižší číslice jako první (horní řádek 123)</string>
|
||||||
<string name="pref_extra_keys_internal">Výbrané klávesy k přidaní do klávesnice</string>
|
<string name="pref_extra_keys_title">Přidat klávesy do klávesnice</string>
|
||||||
<string name="pref_category_typing">Psaní</string>
|
<string name="pref_extra_keys_custom">Přidat vlastní klávesy</string>
|
||||||
<string name="pref_swipe_dist_title">Vzdálenost posunutí prstem</string>
|
<string name="pref_extra_keys_internal">Výbrané klávesy k přidaní do klávesnice</string>
|
||||||
<string name="pref_swipe_dist_summary">Jak daleko je třeba posunout prst pro zadání znaku/znaménka v rohu klávey (%s)</string>
|
<string name="pref_category_typing">Psaní</string>
|
||||||
<string name="pref_long_timeout_title">Doba pro aktivaci dlouhého podržení</string>
|
<string name="pref_swipe_dist_title">Vzdálenost posunutí prstem</string>
|
||||||
<string name="pref_long_interval_title">Interval opakování znaků</string>
|
<string name="pref_swipe_dist_summary">Jak daleko je třeba posunout prst pro zadání znaku/znaménka v rohu klávey (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Opakování kláves při držení</string>
|
<string name="pref_long_timeout_title">Doba pro aktivaci dlouhého podržení</string>
|
||||||
<string name="pref_lock_double_tap_title">Dvojklik pro aktivaci Capslock(u)</string>
|
<string name="pref_long_interval_title">Interval opakování znaků</string>
|
||||||
<string name="pref_lock_double_tap_summary">Umožňuje zamknout Shift dvojklikem, namísto podržení</string>
|
<string name="pref_keyrepeat_enabled">Opakování kláves při držení</string>
|
||||||
<string name="pref_category_behavior">Chování</string>
|
<string name="pref_lock_double_tap_title">Dvojklik pro aktivaci Capslock(u)</string>
|
||||||
<string name="pref_autocapitalisation_title">Automatická kapitalizace</string>
|
<string name="pref_lock_double_tap_summary">Umožňuje zamknout Shift dvojklikem, namísto podržení</string>
|
||||||
<string name="pref_autocapitalisation_summary">Stiskne Shift na začátku věty</string>
|
<string name="pref_category_behavior">Chování</string>
|
||||||
<string name="pref_switch_input_immediate_title">Přepnout na posledně užívanou klávesnici</string>
|
<string name="pref_autocapitalisation_title">Automatická kapitalizace</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Jak bude klávesa pro přepnutí klávesnice reagovat</string>
|
<string name="pref_autocapitalisation_summary">Stiskne Shift na začátku věty</string>
|
||||||
<string name="pref_vibrate_custom">Vlastní vibrace</string>
|
<string name="pref_switch_input_immediate_title">Přepnout na posledně užívanou klávesnici</string>
|
||||||
<string name="pref_vibrate_duration_title">Síla vibrace</string>
|
<string name="pref_switch_input_immediate_summary">Jak bude klávesa pro přepnutí klávesnice reagovat</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Rozvržení zadávání PIN kódu</string>
|
<string name="pref_vibrate_custom">Vlastní vibrace</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Automaticky při psaní čísel, datumů a telefonních čísel</string>
|
<string name="pref_vibrate_duration_title">Síla vibrace</string>
|
||||||
<string name="pref_category_style">Styl</string>
|
<string name="pref_pin_entry_enabled_title">Rozvržení zadávání PIN kódu</string>
|
||||||
<string name="pref_margin_bottom_title">Spodní odsazení</string>
|
<string name="pref_pin_entry_enabled_summary">Automaticky při psaní čísel, datumů a telefonních čísel</string>
|
||||||
<string name="pref_keyboard_height_title">Výška klávesnice</string>
|
<string name="pref_category_style">Styl</string>
|
||||||
<string name="pref_horizontal_margin_title">Boční odsazení</string>
|
<string name="pref_margin_bottom_title">Spodní odsazení</string>
|
||||||
<string name="pref_character_size_title">Velikost znaků</string>
|
<string name="pref_keyboard_height_title">Výška klávesnice</string>
|
||||||
<string name="pref_character_size_summary">Velikost znaků zobrazených na klávesnici (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Boční odsazení</string>
|
||||||
<string name="pref_theme">Motiv</string>
|
<string name="pref_character_size_title">Velikost znaků</string>
|
||||||
<string name="pref_theme_e_system">Dle systému</string>
|
<string name="pref_character_size_summary">Velikost znaků zobrazených na klávesnici (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Tmavý</string>
|
<string name="pref_theme">Motiv</string>
|
||||||
<string name="pref_theme_e_light">Světlý</string>
|
<string name="pref_theme_e_system">Dle systému</string>
|
||||||
<string name="pref_theme_e_black">Černý</string>
|
<string name="pref_theme_e_dark">Tmavý</string>
|
||||||
<string name="pref_theme_e_altblack">Černý (alternativní)</string>
|
<string name="pref_theme_e_light">Světlý</string>
|
||||||
<string name="pref_theme_e_white">Bílý</string>
|
<string name="pref_theme_e_black">Černý</string>
|
||||||
<string name="pref_theme_e_epaper">ePapír</string>
|
<string name="pref_theme_e_altblack">Černý (alternativní)</string>
|
||||||
<string name="pref_theme_e_desert">Poušťě</string>
|
<string name="pref_theme_e_white">Bílý</string>
|
||||||
<string name="pref_theme_e_jungle">Džungle</string>
|
<string name="pref_theme_e_epaper">ePapír</string>
|
||||||
<string name="pref_theme_e_monet">Monet (dle systému)</string>
|
<string name="pref_theme_e_desert">Poušťě</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Světlý)</string>
|
<string name="pref_theme_e_jungle">Džungle</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Tmavý)</string>
|
<string name="pref_theme_e_monet">Monet (dle systému)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monet (Světlý)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Velmi krátká</string>
|
<string name="pref_theme_e_monetdark">Monet (Tmavý)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Krátká</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Běžná</string>
|
<string name="pref_swipe_dist_e_very_short">Velmi krátká</string>
|
||||||
<string name="pref_swipe_dist_e_far">Dlouhá</string>
|
<string name="pref_swipe_dist_e_short">Krátká</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Velmi dlouhá</string>
|
<string name="pref_swipe_dist_e_default">Běžná</string>
|
||||||
<string name="pref_key_horizontal_space">Horizontální mezery mezi klávesami</string>
|
<string name="pref_swipe_dist_e_far">Dlouhá</string>
|
||||||
<string name="pref_key_vertical_space">Vertikální mezery mezi klávesami</string>
|
<string name="pref_swipe_dist_e_very_far">Velmi dlouhá</string>
|
||||||
<string name="pref_border_config_title">Přizpůsobit okraje</string>
|
<string name="pref_key_horizontal_space">Horizontální mezery mezi klávesami</string>
|
||||||
<string name="pref_border_width_title">Šířka okraje</string>
|
<string name="pref_key_vertical_space">Vertikální mezery mezi klávesami</string>
|
||||||
<string name="pref_corners_radius_title">Poloměr okraje</string>
|
<string name="pref_border_config_title">Přizpůsobit okraje</string>
|
||||||
<string name="pref_circle_sensitivity_title">Citlivost kruhového gesta</string>
|
<string name="pref_border_width_title">Šířka okraje</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Vysoká</string>
|
<string name="pref_corners_radius_title">Poloměr okraje</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Střední</string>
|
<string name="pref_circle_sensitivity_title">Citlivost kruhového gesta</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Nízká</string>
|
<string name="pref_circle_sensitivity_e_high">Vysoká</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Deaktivováno</string>
|
<string name="pref_circle_sensitivity_e_medium">Střední</string>
|
||||||
<string name="key_action_next">Další</string>
|
<string name="pref_circle_sensitivity_e_low">Nízká</string>
|
||||||
<string name="key_action_done">Dokončit</string>
|
<string name="pref_circle_sensitivity_e_disabled">Deaktivováno</string>
|
||||||
<string name="key_action_go">Spustit</string>
|
<string name="key_action_next">Další</string>
|
||||||
<string name="key_action_prev">Předchozí</string>
|
<string name="key_action_done">Dokončit</string>
|
||||||
<string name="key_action_search">Hledat</string>
|
<string name="key_action_go">Spustit</string>
|
||||||
<string name="key_action_send">Odeslat</string>
|
<string name="key_action_prev">Předchozí</string>
|
||||||
<string name="launcher_button_imesettings">Aktivovat klávesnici</string>
|
<string name="key_action_search">Hledat</string>
|
||||||
<string name="launcher_button_imepicker">Vybrat klávesnici</string>
|
<string name="key_action_send">Odeslat</string>
|
||||||
<string name="launcher_description">Tato aplikace je pouhou virtuální klávesnicí. Přejděte do systémového nastavení, kliknutím na tlačítko níže a aktivujte ji.</string>
|
<string name="launcher_button_imesettings">Aktivovat klávesnici</string>
|
||||||
<string name="launcher_sourcecode">Toto je volná, open-source aplikace. Její zdrojový kód, či hlášení chyb, naleznete na Githubu.</string>
|
<string name="launcher_button_imepicker">Vybrat klávesnici</string>
|
||||||
<string name="launcher_tryhere">Po aktivaci můžete klávesnici rovnou vyzkoušet zde:</string>
|
<string name="launcher_description">Tato aplikace je pouhou virtuální klávesnicí. Přejděte do systémového nastavení, kliknutím na tlačítko níže a aktivujte ji.</string>
|
||||||
<string name="launcher_tryhere_hint">Zkoušejte zde</string>
|
<string name="launcher_sourcecode">Toto je volná, open-source aplikace. Její zdrojový kód, či hlášení chyb, naleznete na Githubu.</string>
|
||||||
<string name="key_descr_capslock">Caps lock</string>
|
<string name="launcher_tryhere">Po aktivaci můžete klávesnici rovnou vyzkoušet zde:</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere_hint">Zkoušejte zde</string>
|
||||||
<string name="key_descr_switch_greekmath">Řecké a matematické symboly</string>
|
<string name="key_descr_capslock">Caps lock</string>
|
||||||
<string name="key_descr_change_method">Přepnout klávesnici</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">Hlasové zadávání</string>
|
<string name="key_descr_switch_greekmath">Řecké a matematické symboly</string>
|
||||||
<string name="key_descr_copy">Kopírovat</string>
|
<string name="key_descr_change_method">Přepnout klávesnici</string>
|
||||||
<string name="key_descr_paste">Vložit</string>
|
<string name="key_descr_voice_typing">Hlasové zadávání</string>
|
||||||
<string name="key_descr_cut">Vyjmout</string>
|
<string name="key_descr_copy">Kopírovat</string>
|
||||||
<string name="key_descr_selectAll">Označit vše</string>
|
<string name="key_descr_paste">Vložit</string>
|
||||||
<string name="key_descr_shareText">Sdílet text</string>
|
<string name="key_descr_cut">Vyjmout</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Vložit jako prostý text</string>
|
<string name="key_descr_selectAll">Označit vše</string>
|
||||||
<string name="key_descr_undo">Zpět</string>
|
<string name="key_descr_shareText">Sdílet text</string>
|
||||||
<string name="key_descr_redo">Znovu</string>
|
<string name="key_descr_pasteAsPlainText">Vložit jako prostý text</string>
|
||||||
<string name="key_descr_ª">Indikátor řadové číslovky</string>
|
<string name="key_descr_undo">Zpět</string>
|
||||||
<string name="key_descr_º">Indikátor řadové číslovky</string>
|
<string name="key_descr_redo">Znovu</string>
|
||||||
<string name="key_descr_superscript">Horní index</string>
|
<string name="key_descr_ª">Indikátor řadové číslovky</string>
|
||||||
<string name="key_descr_subscript">Dolní index</string>
|
<string name="key_descr_º">Indikátor řadové číslovky</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_superscript">Horní index</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_subscript">Dolní index</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<string name="key_descr_clipboard">Správce schránky</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Správce schránky</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Nedávno kopírovaný text</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Připnout</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Odebrat ze schránky?</string>
|
<string name="clipboard_history_heading">Nedávno kopírovaný text</string>
|
||||||
<string name="clipboard_remove_confirmed">Ano</string>
|
<string name="clipboard_pin_heading">Připnout</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Odebrat ze schránky?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Ano</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
||||||
<string name="short_description">Eine schlanke, datenschutzfreundliche Bildschirmtastatur für Android.</string>
|
<string name="short_description">Eine schlanke, datenschutzfreundliche Bildschirmtastatur für Android.</string>
|
||||||
<string name="store_description">Diese Tastatur zeichnet sich dadurch aus, dass man zusätzliche Zeichen durch Wischgesten in Richtung der Tastenecken eingeben kann.\n\nDie Anwendung wurde ursprünglich für das Programmieren in Termux entwickelt.\nMittlerweile ist sie auch für den täglichen Gebrauch perfekt geeignet.\n\nDiese App enthält keine Werbung, benötigt keinen Netzwerkzugriff und ist quelloffen.</string>
|
<string name="store_description">"Diese Tastatur zeichnet sich dadurch aus, dass man zusätzliche Zeichen durch Wischgesten in Richtung der Tastenecken eingeben kann.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard - Einstellungen</string>
|
|
||||||
<string name="pref_portrait">Im Hochformatmodus</string>
|
Die Anwendung wurde ursprünglich für das Programmieren in Termux entwickelt.
|
||||||
<string name="pref_landscape">Im Querformatmodus</string>
|
Mittlerweile ist sie auch für den täglichen Gebrauch perfekt geeignet.
|
||||||
<string name="pref_category_layout">Layout</string>
|
|
||||||
<string name="pref_label_brightness">Helligkeit der Beschriftung anpassen</string>
|
Diese App enthält keine Werbung, benötigt keinen Netzwerkzugriff und ist quelloffen."</string>
|
||||||
<string name="pref_keyboard_opacity">Deckkraft des Tastaturhintergrunds anpassen</string>
|
<string name="settings_activity_label">Unexpected Keyboard - Einstellungen</string>
|
||||||
<string name="pref_key_opacity">Deckkraft der Tasten anpassen</string>
|
<string name="pref_portrait">Im Hochformatmodus</string>
|
||||||
<string name="pref_key_activated_opacity">Deckkraft gedrückter Tasten anpassen</string>
|
<string name="pref_landscape">Im Querformatmodus</string>
|
||||||
<string name="pref_layout_e_system">Systemeinstellung</string>
|
<string name="pref_category_layout">Layout</string>
|
||||||
<string name="pref_layout_e_custom">Eigenes Layout</string>
|
<string name="pref_label_brightness">Helligkeit der Beschriftung anpassen</string>
|
||||||
<string name="pref_layouts_add">Alternatives Layout hinzufügen</string>
|
<string name="pref_keyboard_opacity">Deckkraft des Tastaturhintergrunds anpassen</string>
|
||||||
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
<string name="pref_key_opacity">Deckkraft der Tasten anpassen</string>
|
||||||
<string name="pref_layouts_remove_custom">Layout entfernen</string>
|
<string name="pref_key_activated_opacity">Deckkraft gedrückter Tasten anpassen</string>
|
||||||
<string name="pref_custom_layout_title">Eigenes Layout</string>
|
<string name="pref_layout_e_system">Systemeinstellung</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Eigenes Layout</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Alternatives Layout hinzufügen</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Ziffernblock anzeigen</string>
|
<string name="pref_layouts_remove_custom">Layout entfernen</string>
|
||||||
<string name="pref_show_numpad_never">Nie</string>
|
<string name="pref_custom_layout_title">Eigenes Layout</string>
|
||||||
<string name="pref_show_numpad_landscape">Nur im Querformat</string>
|
<string name="pref_show_numpad_title">Ziffernblock anzeigen</string>
|
||||||
<string name="pref_show_numpad_always">Immer</string>
|
<string name="pref_show_numpad_never">Nie</string>
|
||||||
<string name="pref_number_row_title">Zahlenreihe anzeigen</string>
|
<string name="pref_show_numpad_landscape">Nur im Querformat</string>
|
||||||
<string name="pref_number_row_summary">Eine Zahlenreihe oben an der Tastatur hinzufügen, wenn der Ziffernblock ausgeblendet ist</string>
|
<string name="pref_show_numpad_always">Immer</string>
|
||||||
<string name="pref_numpad_layout">Zahlenblock-Layout</string>
|
<string name="pref_number_row_title">Zahlenreihe anzeigen</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Hohe Ziffern zuerst</string>
|
<string name="pref_number_row_summary">Eine Zahlenreihe oben an der Tastatur hinzufügen, wenn der Ziffernblock ausgeblendet ist</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Niedrige Ziffern zuerst</string>
|
<string name="pref_numpad_layout">Zahlenblock-Layout</string>
|
||||||
<string name="pref_extra_keys_title">Zusätzliche Zeichen zur Tastatur hinzufügen</string>
|
<string name="pref_numpad_layout_e_high_first">Hohe Ziffern zuerst</string>
|
||||||
<string name="pref_extra_keys_custom">Benutzerdefinierte Tasten hinzufügen</string>
|
<string name="pref_numpad_layout_e_low_first">Niedrige Ziffern zuerst</string>
|
||||||
<string name="pref_extra_keys_internal">Tasten auswählen, die der Tastatur hinzugefügt werden sollen</string>
|
<string name="pref_extra_keys_title">Zusätzliche Zeichen zur Tastatur hinzufügen</string>
|
||||||
<string name="pref_category_typing">Tippen</string>
|
<string name="pref_extra_keys_custom">Benutzerdefinierte Tasten hinzufügen</string>
|
||||||
<string name="pref_swipe_dist_title">Länge der Wischgeste</string>
|
<string name="pref_extra_keys_internal">Tasten auswählen, die der Tastatur hinzugefügt werden sollen</string>
|
||||||
<string name="pref_swipe_dist_summary">Abstand der Zeichen in den Ecken der Tasten (%s)</string>
|
<string name="pref_category_typing">Tippen</string>
|
||||||
<string name="pref_long_timeout_title">Zeitüberschreitung durch langes Drücken</string>
|
<string name="pref_swipe_dist_title">Länge der Wischgeste</string>
|
||||||
<string name="pref_long_interval_title">Intervall der Tastenwiederholung</string>
|
<string name="pref_swipe_dist_summary">Abstand der Zeichen in den Ecken der Tasten (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Tastenwiederholung bei langem Drücken</string>
|
<string name="pref_long_timeout_title">Zeitüberschreitung durch langes Drücken</string>
|
||||||
<string name="pref_lock_double_tap_title">Umschalttaste mit Doppeltippen einrasten</string>
|
<string name="pref_long_interval_title">Intervall der Tastenwiederholung</string>
|
||||||
<string name="pref_lock_double_tap_summary">Anstatt Taste längere Zeit gedrückt zu halten</string>
|
<string name="pref_keyrepeat_enabled">Tastenwiederholung bei langem Drücken</string>
|
||||||
<string name="pref_category_behavior">Verhalten</string>
|
<string name="pref_lock_double_tap_title">Umschalttaste mit Doppeltippen einrasten</string>
|
||||||
<string name="pref_autocapitalisation_title">Automatische Großschreibung</string>
|
<string name="pref_lock_double_tap_summary">Anstatt Taste längere Zeit gedrückt zu halten</string>
|
||||||
<string name="pref_autocapitalisation_summary">Umschalttaste am Satzanfang aktivieren</string>
|
<string name="pref_category_behavior">Verhalten</string>
|
||||||
<string name="pref_switch_input_immediate_title">Sofort zur nächsten Tastatur wechseln</string>
|
<string name="pref_autocapitalisation_title">Automatische Großschreibung</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Verhalten der Tastaturumschalttaste</string>
|
<string name="pref_autocapitalisation_summary">Umschalttaste am Satzanfang aktivieren</string>
|
||||||
<string name="pref_vibrate_custom">Benutzerdefinierte Vibration</string>
|
<string name="pref_switch_input_immediate_title">Sofort zur nächsten Tastatur wechseln</string>
|
||||||
<string name="pref_vibrate_duration_title">Vibrationsstärke</string>
|
<string name="pref_switch_input_immediate_summary">Verhalten der Tastaturumschalttaste</string>
|
||||||
<string name="pref_pin_entry_enabled_title">PIN-Eingabe-Layout</string>
|
<string name="pref_vibrate_custom">Benutzerdefinierte Vibration</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Für die Nummern-, Datums- und Telefonnummern-Eingabe</string>
|
<string name="pref_vibrate_duration_title">Vibrationsstärke</string>
|
||||||
<string name="pref_category_style">Design</string>
|
<string name="pref_pin_entry_enabled_title">PIN-Eingabe-Layout</string>
|
||||||
<string name="pref_margin_bottom_title">Unterer Abstand</string>
|
<string name="pref_pin_entry_enabled_summary">Für die Nummern-, Datums- und Telefonnummern-Eingabe</string>
|
||||||
<string name="pref_keyboard_height_title">Höhe der Tastatur</string>
|
<string name="pref_category_style">Design</string>
|
||||||
<string name="pref_horizontal_margin_title">Horizontaler Abstand</string>
|
<string name="pref_margin_bottom_title">Unterer Abstand</string>
|
||||||
<string name="pref_character_size_title">Größe der Beschriftung</string>
|
<string name="pref_keyboard_height_title">Höhe der Tastatur</string>
|
||||||
<string name="pref_character_size_summary">Größe der Buchstaben auf den Tasten (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Horizontaler Abstand</string>
|
||||||
<string name="pref_theme">Thema</string>
|
<string name="pref_character_size_title">Größe der Beschriftung</string>
|
||||||
<string name="pref_theme_e_system">Systemeinstellung</string>
|
<string name="pref_character_size_summary">Größe der Buchstaben auf den Tasten (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Dunkel</string>
|
<string name="pref_theme">Thema</string>
|
||||||
<string name="pref_theme_e_light">Hell</string>
|
<string name="pref_theme_e_system">Systemeinstellung</string>
|
||||||
<string name="pref_theme_e_black">Schwarz</string>
|
<string name="pref_theme_e_dark">Dunkel</string>
|
||||||
<string name="pref_theme_e_altblack">Alternatives Schwarz</string>
|
<string name="pref_theme_e_light">Hell</string>
|
||||||
<string name="pref_theme_e_white">Weiß</string>
|
<string name="pref_theme_e_black">Schwarz</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Alternatives Schwarz</string>
|
||||||
<string name="pref_theme_e_desert">Wüste</string>
|
<string name="pref_theme_e_white">Weiß</string>
|
||||||
<string name="pref_theme_e_jungle">Dschungel</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monet">Monet (System)</string>
|
<string name="pref_theme_e_desert">Wüste</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Hell)</string>
|
<string name="pref_theme_e_jungle">Dschungel</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Dunkel)</string>
|
<string name="pref_theme_e_monet">Monet (System)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monet (Hell)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Sehr kurz</string>
|
<string name="pref_theme_e_monetdark">Monet (Dunkel)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Kurz</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normal</string>
|
<string name="pref_swipe_dist_e_very_short">Sehr kurz</string>
|
||||||
<string name="pref_swipe_dist_e_far">Weit</string>
|
<string name="pref_swipe_dist_e_short">Kurz</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Sehr weit</string>
|
<string name="pref_swipe_dist_e_default">Normal</string>
|
||||||
<string name="pref_key_horizontal_space">Horizontaler Abstand zwischen den Tasten</string>
|
<string name="pref_swipe_dist_e_far">Weit</string>
|
||||||
<string name="pref_key_vertical_space">Vertikaler Abstand zwischen den Tasten</string>
|
<string name="pref_swipe_dist_e_very_far">Sehr weit</string>
|
||||||
<string name="pref_border_config_title">Ränder anpassen</string>
|
<string name="pref_key_horizontal_space">Horizontaler Abstand zwischen den Tasten</string>
|
||||||
<string name="pref_border_width_title">Randbreite</string>
|
<string name="pref_key_vertical_space">Vertikaler Abstand zwischen den Tasten</string>
|
||||||
<string name="pref_corners_radius_title">Radius der Ecken</string>
|
<string name="pref_border_config_title">Ränder anpassen</string>
|
||||||
<string name="pref_circle_sensitivity_title">Empfindlichkeit der Kreisgeste</string>
|
<string name="pref_border_width_title">Randbreite</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Hoch</string>
|
<string name="pref_corners_radius_title">Radius der Ecken</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Mittel</string>
|
<string name="pref_circle_sensitivity_title">Empfindlichkeit der Kreisgeste</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Niedrig</string>
|
<string name="pref_circle_sensitivity_e_high">Hoch</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Aus</string>
|
<string name="pref_circle_sensitivity_e_medium">Mittel</string>
|
||||||
<string name="key_action_next">Nächstes</string>
|
<string name="pref_circle_sensitivity_e_low">Niedrig</string>
|
||||||
<string name="key_action_done">Fertig</string>
|
<string name="pref_circle_sensitivity_e_disabled">Aus</string>
|
||||||
<string name="key_action_go">Los</string>
|
<string name="key_action_next">Nächstes</string>
|
||||||
<string name="key_action_prev">Vorheriges</string>
|
<string name="key_action_done">Fertig</string>
|
||||||
<string name="key_action_search">Suchen</string>
|
<string name="key_action_go">Los</string>
|
||||||
<string name="key_action_send">Senden</string>
|
<string name="key_action_prev">Vorheriges</string>
|
||||||
<string name="launcher_button_imesettings">Tastatur aktivieren</string>
|
<string name="key_action_search">Suchen</string>
|
||||||
<string name="launcher_button_imepicker">Tastatur auswählen</string>
|
<string name="key_action_send">Senden</string>
|
||||||
<string name="launcher_description">Diese App ist eine virtuelle Tastatur. Tippe auf den Button unten und aktivere Unexpected Keyboard in den Systemeinstellungen.</string>
|
<string name="launcher_button_imesettings">Tastatur aktivieren</string>
|
||||||
<string name="launcher_sourcecode">Dies ist eine freie und quelloffene App. Du findest den Quellcode auf Github. Dort können auch Bugs gemeldet werden.</string>
|
<string name="launcher_button_imepicker">Tastatur auswählen</string>
|
||||||
<string name="launcher_tryhere">Nach Aktivierung kannst du die Tastatur hier ausprobieren:</string>
|
<string name="launcher_description">Diese App ist eine virtuelle Tastatur. Tippe auf den Button unten und aktivere Unexpected Keyboard in den Systemeinstellungen.</string>
|
||||||
<string name="launcher_tryhere_hint">Hier ausprobieren</string>
|
<string name="launcher_sourcecode">Dies ist eine freie und quelloffene App. Du findest den Quellcode auf Github. Dort können auch Bugs gemeldet werden.</string>
|
||||||
<string name="key_descr_capslock">Feststelltaste</string>
|
<string name="launcher_tryhere">Nach Aktivierung kannst du die Tastatur hier ausprobieren:</string>
|
||||||
<string name="key_descr_compose">Compose-Taste</string>
|
<string name="launcher_tryhere_hint">Hier ausprobieren</string>
|
||||||
<string name="key_descr_switch_greekmath">Griechische & mathematische Symbole</string>
|
<string name="key_descr_capslock">Feststelltaste</string>
|
||||||
<string name="key_descr_change_method">Tastatur wechseln</string>
|
<string name="key_descr_compose">Compose-Taste</string>
|
||||||
<string name="key_descr_voice_typing">Spracheingabe</string>
|
<string name="key_descr_switch_greekmath">Griechische & mathematische Symbole</string>
|
||||||
<string name="key_descr_copy">Kopieren</string>
|
<string name="key_descr_change_method">Tastatur wechseln</string>
|
||||||
<string name="key_descr_paste">Einfügen</string>
|
<string name="key_descr_voice_typing">Spracheingabe</string>
|
||||||
<string name="key_descr_cut">Ausschneiden</string>
|
<string name="key_descr_copy">Kopieren</string>
|
||||||
<string name="key_descr_selectAll">Alles auswählen</string>
|
<string name="key_descr_paste">Einfügen</string>
|
||||||
<string name="key_descr_shareText">Text teilen</string>
|
<string name="key_descr_cut">Ausschneiden</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Unformatiert einfügen</string>
|
<string name="key_descr_selectAll">Alles auswählen</string>
|
||||||
<string name="key_descr_undo">Rückgängig</string>
|
<string name="key_descr_shareText">Text teilen</string>
|
||||||
<string name="key_descr_redo">Wiederholen</string>
|
<string name="key_descr_pasteAsPlainText">Unformatiert einfügen</string>
|
||||||
<string name="key_descr_ª">Ordinalzeichen</string>
|
<string name="key_descr_undo">Rückgängig</string>
|
||||||
<string name="key_descr_º">Ordinalzeichen</string>
|
<string name="key_descr_redo">Wiederholen</string>
|
||||||
<string name="key_descr_superscript">Hochgestellt</string>
|
<string name="key_descr_ª">Ordinalzeichen</string>
|
||||||
<string name="key_descr_subscript">Tiefgestellt</string>
|
<string name="key_descr_º">Ordinalzeichen</string>
|
||||||
<string name="key_descr_page_up">Bild auf</string>
|
<string name="key_descr_superscript">Hochgestellt</string>
|
||||||
<string name="key_descr_page_down">Bild ab</string>
|
<string name="key_descr_subscript">Tiefgestellt</string>
|
||||||
<string name="key_descr_home">Pos1</string>
|
<string name="key_descr_page_up">Bild auf</string>
|
||||||
<string name="key_descr_end">Ende</string>
|
<string name="key_descr_page_down">Bild ab</string>
|
||||||
<string name="key_descr_clipboard">Clipboard-Manager</string>
|
<string name="key_descr_home">Pos1</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">Ende</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Clipboard-Manager</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Zuletzt kopierter Text</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Angeheftet</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Aus der Zwischenablage entfernen?</string>
|
<string name="clipboard_history_heading">Zuletzt kopierter Text</string>
|
||||||
<string name="clipboard_remove_confirmed">Ja</string>
|
<string name="clipboard_pin_heading">Angeheftet</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Aus der Zwischenablage entfernen?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Ja</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">Un teclado virtual ligero para Android consciente de su privacidad.</string>
|
<string name="short_description">Un teclado virtual ligero para Android consciente de su privacidad.</string>
|
||||||
<string name="store_description">La característica principal es que hay acceso a más caractéres deslizando hacia las esquinas de las teclas.\n\nEsta aplicación fue originalmente diseñada para programadores que usaran Termux.\nAhora es perfecta para uso cotidiano.\n\nLa misma no contiene ningún anuncio/publicidad, no realiza peticiones de red y es de Fuente Abierta.</string>
|
<string name="store_description">"La característica principal es que hay acceso a más caractéres deslizando hacia las esquinas de las teclas.
|
||||||
<string name="settings_activity_label">Ajustes de Unexpected Keyboard</string>
|
|
||||||
<string name="pref_portrait">En modo vertical</string>
|
Esta aplicación fue originalmente diseñada para programadores que usaran Termux.
|
||||||
<string name="pref_landscape">En modo horizontal</string>
|
Ahora es perfecta para uso cotidiano.
|
||||||
<string name="pref_category_layout">Distribución</string>
|
|
||||||
<string name="pref_label_brightness">Ajustar brillo de etiqueta</string>
|
La misma no contiene ningún anuncio/publicidad, no realiza peticiones de red y es de Fuente Abierta."</string>
|
||||||
<string name="pref_keyboard_opacity">Ajustar opacidad del fondo del teclado</string>
|
<string name="settings_activity_label">Ajustes de Unexpected Keyboard</string>
|
||||||
<string name="pref_key_opacity">Ajustar opacidad de teclas</string>
|
<string name="pref_portrait">En modo vertical</string>
|
||||||
<string name="pref_key_activated_opacity">Ajustar opacidad de teclas presionadas</string>
|
<string name="pref_landscape">En modo horizontal</string>
|
||||||
<string name="pref_layout_e_system">Igual al sistema</string>
|
<string name="pref_category_layout">Distribución</string>
|
||||||
<string name="pref_layout_e_custom">Diseño personalizado</string>
|
<string name="pref_label_brightness">Ajustar brillo de etiqueta</string>
|
||||||
<string name="pref_layouts_add">Añadir distribución alterna</string>
|
<string name="pref_keyboard_opacity">Ajustar opacidad del fondo del teclado</string>
|
||||||
<string name="pref_layouts_item">Diseño %1$d: %2$s</string>
|
<string name="pref_key_opacity">Ajustar opacidad de teclas</string>
|
||||||
<string name="pref_layouts_remove_custom">Quitar diseño</string>
|
<string name="pref_key_activated_opacity">Ajustar opacidad de teclas presionadas</string>
|
||||||
<string name="pref_custom_layout_title">Diseño personalizado</string>
|
<string name="pref_layout_e_system">Igual al sistema</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Diseño personalizado</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Añadir distribución alterna</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Diseño %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Mostrar teclado numérico</string>
|
<string name="pref_layouts_remove_custom">Quitar diseño</string>
|
||||||
<string name="pref_show_numpad_never">Nunca</string>
|
<string name="pref_custom_layout_title">Diseño personalizado</string>
|
||||||
<string name="pref_show_numpad_landscape">Solo en modo horizontal</string>
|
<string name="pref_show_numpad_title">Mostrar teclado numérico</string>
|
||||||
<string name="pref_show_numpad_always">Siempre</string>
|
<string name="pref_show_numpad_never">Nunca</string>
|
||||||
<string name="pref_number_row_title">Mostrar fila de números</string>
|
<string name="pref_show_numpad_landscape">Solo en modo horizontal</string>
|
||||||
<string name="pref_number_row_summary">Agrega la fila numérica a la parte superior del teclado si el teclado numérico está oculto</string>
|
<string name="pref_show_numpad_always">Siempre</string>
|
||||||
<string name="pref_numpad_layout">Diseño del teclado numérico</string>
|
<string name="pref_number_row_title">Mostrar fila de números</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Dígitos descendientes</string>
|
<string name="pref_number_row_summary">Agrega la fila numérica a la parte superior del teclado si el teclado numérico está oculto</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Dígitos ascendientes</string>
|
<string name="pref_numpad_layout">Diseño del teclado numérico</string>
|
||||||
<string name="pref_extra_keys_title">Agregar teclas</string>
|
<string name="pref_numpad_layout_e_high_first">Dígitos descendientes</string>
|
||||||
<string name="pref_extra_keys_custom">Agregar teclas personalizadas</string>
|
<string name="pref_numpad_layout_e_low_first">Dígitos ascendientes</string>
|
||||||
<string name="pref_extra_keys_internal">Selecciona teclas para agregar al teclado</string>
|
<string name="pref_extra_keys_title">Agregar teclas</string>
|
||||||
<string name="pref_category_typing">Escritura</string>
|
<string name="pref_extra_keys_custom">Agregar teclas personalizadas</string>
|
||||||
<string name="pref_swipe_dist_title">Distancia de deslizamiento</string>
|
<string name="pref_extra_keys_internal">Selecciona teclas para agregar al teclado</string>
|
||||||
<string name="pref_swipe_dist_summary">Distancia de caracteres en las esquinas de las teclas (%s)</string>
|
<string name="pref_category_typing">Escritura</string>
|
||||||
<string name="pref_long_timeout_title">Duración para toque largo</string>
|
<string name="pref_swipe_dist_title">Distancia de deslizamiento</string>
|
||||||
<string name="pref_long_interval_title">Intervalo de repetición de tecla</string>
|
<string name="pref_swipe_dist_summary">Distancia de caracteres en las esquinas de las teclas (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Permitir repetición de toque largo</string>
|
<string name="pref_long_timeout_title">Duración para toque largo</string>
|
||||||
<string name="pref_lock_double_tap_title">Doble toque en Mayús para bloquear las mayúsculas</string>
|
<string name="pref_long_interval_title">Intervalo de repetición de tecla</string>
|
||||||
<string name="pref_lock_double_tap_summary">Se puede bloquear cualquier modificador manteniéndolo presionado</string>
|
<string name="pref_keyrepeat_enabled">Permitir repetición de toque largo</string>
|
||||||
<string name="pref_category_behavior">Comportamiento</string>
|
<string name="pref_lock_double_tap_title">Doble toque en Mayús para bloquear las mayúsculas</string>
|
||||||
<string name="pref_autocapitalisation_title">Mayúsculas automáticas</string>
|
<string name="pref_lock_double_tap_summary">Se puede bloquear cualquier modificador manteniéndolo presionado</string>
|
||||||
<string name="pref_autocapitalisation_summary">Presionar Mayús al principio de una oración</string>
|
<string name="pref_category_behavior">Comportamiento</string>
|
||||||
<string name="pref_switch_input_immediate_title">Cambiar al último teclado usado</string>
|
<string name="pref_autocapitalisation_title">Mayúsculas automáticas</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Comportamiento de la tecla para cambiar diseño</string>
|
<string name="pref_autocapitalisation_summary">Presionar Mayús al principio de una oración</string>
|
||||||
<string name="pref_vibrate_custom">Vibración personalizada</string>
|
<string name="pref_switch_input_immediate_title">Cambiar al último teclado usado</string>
|
||||||
<string name="pref_vibrate_duration_title">Intensidad de vibración</string>
|
<string name="pref_switch_input_immediate_summary">Comportamiento de la tecla para cambiar diseño</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Diseño de introducción de PIN</string>
|
<string name="pref_vibrate_custom">Vibración personalizada</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Para escribir cifras, fechas y números telefónicos</string>
|
<string name="pref_vibrate_duration_title">Intensidad de vibración</string>
|
||||||
<string name="pref_category_style">Estilo</string>
|
<string name="pref_pin_entry_enabled_title">Diseño de introducción de PIN</string>
|
||||||
<string name="pref_margin_bottom_title">Margen inferior</string>
|
<string name="pref_pin_entry_enabled_summary">Para escribir cifras, fechas y números telefónicos</string>
|
||||||
<string name="pref_keyboard_height_title">Altura del teclado</string>
|
<string name="pref_category_style">Estilo</string>
|
||||||
<string name="pref_horizontal_margin_title">Margen horizontal</string>
|
<string name="pref_margin_bottom_title">Margen inferior</string>
|
||||||
<string name="pref_character_size_title">Tamaño de etiqueta</string>
|
<string name="pref_keyboard_height_title">Altura del teclado</string>
|
||||||
<string name="pref_character_size_summary">Tamaño de caracteres mostrados en el teclado (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Margen horizontal</string>
|
||||||
<string name="pref_theme">Tema</string>
|
<string name="pref_character_size_title">Tamaño de etiqueta</string>
|
||||||
<string name="pref_theme_e_system">Igual al sistema</string>
|
<string name="pref_character_size_summary">Tamaño de caracteres mostrados en el teclado (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Oscuro</string>
|
<string name="pref_theme">Tema</string>
|
||||||
<string name="pref_theme_e_light">Claro</string>
|
<string name="pref_theme_e_system">Igual al sistema</string>
|
||||||
<string name="pref_theme_e_black">Negro</string>
|
<string name="pref_theme_e_dark">Oscuro</string>
|
||||||
<string name="pref_theme_e_altblack">Negro alternativo</string>
|
<string name="pref_theme_e_light">Claro</string>
|
||||||
<string name="pref_theme_e_white">Blanco</string>
|
<string name="pref_theme_e_black">Negro</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Negro alternativo</string>
|
||||||
<string name="pref_theme_e_desert">Desierto</string>
|
<string name="pref_theme_e_white">Blanco</string>
|
||||||
<string name="pref_theme_e_jungle">Selva</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monet">Monet (de sistema)</string>
|
<string name="pref_theme_e_desert">Desierto</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (claro)</string>
|
<string name="pref_theme_e_jungle">Selva</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (oscuro)</string>
|
<string name="pref_theme_e_monet">Monet (de sistema)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monet (claro)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Muy corta</string>
|
<string name="pref_theme_e_monetdark">Monet (oscuro)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Corta</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normal</string>
|
<string name="pref_swipe_dist_e_very_short">Muy corta</string>
|
||||||
<string name="pref_swipe_dist_e_far">Larga</string>
|
<string name="pref_swipe_dist_e_short">Corta</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Muy larga</string>
|
<string name="pref_swipe_dist_e_default">Normal</string>
|
||||||
<string name="pref_key_horizontal_space">Espacio horizontal entre las teclas</string>
|
<string name="pref_swipe_dist_e_far">Larga</string>
|
||||||
<string name="pref_key_vertical_space">Espacio vertical entre las teclas</string>
|
<string name="pref_swipe_dist_e_very_far">Muy larga</string>
|
||||||
<string name="pref_border_config_title">Bordes personalizados</string>
|
<string name="pref_key_horizontal_space">Espacio horizontal entre las teclas</string>
|
||||||
<string name="pref_border_width_title">Ancho de bordes</string>
|
<string name="pref_key_vertical_space">Espacio vertical entre las teclas</string>
|
||||||
<string name="pref_corners_radius_title">Radio de rincones</string>
|
<string name="pref_border_config_title">Bordes personalizados</string>
|
||||||
<string name="pref_circle_sensitivity_title">Sensibilidad a gestos circulares</string>
|
<string name="pref_border_width_title">Ancho de bordes</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Alta</string>
|
<string name="pref_corners_radius_title">Radio de rincones</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Mediana</string>
|
<string name="pref_circle_sensitivity_title">Sensibilidad a gestos circulares</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Baja</string>
|
<string name="pref_circle_sensitivity_e_high">Alta</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Apagada</string>
|
<string name="pref_circle_sensitivity_e_medium">Mediana</string>
|
||||||
<string name="key_action_next">Siguiente</string>
|
<string name="pref_circle_sensitivity_e_low">Baja</string>
|
||||||
<string name="key_action_done">Hecho</string>
|
<string name="pref_circle_sensitivity_e_disabled">Apagada</string>
|
||||||
<string name="key_action_go">Ir</string>
|
<string name="key_action_next">Siguiente</string>
|
||||||
<string name="key_action_prev">Anterior</string>
|
<string name="key_action_done">Hecho</string>
|
||||||
<string name="key_action_search">Buscar</string>
|
<string name="key_action_go">Ir</string>
|
||||||
<string name="key_action_send">Enviar</string>
|
<string name="key_action_prev">Anterior</string>
|
||||||
<string name="launcher_button_imesettings">Habilitar teclado</string>
|
<string name="key_action_search">Buscar</string>
|
||||||
<string name="launcher_button_imepicker">Seleccionar método de entrada</string>
|
<string name="key_action_send">Enviar</string>
|
||||||
<string name="launcher_description">Esta aplicación es un teclado virtual. Presiona el botón de abajo para ir a Ajustes y habilitar Unexpected Keyboard.</string>
|
<string name="launcher_button_imesettings">Habilitar teclado</string>
|
||||||
<string name="launcher_sourcecode">Esta es una aplicación gratuita, libre y de código abierto. Puedes encontrar el código fuente o reportar errores en GitHub.</string>
|
<string name="launcher_button_imepicker">Seleccionar método de entrada</string>
|
||||||
<string name="launcher_tryhere">Tras habilitarlo, puedes probar el teclado en este campo:</string>
|
<string name="launcher_description">Esta aplicación es un teclado virtual. Presiona el botón de abajo para ir a Ajustes y habilitar Unexpected Keyboard.</string>
|
||||||
<string name="launcher_tryhere_hint">Intentar aquí</string>
|
<string name="launcher_sourcecode">Esta es una aplicación gratuita, libre y de código abierto. Puedes encontrar el código fuente o reportar errores en GitHub.</string>
|
||||||
<string name="key_descr_capslock">Bloq Mayús</string>
|
<string name="launcher_tryhere">Tras habilitarlo, puedes probar el teclado en este campo:</string>
|
||||||
<string name="key_descr_compose">Componer</string>
|
<string name="launcher_tryhere_hint">Intentar aquí</string>
|
||||||
<string name="key_descr_switch_greekmath">Símb. griegos y matemáticos</string>
|
<string name="key_descr_capslock">Bloq Mayús</string>
|
||||||
<string name="key_descr_change_method">Cambiar teclado</string>
|
<string name="key_descr_compose">Componer</string>
|
||||||
<string name="key_descr_voice_typing">Dictado por voz</string>
|
<string name="key_descr_switch_greekmath">Símb. griegos y matemáticos</string>
|
||||||
<string name="key_descr_copy">Copiar</string>
|
<string name="key_descr_change_method">Cambiar teclado</string>
|
||||||
<string name="key_descr_paste">Pegar</string>
|
<string name="key_descr_voice_typing">Dictado por voz</string>
|
||||||
<string name="key_descr_cut">Cortar</string>
|
<string name="key_descr_copy">Copiar</string>
|
||||||
<string name="key_descr_selectAll">Seleccionar todo</string>
|
<string name="key_descr_paste">Pegar</string>
|
||||||
<string name="key_descr_shareText">Compartir texto</string>
|
<string name="key_descr_cut">Cortar</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Pegar como texto sin formato</string>
|
<string name="key_descr_selectAll">Seleccionar todo</string>
|
||||||
<string name="key_descr_undo">Deshacer</string>
|
<string name="key_descr_shareText">Compartir texto</string>
|
||||||
<string name="key_descr_redo">Rehacer</string>
|
<string name="key_descr_pasteAsPlainText">Pegar como texto sin formato</string>
|
||||||
<string name="key_descr_ª">Indicador de ordinal</string>
|
<string name="key_descr_undo">Deshacer</string>
|
||||||
<string name="key_descr_º">Indicador de ordinal</string>
|
<string name="key_descr_redo">Rehacer</string>
|
||||||
<string name="key_descr_superscript">Superíndice</string>
|
<string name="key_descr_ª">Indicador de ordinal</string>
|
||||||
<string name="key_descr_subscript">Subíndice</string>
|
<string name="key_descr_º">Indicador de ordinal</string>
|
||||||
<string name="key_descr_page_up">Av Pág</string>
|
<string name="key_descr_superscript">Superíndice</string>
|
||||||
<string name="key_descr_page_down">Re Pág</string>
|
<string name="key_descr_subscript">Subíndice</string>
|
||||||
<string name="key_descr_home">Inicio</string>
|
<string name="key_descr_page_up">Av Pág</string>
|
||||||
<string name="key_descr_end">Fin</string>
|
<string name="key_descr_page_down">Re Pág</string>
|
||||||
<string name="key_descr_clipboard">Arreglar portapapeles</string>
|
<string name="key_descr_home">Inicio</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">Fin</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Arreglar portapapeles</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Textos recién copiados</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Pegado</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">¿Sacar este portapapeles?</string>
|
<string name="clipboard_history_heading">Textos recién copiados</string>
|
||||||
<string name="clipboard_remove_confirmed">Sí</string>
|
<string name="clipboard_pin_heading">Pegado</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">¿Sacar este portapapeles?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Sí</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">صفحه کلید غیرمنتظره</string>
|
<string name="app_name_release">صفحه کلید غیرمنتظره</string>
|
||||||
<string name="app_name_debug">صفحه کلید غیرمنتظره</string>
|
<string name="app_name_debug">صفحه کلید غیرمنتظره</string>
|
||||||
<!-- <string name="short_description">Lightweight and privacy-conscious virtual keyboard for Android.</string> -->
|
<!-- <string name="short_description">Lightweight and privacy-conscious virtual keyboard for Android.</string> -->
|
||||||
<!-- <string name="store_description">The main feature is that you can type more characters by swiping the keys towards the corners.\n\nThis application was originally designed for programmers using Termux.\nNow perfect for everyday use.\n\nThis application contains no ads, doesn\'t make any network requests and is Open Source.</string> -->
|
<!-- <string name="store_description">"The main feature is that you can type more characters by swiping the keys towards the corners.
|
||||||
<string name="settings_activity_label">تنظیمات صفحه کلید غیرمنتظره</string>
|
|
||||||
<string name="pref_portrait">در حالت عمودی</string>
|
This application was originally designed for programmers using Termux.
|
||||||
<string name="pref_landscape">در حالت افقی</string>
|
Now perfect for everyday use.
|
||||||
<string name="pref_category_layout">طرح</string>
|
|
||||||
<string name="pref_label_brightness">تنظیم برچسب روشنایی</string>
|
This application contains no ads, doesn't make any network requests and is Open Source."</string> -->
|
||||||
<string name="pref_keyboard_opacity">تنظیم کدر بودن پسزمینه صفحه کلید</string>
|
<string name="settings_activity_label">تنظیمات صفحه کلید غیرمنتظره</string>
|
||||||
<string name="pref_key_opacity">تنظیم کدر بودن کلید</string>
|
<string name="pref_portrait">در حالت عمودی</string>
|
||||||
<string name="pref_key_activated_opacity">تنظیم کدر بودن کلید فشرده شده</string>
|
<string name="pref_landscape">در حالت افقی</string>
|
||||||
<string name="pref_layout_e_system">تنظیمات سامانه</string>
|
<string name="pref_category_layout">طرح</string>
|
||||||
<string name="pref_layout_e_custom">طرح صفارشی</string>
|
<string name="pref_label_brightness">تنظیم برچسب روشنایی</string>
|
||||||
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
<string name="pref_keyboard_opacity">تنظیم کدر بودن پسزمینه صفحه کلید</string>
|
||||||
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
<string name="pref_key_opacity">تنظیم کدر بودن کلید</string>
|
||||||
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
<string name="pref_key_activated_opacity">تنظیم کدر بودن کلید فشرده شده</string>
|
||||||
<string name="pref_custom_layout_title">طرح شخصی</string>
|
<string name="pref_layout_e_system">تنظیمات سامانه</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">طرح صفارشی</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
||||||
<string name="pref_show_numpad_title">نمایش پد شمارهها</string>
|
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
||||||
<string name="pref_show_numpad_never">هرگز</string>
|
<string name="pref_custom_layout_title">طرح شخصی</string>
|
||||||
<string name="pref_show_numpad_landscape">فقط در حالت افقی</string>
|
<string name="pref_show_numpad_title">نمایش پد شمارهها</string>
|
||||||
<string name="pref_show_numpad_always">همیشه</string>
|
<string name="pref_show_numpad_never">هرگز</string>
|
||||||
<string name="pref_number_row_title">نمایش ردیف اعداد</string>
|
<string name="pref_show_numpad_landscape">فقط در حالت افقی</string>
|
||||||
<string name="pref_number_row_summary">افزودن ردیف اعداد زمانیکه پد شمارهها پنهان است</string>
|
<string name="pref_show_numpad_always">همیشه</string>
|
||||||
<string name="pref_numpad_layout">طرح پد شمارهها</string>
|
<string name="pref_number_row_title">نمایش ردیف اعداد</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">ابتدا اعداد بزرگ</string>
|
<string name="pref_number_row_summary">افزودن ردیف اعداد زمانیکه پد شمارهها پنهان است</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">ابتدا اعداد کوچک</string>
|
<string name="pref_numpad_layout">طرح پد شمارهها</string>
|
||||||
<string name="pref_extra_keys_title">افزودن کلیدها به صفحه کلید</string>
|
<string name="pref_numpad_layout_e_high_first">ابتدا اعداد بزرگ</string>
|
||||||
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
<string name="pref_numpad_layout_e_low_first">ابتدا اعداد کوچک</string>
|
||||||
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
<string name="pref_extra_keys_title">افزودن کلیدها به صفحه کلید</string>
|
||||||
<string name="pref_category_typing">درحال نوشتن</string>
|
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
||||||
<string name="pref_swipe_dist_title">فاصله کشیدن</string>
|
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
||||||
<string name="pref_swipe_dist_summary">فاصله حروف از گوشههای کلیدها )(%s)</string>
|
<string name="pref_category_typing">درحال نوشتن</string>
|
||||||
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
<string name="pref_swipe_dist_title">فاصله کشیدن</string>
|
||||||
<string name="pref_long_interval_title">فاصله تکرار کلید</string>
|
<string name="pref_swipe_dist_summary">فاصله حروف از گوشههای کلیدها )(%s)</string>
|
||||||
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
||||||
<string name="pref_lock_double_tap_title">دوبار ضربه روی دگرساز برای فعال شدن کپس لاک</string>
|
<string name="pref_long_interval_title">فاصله تکرار کلید</string>
|
||||||
<string name="pref_lock_double_tap_summary">شما میتوانید قفل کنید هر میانبری را با نگه داشتن آن</string>
|
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
||||||
<string name="pref_category_behavior">ٰرفتار</string>
|
<string name="pref_lock_double_tap_title">دوبار ضربه روی دگرساز برای فعال شدن کپس لاک</string>
|
||||||
<string name="pref_autocapitalisation_title">بزرگسازی خودکار</string>
|
<string name="pref_lock_double_tap_summary">شما میتوانید قفل کنید هر میانبری را با نگه داشتن آن</string>
|
||||||
<string name="pref_autocapitalisation_summary">در شروع جملات دگرساز را فشار دهید</string>
|
<string name="pref_category_behavior">ٰرفتار</string>
|
||||||
<string name="pref_switch_input_immediate_title">انتقال به آخرین صفحه کلید استفاده شده</string>
|
<string name="pref_autocapitalisation_title">بزرگسازی خودکار</string>
|
||||||
<string name="pref_switch_input_immediate_summary">رفتار کلید تغییردهنده صفحه کلید</string>
|
<string name="pref_autocapitalisation_summary">در شروع جملات دگرساز را فشار دهید</string>
|
||||||
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
<string name="pref_switch_input_immediate_title">انتقال به آخرین صفحه کلید استفاده شده</string>
|
||||||
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
<string name="pref_switch_input_immediate_summary">رفتار کلید تغییردهنده صفحه کلید</string>
|
||||||
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
||||||
<string name="pref_category_style">سبک</string>
|
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
||||||
<string name="pref_margin_bottom_title">حاشیه پایین</string>
|
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
||||||
<string name="pref_keyboard_height_title">ارتفاع صفحه کلید</string>
|
<string name="pref_category_style">سبک</string>
|
||||||
<string name="pref_horizontal_margin_title">حاشیه افقی</string>
|
<string name="pref_margin_bottom_title">حاشیه پایین</string>
|
||||||
<string name="pref_character_size_title">اندازه برچسب</string>
|
<string name="pref_keyboard_height_title">ارتفاع صفحه کلید</string>
|
||||||
<string name="pref_character_size_summary">اندازه نویسههای نشان داده شده روی صفحه کلید (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">حاشیه افقی</string>
|
||||||
<string name="pref_theme">زمینه</string>
|
<string name="pref_character_size_title">اندازه برچسب</string>
|
||||||
<string name="pref_theme_e_system">تنظیمات سامانه</string>
|
<string name="pref_character_size_summary">اندازه نویسههای نشان داده شده روی صفحه کلید (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">تاریک</string>
|
<string name="pref_theme">زمینه</string>
|
||||||
<string name="pref_theme_e_light">روشن</string>
|
<string name="pref_theme_e_system">تنظیمات سامانه</string>
|
||||||
<string name="pref_theme_e_black">سیاه</string>
|
<string name="pref_theme_e_dark">تاریک</string>
|
||||||
<string name="pref_theme_e_altblack">سیاه مشابه</string>
|
<string name="pref_theme_e_light">روشن</string>
|
||||||
<string name="pref_theme_e_white">سفید</string>
|
<string name="pref_theme_e_black">سیاه</string>
|
||||||
<string name="pref_theme_e_epaper">ای-پیپر</string>
|
<string name="pref_theme_e_altblack">سیاه مشابه</string>
|
||||||
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
<string name="pref_theme_e_white">سفید</string>
|
||||||
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
<string name="pref_theme_e_epaper">ای-پیپر</string>
|
||||||
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
||||||
<string name="pref_swipe_dist_e_very_short">بسیار کوتاه</string>
|
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
||||||
<string name="pref_swipe_dist_e_short">کوتاه</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">عادی</string>
|
<string name="pref_swipe_dist_e_very_short">بسیار کوتاه</string>
|
||||||
<string name="pref_swipe_dist_e_far">دور</string>
|
<string name="pref_swipe_dist_e_short">کوتاه</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">بسیار دور</string>
|
<string name="pref_swipe_dist_e_default">عادی</string>
|
||||||
<string name="pref_key_horizontal_space">فاصله افقی بین کلیدها</string>
|
<string name="pref_swipe_dist_e_far">دور</string>
|
||||||
<string name="pref_key_vertical_space">فاصله عمودی بین کلیدها</string>
|
<string name="pref_swipe_dist_e_very_far">بسیار دور</string>
|
||||||
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
<string name="pref_key_horizontal_space">فاصله افقی بین کلیدها</string>
|
||||||
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
<string name="pref_key_vertical_space">فاصله عمودی بین کلیدها</string>
|
||||||
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
||||||
<string name="key_action_next">بعدی</string>
|
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
||||||
<string name="key_action_done">اتمام</string>
|
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
||||||
<string name="key_action_go">برو</string>
|
<string name="key_action_next">بعدی</string>
|
||||||
<string name="key_action_prev">قبلی</string>
|
<string name="key_action_done">اتمام</string>
|
||||||
<string name="key_action_search">جستجو</string>
|
<string name="key_action_go">برو</string>
|
||||||
<string name="key_action_send">ارسال</string>
|
<string name="key_action_prev">قبلی</string>
|
||||||
<string name="launcher_button_imesettings">فعال کردن صفحه کلید</string>
|
<string name="key_action_search">جستجو</string>
|
||||||
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
<string name="key_action_send">ارسال</string>
|
||||||
<string name="launcher_description">این برنامه یک صفحه کلید مجازی است. با کلیک روی گزینه زیر به تنظیمات سامانه بروید و صفحه کلید غیرمنتظره را فعال کنید.</string>
|
<string name="launcher_button_imesettings">فعال کردن صفحه کلید</string>
|
||||||
<string name="launcher_sourcecode">این یک برنامه متن باز و آزاد است. شما میتوانید کد منبع را در گیتهاب پیدا کرده و نیز باگها را گزارش کنید.</string>
|
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
||||||
<string name="launcher_tryhere">بعد از فعالسازی، صفحه کلید را اینجا امتحان کنید:</string>
|
<string name="launcher_description">این برنامه یک صفحه کلید مجازی است. با کلیک روی گزینه زیر به تنظیمات سامانه بروید و صفحه کلید غیرمنتظره را فعال کنید.</string>
|
||||||
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
<string name="launcher_sourcecode">این یک برنامه متن باز و آزاد است. شما میتوانید کد منبع را در گیتهاب پیدا کرده و نیز باگها را گزارش کنید.</string>
|
||||||
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
<string name="launcher_tryhere">بعد از فعالسازی، صفحه کلید را اینجا امتحان کنید:</string>
|
||||||
<!-- <string name="key_descr_compose">Compose</string> -->
|
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
||||||
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
||||||
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
<!-- <string name="key_descr_compose">Compose</string> -->
|
||||||
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
||||||
<!-- <string name="key_descr_copy">Copy</string> -->
|
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
||||||
<!-- <string name="key_descr_paste">Paste</string> -->
|
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
||||||
<!-- <string name="key_descr_cut">Cut</string> -->
|
<!-- <string name="key_descr_copy">Copy</string> -->
|
||||||
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
<!-- <string name="key_descr_paste">Paste</string> -->
|
||||||
<!-- <string name="key_descr_shareText">Share text</string> -->
|
<!-- <string name="key_descr_cut">Cut</string> -->
|
||||||
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
||||||
<!-- <string name="key_descr_undo">Undo</string> -->
|
<!-- <string name="key_descr_shareText">Share text</string> -->
|
||||||
<!-- <string name="key_descr_redo">Redo</string> -->
|
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
||||||
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_undo">Undo</string> -->
|
||||||
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_redo">Redo</string> -->
|
||||||
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
||||||
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
||||||
<!-- <string name="key_descr_home">Home</string> -->
|
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
||||||
<!-- <string name="key_descr_end">End</string> -->
|
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
||||||
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
<!-- <string name="key_descr_home">Home</string> -->
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<!-- <string name="key_descr_end">End</string> -->
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
||||||
|
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">Clavier virtuel léger et respectueux de la vie privée pour Android.</string>
|
<string name="short_description">Clavier virtuel léger et respectueux de la vie privée pour Android.</string>
|
||||||
<string name="store_description">La fonctionnalité principale est l\'accès rapide à plus de caractères en balayant les touches vers les coins.\n\nCette application a été conçue à l\'origine pour les programmeurs utilisant Termux.\nElle est maintenant parfaite pour une utilisation quotidienne.\n\nCette application ne contient pas de publicité, n\'accède pas au réseau et est Open Source.</string>
|
<string name="store_description">"La fonctionnalité principale est l'accès rapide à plus de caractères en balayant les touches vers les coins.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard Paramètres</string>
|
|
||||||
<string name="pref_portrait">En mode portrait</string>
|
Cette application a été conçue à l'origine pour les programmeurs utilisant Termux.
|
||||||
<string name="pref_landscape">En mode landscape</string>
|
Elle est maintenant parfaite pour une utilisation quotidienne.
|
||||||
<string name="pref_category_layout">Disposition</string>
|
|
||||||
<string name="pref_label_brightness">Luminosité des symboles</string>
|
Cette application ne contient pas de publicité, n'accède pas au réseau et est Open Source."</string>
|
||||||
<string name="pref_keyboard_opacity">Transparence du clavier</string>
|
<string name="settings_activity_label">Unexpected Keyboard Paramètres</string>
|
||||||
<string name="pref_key_opacity">Transparence des touches</string>
|
<string name="pref_portrait">En mode portrait</string>
|
||||||
<string name="pref_key_activated_opacity">Transparence des touches pressées</string>
|
<string name="pref_landscape">En mode landscape</string>
|
||||||
<string name="pref_layout_e_system">Paramètre système</string>
|
<string name="pref_category_layout">Disposition</string>
|
||||||
<string name="pref_layout_e_custom">Disposition personnalisée</string>
|
<string name="pref_label_brightness">Luminosité des symboles</string>
|
||||||
<string name="pref_layouts_add">Ajouter un clavier alternatif</string>
|
<string name="pref_keyboard_opacity">Transparence du clavier</string>
|
||||||
<string name="pref_layouts_item">Disposition %1$d: %2$s</string>
|
<string name="pref_key_opacity">Transparence des touches</string>
|
||||||
<string name="pref_layouts_remove_custom">Supprimer</string>
|
<string name="pref_key_activated_opacity">Transparence des touches pressées</string>
|
||||||
<string name="pref_custom_layout_title">Disposition personnalisée</string>
|
<string name="pref_layout_e_system">Paramètre système</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Disposition personnalisée</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Ajouter un clavier alternatif</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Disposition %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Afficher le pavé numérique</string>
|
<string name="pref_layouts_remove_custom">Supprimer</string>
|
||||||
<string name="pref_show_numpad_never">Jamais</string>
|
<string name="pref_custom_layout_title">Disposition personnalisée</string>
|
||||||
<string name="pref_show_numpad_landscape">Seulement en mode paysage</string>
|
<string name="pref_show_numpad_title">Afficher le pavé numérique</string>
|
||||||
<string name="pref_show_numpad_always">Toujour</string>
|
<string name="pref_show_numpad_never">Jamais</string>
|
||||||
<string name="pref_number_row_title">Rangée de nombres</string>
|
<string name="pref_show_numpad_landscape">Seulement en mode paysage</string>
|
||||||
<string name="pref_number_row_summary">Ajoute une rangée de nombres en haut du clavier quand le pavé numérique est caché</string>
|
<string name="pref_show_numpad_always">Toujour</string>
|
||||||
<string name="pref_numpad_layout">Disposition du pavé numérique</string>
|
<string name="pref_number_row_title">Rangée de nombres</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Du plus haut au plus bas</string>
|
<string name="pref_number_row_summary">Ajoute une rangée de nombres en haut du clavier quand le pavé numérique est caché</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Du plus bas au plus haut</string>
|
<string name="pref_numpad_layout">Disposition du pavé numérique</string>
|
||||||
<string name="pref_extra_keys_title">Ajouter des touches au clavier</string>
|
<string name="pref_numpad_layout_e_high_first">Du plus haut au plus bas</string>
|
||||||
<string name="pref_extra_keys_custom">Ajouter des touches personnalisées</string>
|
<string name="pref_numpad_layout_e_low_first">Du plus bas au plus haut</string>
|
||||||
<string name="pref_extra_keys_internal">Sélectionner les touches à ajouter au clavier</string>
|
<string name="pref_extra_keys_title">Ajouter des touches au clavier</string>
|
||||||
<string name="pref_category_typing">Saisie</string>
|
<string name="pref_extra_keys_custom">Ajouter des touches personnalisées</string>
|
||||||
<string name="pref_swipe_dist_title">Distance de swipe</string>
|
<string name="pref_extra_keys_internal">Sélectionner les touches à ajouter au clavier</string>
|
||||||
<string name="pref_swipe_dist_summary">La distance des caractères dans les coins (%s)</string>
|
<string name="pref_category_typing">Saisie</string>
|
||||||
<string name="pref_long_timeout_title">Delai de l\'appui long</string>
|
<string name="pref_swipe_dist_title">Distance de swipe</string>
|
||||||
<string name="pref_long_interval_title">Écart entre les répétitions</string>
|
<string name="pref_swipe_dist_summary">La distance des caractères dans les coins (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Répétition par appui long</string>
|
<string name="pref_long_timeout_title">Delai de l\'appui long</string>
|
||||||
<string name="pref_lock_double_tap_title">Appuyer deux fois pour bloquer la majuscule</string>
|
<string name="pref_long_interval_title">Écart entre les répétitions</string>
|
||||||
<string name="pref_lock_double_tap_summary">Un appui long bloque la majuscule</string>
|
<string name="pref_keyrepeat_enabled">Répétition par appui long</string>
|
||||||
<string name="pref_category_behavior">Comportement</string>
|
<string name="pref_lock_double_tap_title">Appuyer deux fois pour bloquer la majuscule</string>
|
||||||
<string name="pref_autocapitalisation_title">Majuscule automatique</string>
|
<string name="pref_lock_double_tap_summary">Un appui long bloque la majuscule</string>
|
||||||
<string name="pref_autocapitalisation_summary">Activer Shift au début des phrases</string>
|
<string name="pref_category_behavior">Comportement</string>
|
||||||
<string name="pref_switch_input_immediate_title">Changer vers le clavier utilisé en dernier</string>
|
<string name="pref_autocapitalisation_title">Majuscule automatique</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Comportement de la touche de changement de clavier</string>
|
<string name="pref_autocapitalisation_summary">Activer Shift au début des phrases</string>
|
||||||
<string name="pref_vibrate_custom">Vibrations personnalisées</string>
|
<string name="pref_switch_input_immediate_title">Changer vers le clavier utilisé en dernier</string>
|
||||||
<string name="pref_vibrate_duration_title">Intensité des vibrations</string>
|
<string name="pref_switch_input_immediate_summary">Comportement de la touche de changement de clavier</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Clavier PIN</string>
|
<string name="pref_vibrate_custom">Vibrations personnalisées</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Lors de la saisie de nombres, de dates et de numéros de téléphone</string>
|
<string name="pref_vibrate_duration_title">Intensité des vibrations</string>
|
||||||
<string name="pref_category_style">Style</string>
|
<string name="pref_pin_entry_enabled_title">Clavier PIN</string>
|
||||||
<string name="pref_margin_bottom_title">Marge du bas</string>
|
<string name="pref_pin_entry_enabled_summary">Lors de la saisie de nombres, de dates et de numéros de téléphone</string>
|
||||||
<string name="pref_keyboard_height_title">Hauteur du clavier</string>
|
<string name="pref_category_style">Style</string>
|
||||||
<string name="pref_horizontal_margin_title">Marge des côtés</string>
|
<string name="pref_margin_bottom_title">Marge du bas</string>
|
||||||
<string name="pref_character_size_title">Taille des symboles</string>
|
<string name="pref_keyboard_height_title">Hauteur du clavier</string>
|
||||||
<string name="pref_character_size_summary">Taille des caractères affichés sur les touches (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Marge des côtés</string>
|
||||||
<string name="pref_theme">Thème</string>
|
<string name="pref_character_size_title">Taille des symboles</string>
|
||||||
<string name="pref_theme_e_system">Paramètre système</string>
|
<string name="pref_character_size_summary">Taille des caractères affichés sur les touches (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Sombre</string>
|
<string name="pref_theme">Thème</string>
|
||||||
<string name="pref_theme_e_light">Clair</string>
|
<string name="pref_theme_e_system">Paramètre système</string>
|
||||||
<string name="pref_theme_e_black">Noir</string>
|
<string name="pref_theme_e_dark">Sombre</string>
|
||||||
<string name="pref_theme_e_altblack">Noir 2</string>
|
<string name="pref_theme_e_light">Clair</string>
|
||||||
<string name="pref_theme_e_white">Blanc</string>
|
<string name="pref_theme_e_black">Noir</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Noir 2</string>
|
||||||
<string name="pref_theme_e_desert">Désert</string>
|
<string name="pref_theme_e_white">Blanc</string>
|
||||||
<string name="pref_theme_e_jungle">Jungle</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monet">Monet (Système)</string>
|
<string name="pref_theme_e_desert">Desert</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Clair)</string>
|
<string name="pref_theme_e_jungle">Jungle</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Sombre)</string>
|
<string name="pref_theme_e_monet">Monet (Système)</string>
|
||||||
<string name="pref_theme_e_rosepine">Rosé Pine</string>
|
<string name="pref_theme_e_monetlight">Monet (Clair)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Très courte</string>
|
<string name="pref_theme_e_monetdark">Monet (Sombre)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Courte</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normale</string>
|
<string name="pref_swipe_dist_e_very_short">Très courte</string>
|
||||||
<string name="pref_swipe_dist_e_far">Longue</string>
|
<string name="pref_swipe_dist_e_short">Courte</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Très longue</string>
|
<string name="pref_swipe_dist_e_default">Normale</string>
|
||||||
<string name="pref_key_horizontal_space">Espacement horizontal entre les touches</string>
|
<string name="pref_swipe_dist_e_far">Longue</string>
|
||||||
<string name="pref_key_vertical_space">Espacement vertical entre les touches</string>
|
<string name="pref_swipe_dist_e_very_far">Très longue</string>
|
||||||
<string name="pref_border_config_title">Bordures personnalisées</string>
|
<string name="pref_key_horizontal_space">Espacement horizontal entre les touches</string>
|
||||||
<string name="pref_border_width_title">Largeur des bordures</string>
|
<string name="pref_key_vertical_space">Espacement vertical entre les touches</string>
|
||||||
<string name="pref_corners_radius_title">Rayon des coins</string>
|
<string name="pref_border_config_title">Bordures personnalisées</string>
|
||||||
<string name="pref_circle_sensitivity_title">Sensibilité du mouvement en cercle</string>
|
<string name="pref_border_width_title">Largeur des bordures</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Haute</string>
|
<string name="pref_corners_radius_title">Rayon des coins</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Moyenne</string>
|
<string name="pref_circle_sensitivity_title">Sensibilité du mouvement en cercle</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Basse</string>
|
<string name="pref_circle_sensitivity_e_high">Haute</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Désactivée</string>
|
<string name="pref_circle_sensitivity_e_medium">Moyenne</string>
|
||||||
<string name="key_action_next">Suiv.</string>
|
<string name="pref_circle_sensitivity_e_low">Basse</string>
|
||||||
<string name="key_action_done">Fini</string>
|
<string name="pref_circle_sensitivity_e_disabled">Désactivée</string>
|
||||||
<string name="key_action_go">Aller</string>
|
<string name="key_action_next">Suiv.</string>
|
||||||
<string name="key_action_prev">Prec.</string>
|
<string name="key_action_done">Fin</string>
|
||||||
<string name="key_action_search">Chercher</string>
|
<string name="key_action_go">Aller</string>
|
||||||
<string name="key_action_send">Envoyer</string>
|
<string name="key_action_prev">Prec.</string>
|
||||||
<string name="launcher_button_imesettings">Activer le clavier</string>
|
<string name="key_action_search">Chercher</string>
|
||||||
<string name="launcher_button_imepicker">Selectionner le keyboard</string>
|
<string name="key_action_send">Envoyer</string>
|
||||||
<string name="launcher_description">Cette application est un clavier virtuel. Activez-le dans les paramètres système en cliquant sur le bouton ci-dessous.</string>
|
<string name="launcher_button_imesettings">Activer le clavier</string>
|
||||||
<string name="launcher_sourcecode">Cette application est libre et open-source. Lisez le source code et reportez des problèmes sur Github.</string>
|
<string name="launcher_button_imepicker">Selectionner le keyboard</string>
|
||||||
<string name="launcher_tryhere">Après l\'avoir activé, vous pouvez l\'essayer ici :</string>
|
<string name="launcher_description">Cette application est un clavier virtuel. Activez-le dans les paramètres système en cliquant sur le bouton ci-dessous.</string>
|
||||||
<string name="launcher_tryhere_hint">Essayer ici</string>
|
<string name="launcher_sourcecode">Cette application est libre et open-source. Lisez le source code et reportez des problèmes sur Github.</string>
|
||||||
<string name="key_descr_capslock">Verrouillage majuscules</string>
|
<string name="launcher_tryhere">Après l\'avoir activé, vous pouvez l\'essayer ici:</string>
|
||||||
<string name="key_descr_compose">Composition</string>
|
<string name="launcher_tryhere_hint">Essayer ici</string>
|
||||||
<string name="key_descr_switch_greekmath">Symboles mathématiques</string>
|
<string name="key_descr_capslock">Verrouillage majuscules</string>
|
||||||
<string name="key_descr_change_method">Changer de clavier</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">Saisie vocale</string>
|
<string name="key_descr_switch_greekmath">Symboles mathématiques</string>
|
||||||
<string name="key_descr_copy">Copier</string>
|
<string name="key_descr_change_method">Changer de clavier</string>
|
||||||
<string name="key_descr_paste">Coller</string>
|
<string name="key_descr_voice_typing">Saisie vocale</string>
|
||||||
<string name="key_descr_cut">Couper</string>
|
<string name="key_descr_copy">Copier</string>
|
||||||
<string name="key_descr_selectAll">Sel. tout</string>
|
<string name="key_descr_paste">Coller</string>
|
||||||
<string name="key_descr_shareText">Partager</string>
|
<string name="key_descr_cut">Couper</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Copier en texte brut</string>
|
<string name="key_descr_selectAll">Sel. tout</string>
|
||||||
<string name="key_descr_undo">Annuler</string>
|
<string name="key_descr_shareText">Partager</string>
|
||||||
<string name="key_descr_redo">Refaire</string>
|
<string name="key_descr_pasteAsPlainText">Copier en texte brut</string>
|
||||||
<string name="key_descr_ª">Ordinal</string>
|
<string name="key_descr_undo">Undo</string>
|
||||||
<string name="key_descr_º">Ordinal</string>
|
<string name="key_descr_redo">Redo</string>
|
||||||
<string name="key_descr_superscript">Exposant</string>
|
<string name="key_descr_ª">Ordinal</string>
|
||||||
<string name="key_descr_subscript">Souscrit</string>
|
<string name="key_descr_º">Ordinal</string>
|
||||||
<string name="key_descr_page_up">Page précédente</string>
|
<string name="key_descr_superscript">Exposant</string>
|
||||||
<string name="key_descr_page_down">Page suivante</string>
|
<string name="key_descr_subscript">Souscrit</string>
|
||||||
<string name="key_descr_home">Début</string>
|
<string name="key_descr_page_up">Page précédente</string>
|
||||||
<string name="key_descr_end">Fin</string>
|
<string name="key_descr_page_down">Page suivante</string>
|
||||||
<string name="key_descr_clipboard">Presse-papiers</string>
|
<string name="key_descr_home">Début</string>
|
||||||
<string name="key_descr_combining">Diacritique combinant</string>
|
<string name="key_descr_end">Fin</string>
|
||||||
<string name="key_descr_dead_key">Touche morte</string>
|
<string name="key_descr_clipboard">Presse-papiers</string>
|
||||||
<string name="key_descr_zwj">Liant sans chasse</string>
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<string name="key_descr_zwnj">Antiliant sans chasse</string>
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<string name="key_descr_nbsp">Espace insécable</string>
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<string name="key_descr_nnbsp">Espace fine insécable</string>
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Texte récemment copié</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Épinglé</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Supprimer ce presse-papiers ?</string>
|
<string name="clipboard_history_heading">Texte récemment copié</string>
|
||||||
<string name="clipboard_remove_confirmed">Oui</string>
|
<string name="clipboard_pin_heading">Épinglé</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Supprimer ce presse-papiers ?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Oui</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">Una Tastiera Virtuale Leggera Per La Programmazione</string>
|
<string name="short_description">Una Tastiera Virtuale Leggera Per La Programmazione</string>
|
||||||
<!-- <string name="store_description">The main feature is that you can type more characters by swiping the keys towards the corners.\n\nThis application was originally designed for programmers using Termux.\nNow perfect for everyday use.\n\nThis application contains no ads, doesn\'t make any network requests and is Open Source.</string> -->
|
<!-- <string name="store_description">"The main feature is that you can type more characters by swiping the keys towards the corners.
|
||||||
<string name="settings_activity_label">Impostazioni di Unexpected Keyboard</string>
|
|
||||||
<!-- <string name="pref_portrait">In portrait mode</string> -->
|
This application was originally designed for programmers using Termux.
|
||||||
<!-- <string name="pref_landscape">In landscape mode</string> -->
|
Now perfect for everyday use.
|
||||||
<string name="pref_category_layout">Layout</string>
|
|
||||||
<!-- <string name="pref_label_brightness">Adjust label brightness</string> -->
|
This application contains no ads, doesn't make any network requests and is Open Source."</string> -->
|
||||||
<!-- <string name="pref_keyboard_opacity">Adjust keyboard background opacity</string> -->
|
<string name="settings_activity_label">Impostazioni di Unexpected Keyboard</string>
|
||||||
<!-- <string name="pref_key_opacity">Adjust key opacity</string> -->
|
<!-- <string name="pref_portrait">In portrait mode</string> -->
|
||||||
<!-- <string name="pref_key_activated_opacity">Adjust pressed key opacity</string> -->
|
<!-- <string name="pref_landscape">In landscape mode</string> -->
|
||||||
<string name="pref_layout_e_system">Impostazioni di sistema</string>
|
<string name="pref_category_layout">Layout</string>
|
||||||
<!-- <string name="pref_layout_e_custom">Custom layout</string> -->
|
<!-- <string name="pref_label_brightness">Adjust label brightness</string> -->
|
||||||
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
<!-- <string name="pref_keyboard_opacity">Adjust keyboard background opacity</string> -->
|
||||||
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
<!-- <string name="pref_key_opacity">Adjust key opacity</string> -->
|
||||||
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
<!-- <string name="pref_key_activated_opacity">Adjust pressed key opacity</string> -->
|
||||||
<!-- <string name="pref_custom_layout_title">Custom layout</string> -->
|
<string name="pref_layout_e_system">Impostazioni di sistema</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<!-- <string name="pref_layout_e_custom">Custom layout</string> -->
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
||||||
<!-- <string name="pref_show_numpad_title">Show NumPad</string> -->
|
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
||||||
<!-- <string name="pref_show_numpad_never">Never</string> -->
|
<!-- <string name="pref_custom_layout_title">Custom layout</string> -->
|
||||||
<!-- <string name="pref_show_numpad_landscape">Only in landscape mode</string> -->
|
<!-- <string name="pref_show_numpad_title">Show NumPad</string> -->
|
||||||
<!-- <string name="pref_show_numpad_always">Always</string> -->
|
<!-- <string name="pref_show_numpad_never">Never</string> -->
|
||||||
<!-- <string name="pref_number_row_title">Show number row</string> -->
|
<!-- <string name="pref_show_numpad_landscape">Only in landscape mode</string> -->
|
||||||
<!-- <string name="pref_number_row_summary">Add a number row at the top of the keyboard when the numpad is hidden</string> -->
|
<!-- <string name="pref_show_numpad_always">Always</string> -->
|
||||||
<!-- <string name="pref_numpad_layout">NumPad layout</string> -->
|
<!-- <string name="pref_number_row_title">Show number row</string> -->
|
||||||
<!-- <string name="pref_numpad_layout_e_high_first">High digits first</string> -->
|
<!-- <string name="pref_number_row_summary">Add a number row at the top of the keyboard when the numpad is hidden</string> -->
|
||||||
<!-- <string name="pref_numpad_layout_e_low_first">Low digits first</string> -->
|
<!-- <string name="pref_numpad_layout">NumPad layout</string> -->
|
||||||
<!-- <string name="pref_extra_keys_title">Add keys to the keyboard</string> -->
|
<!-- <string name="pref_numpad_layout_e_high_first">High digits first</string> -->
|
||||||
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
<!-- <string name="pref_numpad_layout_e_low_first">Low digits first</string> -->
|
||||||
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
<!-- <string name="pref_extra_keys_title">Add keys to the keyboard</string> -->
|
||||||
<string name="pref_category_typing">Digitando</string>
|
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
||||||
<string name="pref_swipe_dist_title">Distanza swipe</string>
|
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
||||||
<string name="pref_swipe_dist_summary">Distanza dei caratteri negli angoli dei tasti (%s)</string>
|
<string name="pref_category_typing">Digitando</string>
|
||||||
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
<string name="pref_swipe_dist_title">Distanza swipe</string>
|
||||||
<string name="pref_long_interval_title">Intervallo ripetizione tasto</string>
|
<string name="pref_swipe_dist_summary">Distanza dei caratteri negli angoli dei tasti (%s)</string>
|
||||||
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
||||||
<string name="pref_lock_double_tap_title">Doppio tocco su Shift per attivare CapsLock</string>
|
<string name="pref_long_interval_title">Intervallo ripetizione tasto</string>
|
||||||
<string name="pref_lock_double_tap_summary">Invece di premere i modificatori a lungo</string>
|
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
||||||
<!-- <string name="pref_category_behavior">Behavior</string> -->
|
<string name="pref_lock_double_tap_title">Doppio tocco su Shift per attivare CapsLock</string>
|
||||||
<string name="pref_autocapitalisation_title">Maiuscole Automatiche</string>
|
<string name="pref_lock_double_tap_summary">Invece di premere i modificatori a lungo</string>
|
||||||
<string name="pref_autocapitalisation_summary">Premi Shift all\'inizio di una frase</string>
|
<!-- <string name="pref_category_behavior">Behavior</string> -->
|
||||||
<!-- <string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string> -->
|
<string name="pref_autocapitalisation_title">Maiuscole Automatiche</string>
|
||||||
<!-- <string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string> -->
|
<string name="pref_autocapitalisation_summary">Premi Shift all\'inizio di una frase</string>
|
||||||
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
<!-- <string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string> -->
|
||||||
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
<!-- <string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
||||||
<string name="pref_category_style">Stile</string>
|
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
||||||
<string name="pref_margin_bottom_title">Margine inferiore</string>
|
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
||||||
<string name="pref_keyboard_height_title">Altezza tastiera</string>
|
<string name="pref_category_style">Stile</string>
|
||||||
<string name="pref_horizontal_margin_title">Margine orizzontale</string>
|
<string name="pref_margin_bottom_title">Margine inferiore</string>
|
||||||
<string name="pref_character_size_title">Dimensione Caratteri</string>
|
<string name="pref_keyboard_height_title">Altezza tastiera</string>
|
||||||
<string name="pref_character_size_summary">Dimensione dei caratteri mostrati sulla tastiera (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Margine orizzontale</string>
|
||||||
<string name="pref_theme">Tema</string>
|
<string name="pref_character_size_title">Dimensione Caratteri</string>
|
||||||
<string name="pref_theme_e_system">Impostazioni di sistema</string>
|
<string name="pref_character_size_summary">Dimensione dei caratteri mostrati sulla tastiera (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Scuro</string>
|
<string name="pref_theme">Tema</string>
|
||||||
<string name="pref_theme_e_light">Chiaro</string>
|
<string name="pref_theme_e_system">Impostazioni di sistema</string>
|
||||||
<string name="pref_theme_e_black">Nero</string>
|
<string name="pref_theme_e_dark">Scuro</string>
|
||||||
<!-- <string name="pref_theme_e_altblack">Alternative Black</string> -->
|
<string name="pref_theme_e_light">Chiaro</string>
|
||||||
<!-- <string name="pref_theme_e_white">White</string> -->
|
<string name="pref_theme_e_black">Nero</string>
|
||||||
<!-- <string name="pref_theme_e_epaper">ePaper</string> -->
|
<!-- <string name="pref_theme_e_altblack">Alternative Black</string> -->
|
||||||
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
<!-- <string name="pref_theme_e_white">White</string> -->
|
||||||
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
<!-- <string name="pref_theme_e_epaper">ePaper</string> -->
|
||||||
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
||||||
<string name="pref_swipe_dist_e_very_short">Veramente breve</string>
|
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
||||||
<string name="pref_swipe_dist_e_short">Breve</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normale</string>
|
<string name="pref_swipe_dist_e_very_short">Veramente breve</string>
|
||||||
<string name="pref_swipe_dist_e_far">Distante</string>
|
<string name="pref_swipe_dist_e_short">Breve</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Molto distante</string>
|
<string name="pref_swipe_dist_e_default">Normale</string>
|
||||||
<string name="pref_key_horizontal_space">Spazio orizzontale tra i tasti</string>
|
<string name="pref_swipe_dist_e_far">Distante</string>
|
||||||
<string name="pref_key_vertical_space">Spazio verticale tra i tasti</string>
|
<string name="pref_swipe_dist_e_very_far">Molto distante</string>
|
||||||
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
<string name="pref_key_horizontal_space">Spazio orizzontale tra i tasti</string>
|
||||||
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
<string name="pref_key_vertical_space">Spazio verticale tra i tasti</string>
|
||||||
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
||||||
<string name="key_action_next">Prossimo</string>
|
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
||||||
<string name="key_action_done">Fatto</string>
|
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
||||||
<string name="key_action_go">Vai</string>
|
<string name="key_action_next">Prossimo</string>
|
||||||
<string name="key_action_prev">Precedente</string>
|
<string name="key_action_done">Fatto</string>
|
||||||
<string name="key_action_search">Cerca</string>
|
<string name="key_action_go">Vai</string>
|
||||||
<string name="key_action_send">Invia</string>
|
<string name="key_action_prev">Precedente</string>
|
||||||
<!-- <string name="launcher_button_imesettings">Enable keyboard</string> -->
|
<string name="key_action_search">Cerca</string>
|
||||||
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
<string name="key_action_send">Invia</string>
|
||||||
<!-- <string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string> -->
|
<!-- <string name="launcher_button_imesettings">Enable keyboard</string> -->
|
||||||
<!-- <string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string> -->
|
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
||||||
<!-- <string name="launcher_tryhere">After enabling, you can try the keyboard here:</string> -->
|
<!-- <string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string> -->
|
||||||
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
<!-- <string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string> -->
|
||||||
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
<!-- <string name="launcher_tryhere">After enabling, you can try the keyboard here:</string> -->
|
||||||
<!-- <string name="key_descr_compose">Compose</string> -->
|
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
||||||
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
||||||
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
<!-- <string name="key_descr_compose">Compose</string> -->
|
||||||
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
||||||
<!-- <string name="key_descr_copy">Copy</string> -->
|
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
||||||
<!-- <string name="key_descr_paste">Paste</string> -->
|
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
||||||
<!-- <string name="key_descr_cut">Cut</string> -->
|
<!-- <string name="key_descr_copy">Copy</string> -->
|
||||||
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
<!-- <string name="key_descr_paste">Paste</string> -->
|
||||||
<!-- <string name="key_descr_shareText">Share text</string> -->
|
<!-- <string name="key_descr_cut">Cut</string> -->
|
||||||
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
||||||
<!-- <string name="key_descr_undo">Undo</string> -->
|
<!-- <string name="key_descr_shareText">Share text</string> -->
|
||||||
<!-- <string name="key_descr_redo">Redo</string> -->
|
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
||||||
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_undo">Undo</string> -->
|
||||||
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_redo">Redo</string> -->
|
||||||
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
||||||
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
||||||
<!-- <string name="key_descr_home">Home</string> -->
|
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
||||||
<!-- <string name="key_descr_end">End</string> -->
|
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
||||||
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
<!-- <string name="key_descr_home">Home</string> -->
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<!-- <string name="key_descr_end">End</string> -->
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
||||||
|
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,139 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
||||||
<string name="short_description">軽量でプライバシーに配慮したAndroid用仮想キーボード</string>
|
<string name="short_description">軽量でプライバシーに配慮したAndroid用仮想キーボード</string>
|
||||||
<string name="store_description">このキーボードは、キーの角をスワイプすることで様々なキーを入力できます。\n\nこのアプリは元々はTermuxでのプログラミング用に設計されました。\nしかし、今では普段の入力にも適しています。\nPCキーボードでの半角入力を再現しています。日本語入力、変換は出来ません。\n\nこのアプリは広告を含まず、インターネットに接続せず、そしてオープンソースです。</string>
|
<string name="store_description">"このキーボードは、キーの角をスワイプすることで様々なキーを入力できます。
|
||||||
<string name="settings_activity_label">Unexpected Keyboardの設定</string>
|
|
||||||
<string name="pref_portrait">縦向き</string>
|
このアプリは元々はTermuxでのプログラミング用に設計されました。
|
||||||
<string name="pref_landscape">横向き</string>
|
しかし、今では普段の入力にも適しています。
|
||||||
<string name="pref_category_layout">レイアウト</string>
|
PCキーボードでの半角入力を再現しています。日本語入力、変換は出来ません。
|
||||||
<string name="pref_label_brightness">文字の明るさ</string>
|
|
||||||
<string name="pref_keyboard_opacity">背景の不透明度</string>
|
このアプリは広告を含まず、インターネットに接続せず、そしてオープンソースです。"</string>
|
||||||
<string name="pref_key_opacity">キーの不透明度</string>
|
<string name="settings_activity_label">Unexpected Keyboardの設定</string>
|
||||||
<string name="pref_key_activated_opacity">押下中のキーの不透明度</string>
|
<string name="pref_portrait">縦向き</string>
|
||||||
<string name="pref_layout_e_system">システム設定</string>
|
<string name="pref_landscape">横向き</string>
|
||||||
<string name="pref_layout_e_custom">カスタムレイアウト</string>
|
<string name="pref_category_layout">レイアウト</string>
|
||||||
<string name="pref_layouts_add">レイアウトを追加</string>
|
<string name="pref_label_brightness">文字の明るさ</string>
|
||||||
<string name="pref_layouts_item">レイアウト %1$d: %2$s</string>
|
<string name="pref_keyboard_opacity">背景の不透明度</string>
|
||||||
<string name="pref_layouts_remove_custom">レイアウトを削除</string>
|
<string name="pref_key_opacity">キーの不透明度</string>
|
||||||
<string name="pref_custom_layout_title">カスタムレイアウト</string>
|
<string name="pref_key_activated_opacity">押下中のキーの不透明度</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_system">システム設定</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layout_e_custom">カスタムレイアウト</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_add">レイアウトを追加</string>
|
||||||
<string name="pref_show_numpad_title">テンキーを表示</string>
|
<string name="pref_layouts_item">レイアウト %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_never">表示しない</string>
|
<string name="pref_layouts_remove_custom">レイアウトを削除</string>
|
||||||
<string name="pref_show_numpad_landscape">横向きの時は表示</string>
|
<string name="pref_custom_layout_title">カスタムレイアウト</string>
|
||||||
<string name="pref_show_numpad_always">表示する</string>
|
<string name="pref_show_numpad_title">テンキーを表示</string>
|
||||||
<string name="pref_number_row_title">数字の行を表示</string>
|
<string name="pref_show_numpad_never">表示しない</string>
|
||||||
<string name="pref_number_row_summary">テンキーが非表示の場合最上段に数字の行を追加します</string>
|
<string name="pref_show_numpad_landscape">横向きの時は表示</string>
|
||||||
<string name="pref_numpad_layout">テンキーのレイアウト</string>
|
<string name="pref_show_numpad_always">表示する</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">大きい数字を上に</string>
|
<string name="pref_number_row_title">数字の行を表示</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">小さい数字を上に</string>
|
<string name="pref_number_row_summary">テンキーが非表示の場合最上段に数字の行を追加します</string>
|
||||||
<string name="pref_extra_keys_title">追加のキーの設定</string>
|
<string name="pref_numpad_layout">テンキーのレイアウト</string>
|
||||||
<string name="pref_extra_keys_custom">キーを追加</string>
|
<string name="pref_numpad_layout_e_high_first">大きい数字を上に</string>
|
||||||
<string name="pref_extra_keys_internal">キーボードに表示するキーを選択</string>
|
<string name="pref_numpad_layout_e_low_first">小さい数字を上に</string>
|
||||||
<string name="pref_category_typing">入力</string>
|
<string name="pref_extra_keys_title">追加のキーの設定</string>
|
||||||
<string name="pref_swipe_dist_title">スワイプ距離</string>
|
<string name="pref_extra_keys_custom">キーを追加</string>
|
||||||
<string name="pref_swipe_dist_summary">キーの角をスワイプする距離 (%s)</string>
|
<string name="pref_extra_keys_internal">キーボードに表示するキーを選択</string>
|
||||||
<string name="pref_long_timeout_title">キー長押しの時間</string>
|
<string name="pref_category_typing">入力</string>
|
||||||
<string name="pref_long_interval_title">キーを連続入力する間隔</string>
|
<string name="pref_swipe_dist_title">スワイプ距離</string>
|
||||||
<string name="pref_keyrepeat_enabled">長押しでキーを連続入力する</string>
|
<string name="pref_swipe_dist_summary">キーの角をスワイプする距離 (%s)</string>
|
||||||
<string name="pref_lock_double_tap_title">ShiftをダブルタップでCaps Lock</string>
|
<string name="pref_long_timeout_title">キー長押しの時間</string>
|
||||||
<string name="pref_lock_double_tap_summary">どの装飾キーも長押しで固定できます</string>
|
<string name="pref_long_interval_title">キーを連続入力する間隔</string>
|
||||||
<string name="pref_category_behavior">挙動</string>
|
<string name="pref_keyrepeat_enabled">長押しでキーを連続入力する</string>
|
||||||
<string name="pref_autocapitalisation_title">自動大文字化</string>
|
<string name="pref_lock_double_tap_title">ShiftをダブルタップでCaps Lock</string>
|
||||||
<string name="pref_autocapitalisation_summary">文章の先頭でShiftキーを自動入力</string>
|
<string name="pref_lock_double_tap_summary">どの装飾キーも長押しで固定できます</string>
|
||||||
<string name="pref_switch_input_immediate_title">最後に使用したキーボードに切替</string>
|
<string name="pref_category_behavior">挙動</string>
|
||||||
<string name="pref_switch_input_immediate_summary">キーボード切替キーの挙動</string>
|
<string name="pref_autocapitalisation_title">自動大文字化</string>
|
||||||
<string name="pref_vibrate_custom">キーボード独自の振動設定</string>
|
<string name="pref_autocapitalisation_summary">文章の先頭でShiftキーを自動入力</string>
|
||||||
<string name="pref_vibrate_duration_title">振動の時間</string>
|
<string name="pref_switch_input_immediate_title">最後に使用したキーボードに切替</string>
|
||||||
<string name="pref_pin_entry_enabled_title">PIN入力</string>
|
<string name="pref_switch_input_immediate_summary">キーボード切替キーの挙動</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">数字・日付・電話番号入力時</string>
|
<string name="pref_vibrate_custom">キーボード独自の振動設定</string>
|
||||||
<string name="pref_category_style">表示</string>
|
<string name="pref_vibrate_duration_title">振動の時間</string>
|
||||||
<string name="pref_margin_bottom_title">下の余白</string>
|
<string name="pref_pin_entry_enabled_title">PIN入力</string>
|
||||||
<string name="pref_keyboard_height_title">キーボードの高さ</string>
|
<string name="pref_pin_entry_enabled_summary">数字・日付・電話番号入力時</string>
|
||||||
<string name="pref_horizontal_margin_title">左右の余白</string>
|
<string name="pref_category_style">表示</string>
|
||||||
<string name="pref_character_size_title">文字の大きさ</string>
|
<string name="pref_margin_bottom_title">下の余白</string>
|
||||||
<string name="pref_character_size_summary">キーボードに表示される文字の大きさ (%.2fx)</string>
|
<string name="pref_keyboard_height_title">キーボードの高さ</string>
|
||||||
<string name="pref_theme">テーマ</string>
|
<string name="pref_horizontal_margin_title">左右の余白</string>
|
||||||
<string name="pref_theme_e_system">システム設定</string>
|
<string name="pref_character_size_title">文字の大きさ</string>
|
||||||
<string name="pref_theme_e_dark">ダークモード</string>
|
<string name="pref_character_size_summary">キーボードに表示される文字の大きさ (%.2fx)</string>
|
||||||
<string name="pref_theme_e_light">ライトモード</string>
|
<string name="pref_theme">テーマ</string>
|
||||||
<string name="pref_theme_e_black">黒</string>
|
<string name="pref_theme_e_system">システム設定</string>
|
||||||
<string name="pref_theme_e_altblack">黒(別バージョン)</string>
|
<string name="pref_theme_e_dark">ダークモード</string>
|
||||||
<string name="pref_theme_e_white">白</string>
|
<string name="pref_theme_e_light">ライトモード</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_black">黒</string>
|
||||||
<string name="pref_theme_e_desert">Desert</string>
|
<string name="pref_theme_e_altblack">黒(別バージョン)</string>
|
||||||
<string name="pref_theme_e_jungle">Jungle</string>
|
<string name="pref_theme_e_white">白</string>
|
||||||
<string name="pref_theme_e_monet">Monet (システム)</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (ライト)</string>
|
<string name="pref_theme_e_desert">Desert</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (ダーク)</string>
|
<string name="pref_theme_e_jungle">Jungle</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monet">Monet (システム)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">短い</string>
|
<string name="pref_theme_e_monetlight">Monet (ライト)</string>
|
||||||
<string name="pref_swipe_dist_e_short">やや短い</string>
|
<string name="pref_theme_e_monetdark">Monet (ダーク)</string>
|
||||||
<string name="pref_swipe_dist_e_default">普通</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_far">やや長い</string>
|
<string name="pref_swipe_dist_e_very_short">短い</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">長い</string>
|
<string name="pref_swipe_dist_e_short">やや短い</string>
|
||||||
<string name="pref_key_horizontal_space">キー間の左右の間隔</string>
|
<string name="pref_swipe_dist_e_default">普通</string>
|
||||||
<string name="pref_key_vertical_space">キー間の上下の間隔</string>
|
<string name="pref_swipe_dist_e_far">やや長い</string>
|
||||||
<string name="pref_border_config_title">キー形状の設定</string>
|
<string name="pref_swipe_dist_e_very_far">長い</string>
|
||||||
<string name="pref_border_width_title">縁取り</string>
|
<string name="pref_key_horizontal_space">キー間の左右の間隔</string>
|
||||||
<string name="pref_corners_radius_title">丸み</string>
|
<string name="pref_key_vertical_space">キー間の上下の間隔</string>
|
||||||
<string name="pref_circle_sensitivity_title">円形ジェスチャーの感度</string>
|
<string name="pref_border_config_title">キー形状の設定</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">高</string>
|
<string name="pref_border_width_title">縁取り</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">中</string>
|
<string name="pref_corners_radius_title">丸み</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">低</string>
|
<string name="pref_circle_sensitivity_title">円形ジェスチャーの感度</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">無効</string>
|
<string name="pref_circle_sensitivity_e_high">高</string>
|
||||||
<string name="key_action_next">次へ</string>
|
<string name="pref_circle_sensitivity_e_medium">中</string>
|
||||||
<string name="key_action_done">完了</string>
|
<string name="pref_circle_sensitivity_e_low">低</string>
|
||||||
<string name="key_action_go">実行</string>
|
<string name="pref_circle_sensitivity_e_disabled">無効</string>
|
||||||
<string name="key_action_prev">戻る</string>
|
<string name="key_action_next">次へ</string>
|
||||||
<string name="key_action_search">検索</string>
|
<string name="key_action_done">完了</string>
|
||||||
<string name="key_action_send">送信</string>
|
<string name="key_action_go">実行</string>
|
||||||
<string name="launcher_button_imesettings">キーボードを有効化</string>
|
<string name="key_action_prev">戻る</string>
|
||||||
<string name="launcher_button_imepicker">キーボードを選択</string>
|
<string name="key_action_search">検索</string>
|
||||||
<string name="launcher_description">このアプリは仮想キーボードです。下のボタンからシステム設定を開いてUnexpected Keyboardを有効化してください。</string>
|
<string name="key_action_send">送信</string>
|
||||||
<string name="launcher_sourcecode">このアプリはオープンソースのフリーウェアです。GitHubでソースコードを入手したり、不具合を報告したりできます。</string>
|
<string name="launcher_button_imesettings">キーボードを有効化</string>
|
||||||
<string name="launcher_tryhere">有効化されている場合、ここでキーボードを試すことができます。</string>
|
<string name="launcher_button_imepicker">キーボードを選択</string>
|
||||||
<string name="launcher_tryhere_hint">文字を入力</string>
|
<string name="launcher_description">このアプリは仮想キーボードです。下のボタンからシステム設定を開いてUnexpected Keyboardを有効化してください。</string>
|
||||||
<string name="key_descr_capslock">Caps Lock</string>
|
<string name="launcher_sourcecode">このアプリはオープンソースのフリーウェアです。GitHubでソースコードを入手したり、不具合を報告したりできます。</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere">有効化されている場合、ここでキーボードを試すことができます。</string>
|
||||||
<string name="key_descr_switch_greekmath">ギリシャ文字と数学記号</string>
|
<string name="launcher_tryhere_hint">文字を入力</string>
|
||||||
<string name="key_descr_change_method">キーボードの切替</string>
|
<string name="key_descr_capslock">Caps Lock</string>
|
||||||
<string name="key_descr_voice_typing">音声入力</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_copy">コピー</string>
|
<string name="key_descr_switch_greekmath">ギリシャ文字と数学記号</string>
|
||||||
<string name="key_descr_paste">貼り付け</string>
|
<string name="key_descr_change_method">キーボードの切替</string>
|
||||||
<string name="key_descr_cut">切り取り</string>
|
<string name="key_descr_voice_typing">音声入力</string>
|
||||||
<string name="key_descr_selectAll">すべて選択</string>
|
<string name="key_descr_copy">コピー</string>
|
||||||
<string name="key_descr_shareText">テキストを共有</string>
|
<string name="key_descr_paste">貼り付け</string>
|
||||||
<string name="key_descr_pasteAsPlainText">書式なしで貼り付け</string>
|
<string name="key_descr_cut">切り取り</string>
|
||||||
<string name="key_descr_undo">元に戻す</string>
|
<string name="key_descr_selectAll">すべて選択</string>
|
||||||
<string name="key_descr_redo">やり直し</string>
|
<string name="key_descr_shareText">テキストを共有</string>
|
||||||
<string name="key_descr_ª">序数標識</string>
|
<string name="key_descr_pasteAsPlainText">書式なしで貼り付け</string>
|
||||||
<string name="key_descr_º">序数標識</string>
|
<string name="key_descr_undo">元に戻す</string>
|
||||||
<string name="key_descr_superscript">上付き文字</string>
|
<string name="key_descr_redo">やり直し</string>
|
||||||
<string name="key_descr_subscript">下付き文字</string>
|
<string name="key_descr_ª">序数標識</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_º">序数標識</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_superscript">上付き文字</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_subscript">下付き文字</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_clipboard">クリップボード</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_home">Home</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<string name="key_descr_clipboard">クリップボード</string>
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<string name="clipboard_history_heading">最近コピーしたテキスト</string>
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_pin_heading">お気に入り</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_remove_confirm">クリップボードから削除しますか?</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirmed">はい</string>
|
<string name="clipboard_history_heading">最近コピーしたテキスト</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_pin_heading">お気に入り</string>
|
||||||
|
<string name="clipboard_remove_confirm">クリップボードから削除しますか?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">はい</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<!-- <string name="app_name_debug">Unexpected Keyboard (Debug)</string> -->
|
<!-- <string name="app_name_debug">Unexpected Keyboard (Debug)</string> -->
|
||||||
<string name="short_description">개발자들을 위한 가벼운 가상 키보드.</string>
|
<string name="short_description">개발자들을 위한 가벼운 가상 키보드.</string>
|
||||||
<string name="store_description">주요 기능은 모서리 방향으로 키를 스와이프하여 더 많은 문자를 입력할 수 있다는 것입니다.\n\n이 앱은 처음에는 Termux를 사용하는 프로그래머들을 위한 것으로 개발되었습니다.\n지금은 일상적인 용도로도 완벽합니다.\n\n이 응용 프로그램에는 광고가 없으며 네트워크 요청을 하지 않고 오픈 소스입니다.</string>
|
<string name="store_description">"주요 기능은 모서리 방향으로 키를 스와이프하여 더 많은 문자를 입력할 수 있다는 것입니다.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard 설정</string>
|
|
||||||
<string name="pref_portrait">세로 화면</string>
|
이 앱은 처음에는 Termux를 사용하는 프로그래머들을 위한 것으로 개발되었습니다.
|
||||||
<string name="pref_landscape">가로 화면</string>
|
지금은 일상적인 용도로도 완벽합니다.
|
||||||
<string name="pref_category_layout">레이아웃</string>
|
|
||||||
<string name="pref_label_brightness">라벨 밝기 조절</string>
|
이 응용 프로그램에는 광고가 없으며 네트워크 요청을 하지 않고 오픈 소스입니다."</string>
|
||||||
<string name="pref_keyboard_opacity">키보드 배경 불투명도 조절</string>
|
<string name="settings_activity_label">Unexpected Keyboard 설정</string>
|
||||||
<string name="pref_key_opacity">키 불투명도 조절</string>
|
<string name="pref_portrait">세로 화면</string>
|
||||||
<string name="pref_key_activated_opacity">누른 키 불투명도 조절</string>
|
<string name="pref_landscape">가로 화면</string>
|
||||||
<string name="pref_layout_e_system">시스템 세팅</string>
|
<string name="pref_category_layout">레이아웃</string>
|
||||||
<string name="pref_layout_e_custom">사용자 정의 레이아웃</string>
|
<string name="pref_label_brightness">라벨 밝기 조절</string>
|
||||||
<string name="pref_layouts_add">대체 레이아웃 추가</string>
|
<string name="pref_keyboard_opacity">키보드 배경 불투명도 조절</string>
|
||||||
<string name="pref_layouts_item">레이아웃 %1$d: %2$s</string>
|
<string name="pref_key_opacity">키 불투명도 조절</string>
|
||||||
<string name="pref_layouts_remove_custom">레이아웃 제거</string>
|
<string name="pref_key_activated_opacity">누른 키 불투명도 조절</string>
|
||||||
<string name="pref_custom_layout_title">사용자 정의 레이아웃</string>
|
<string name="pref_layout_e_system">시스템 세팅</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">사용자 정의 레이아웃</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">대체 레이아웃 추가</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">레이아웃 %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">NumPad 표시</string>
|
<string name="pref_layouts_remove_custom">레이아웃 제거</string>
|
||||||
<string name="pref_show_numpad_never">안 함</string>
|
<string name="pref_custom_layout_title">사용자 정의 레이아웃</string>
|
||||||
<string name="pref_show_numpad_landscape">가로 모드에서만</string>
|
<string name="pref_show_numpad_title">NumPad 표시</string>
|
||||||
<string name="pref_show_numpad_always">항상</string>
|
<string name="pref_show_numpad_never">안 함</string>
|
||||||
<string name="pref_number_row_title">숫자 열 표시</string>
|
<string name="pref_show_numpad_landscape">가로 모드에서만</string>
|
||||||
<string name="pref_number_row_summary">NumPad이 숨겨진 경우 키보드 상단에 숫자 행을 추가합니다.</string>
|
<string name="pref_show_numpad_always">항상</string>
|
||||||
<string name="pref_numpad_layout">NumPad 레이아웃</string>
|
<string name="pref_number_row_title">숫자 열 표시</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">높은 자리수 우선</string>
|
<string name="pref_number_row_summary">NumPad이 숨겨진 경우 키보드 상단에 숫자 행을 추가합니다.</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">낮은 자리수 우선</string>
|
<string name="pref_numpad_layout">NumPad 레이아웃</string>
|
||||||
<string name="pref_extra_keys_title">키보드에 추가 키 설정</string>
|
<string name="pref_numpad_layout_e_high_first">높은 자리수 우선</string>
|
||||||
<string name="pref_extra_keys_custom">사용자 정의 키 추가</string>
|
<string name="pref_numpad_layout_e_low_first">낮은 자리수 우선</string>
|
||||||
<string name="pref_extra_keys_internal">키보드에 추가할 키 선택</string>
|
<string name="pref_extra_keys_title">키보드에 추가 키 설정</string>
|
||||||
<string name="pref_category_typing">입력</string>
|
<string name="pref_extra_keys_custom">사용자 정의 키 추가</string>
|
||||||
<string name="pref_swipe_dist_title">스와이프 범위</string>
|
<string name="pref_extra_keys_internal">키보드에 추가할 키 선택</string>
|
||||||
<string name="pref_swipe_dist_summary">키 모서리 문자의 입력 범위 (%s)</string>
|
<string name="pref_category_typing">입력</string>
|
||||||
<string name="pref_long_timeout_title">길게 누르는 시간</string>
|
<string name="pref_swipe_dist_title">스와이프 범위</string>
|
||||||
<string name="pref_long_interval_title">키 반복 간격</string>
|
<string name="pref_swipe_dist_summary">키 모서리 문자의 입력 범위 (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">키보드 입력을 길게 유지할 때 반복</string>
|
<string name="pref_long_timeout_title">길게 누르는 시간</string>
|
||||||
<string name="pref_lock_double_tap_title">쉬프트 키 더블 탭을 통해 대문자 잠금 설정</string>
|
<string name="pref_long_interval_title">키 반복 간격</string>
|
||||||
<string name="pref_lock_double_tap_summary">modifier를 길게 누르고 있으면 해당 modifier가 잠긴 상태로 유지됩니다.</string>
|
<string name="pref_keyrepeat_enabled">키보드 입력을 길게 유지할 때 반복</string>
|
||||||
<string name="pref_category_behavior">동작</string>
|
<string name="pref_lock_double_tap_title">쉬프트 키 더블 탭을 통해 대문자 잠금 설정</string>
|
||||||
<string name="pref_autocapitalisation_title">자동 대문자 전환</string>
|
<string name="pref_lock_double_tap_summary">modifier를 길게 누르고 있으면 해당 modifier가 잠긴 상태로 유지됩니다.</string>
|
||||||
<string name="pref_autocapitalisation_summary">문장의 시작에서 Shift 키를 눌러 대문자로 전환합니다.</string>
|
<string name="pref_category_behavior">동작</string>
|
||||||
<string name="pref_switch_input_immediate_title">마지막으로 사용한 키보드로 전환</string>
|
<string name="pref_autocapitalisation_title">자동 대문자 전환</string>
|
||||||
<string name="pref_switch_input_immediate_summary">키보드 전환 키의 동작 방식입니다.</string>
|
<string name="pref_autocapitalisation_summary">문장의 시작에서 Shift 키를 눌러 대문자로 전환합니다.</string>
|
||||||
<string name="pref_vibrate_custom">사용자 정의 진동</string>
|
<string name="pref_switch_input_immediate_title">마지막으로 사용한 키보드로 전환</string>
|
||||||
<string name="pref_vibrate_duration_title">진동 강도</string>
|
<string name="pref_switch_input_immediate_summary">키보드 전환 키의 동작 방식입니다.</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Pin 입력 레이아웃</string>
|
<string name="pref_vibrate_custom">사용자 정의 진동</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">숫자를 입력할 때, 날짜와 전화번호를 입력할 때 해당 레이아웃이 사용됩니다.</string>
|
<string name="pref_vibrate_duration_title">진동 강도</string>
|
||||||
<string name="pref_category_style">스타일</string>
|
<string name="pref_pin_entry_enabled_title">Pin 입력 레이아웃</string>
|
||||||
<string name="pref_margin_bottom_title">아래 넓이</string>
|
<string name="pref_pin_entry_enabled_summary">숫자를 입력할 때, 날짜와 전화번호를 입력할 때 해당 레이아웃이 사용됩니다.</string>
|
||||||
<string name="pref_keyboard_height_title">키보드 높이</string>
|
<string name="pref_category_style">스타일</string>
|
||||||
<string name="pref_horizontal_margin_title">양 옆 넓이</string>
|
<string name="pref_margin_bottom_title">아래 넓이</string>
|
||||||
<string name="pref_character_size_title">폰트 크기</string>
|
<string name="pref_keyboard_height_title">키보드 높이</string>
|
||||||
<string name="pref_character_size_summary">키보드의 표시되는 폰트 크기 (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">양 옆 넓이</string>
|
||||||
<string name="pref_theme">테마</string>
|
<string name="pref_character_size_title">폰트 크기</string>
|
||||||
<string name="pref_theme_e_system">시스템 테마</string>
|
<string name="pref_character_size_summary">키보드의 표시되는 폰트 크기 (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">다크</string>
|
<string name="pref_theme">테마</string>
|
||||||
<string name="pref_theme_e_light">라이트</string>
|
<string name="pref_theme_e_system">시스템 테마</string>
|
||||||
<string name="pref_theme_e_black">블랙</string>
|
<string name="pref_theme_e_dark">다크</string>
|
||||||
<string name="pref_theme_e_altblack">대체 블랙</string>
|
<string name="pref_theme_e_light">라이트</string>
|
||||||
<string name="pref_theme_e_white">화이트</string>
|
<string name="pref_theme_e_black">블랙</string>
|
||||||
<string name="pref_theme_e_epaper">종이</string>
|
<string name="pref_theme_e_altblack">대체 블랙</string>
|
||||||
<string name="pref_theme_e_desert">사막</string>
|
<string name="pref_theme_e_white">화이트</string>
|
||||||
<string name="pref_theme_e_jungle">정글</string>
|
<string name="pref_theme_e_epaper">종이</string>
|
||||||
<string name="pref_theme_e_monet">모네트 (시스템)</string>
|
<string name="pref_theme_e_desert">사막</string>
|
||||||
<string name="pref_theme_e_monetlight">모네트 (라이트)</string>
|
<string name="pref_theme_e_jungle">정글</string>
|
||||||
<string name="pref_theme_e_monetdark">모네트 (다크)</string>
|
<string name="pref_theme_e_monet">모네트 (시스템)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">모네트 (라이트)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">매우 짧음</string>
|
<string name="pref_theme_e_monetdark">모네트 (다크)</string>
|
||||||
<string name="pref_swipe_dist_e_short">짧음</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">보통</string>
|
<string name="pref_swipe_dist_e_very_short">매우 짧음</string>
|
||||||
<string name="pref_swipe_dist_e_far">넓음</string>
|
<string name="pref_swipe_dist_e_short">짧음</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">매우 넓음</string>
|
<string name="pref_swipe_dist_e_default">보통</string>
|
||||||
<string name="pref_key_horizontal_space">키보드 양 옆 간격</string>
|
<string name="pref_swipe_dist_e_far">넓음</string>
|
||||||
<string name="pref_key_vertical_space">키보드 세로 간격</string>
|
<string name="pref_swipe_dist_e_very_far">매우 넓음</string>
|
||||||
<string name="pref_border_config_title">경계선 사용자 정의</string>
|
<string name="pref_key_horizontal_space">키보드 양 옆 간격</string>
|
||||||
<string name="pref_border_width_title">경계선 너비</string>
|
<string name="pref_key_vertical_space">키보드 세로 간격</string>
|
||||||
<string name="pref_corners_radius_title">모서리 반지름</string>
|
<string name="pref_border_config_title">경계선 사용자 정의</string>
|
||||||
<string name="pref_circle_sensitivity_title">원형 제스처 감도</string>
|
<string name="pref_border_width_title">경계선 너비</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">높음</string>
|
<string name="pref_corners_radius_title">모서리 반지름</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">중간</string>
|
<string name="pref_circle_sensitivity_title">원형 제스처 감도</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">낮음</string>
|
<string name="pref_circle_sensitivity_e_high">높음</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">사용 안 함</string>
|
<string name="pref_circle_sensitivity_e_medium">중간</string>
|
||||||
<string name="key_action_next">다음</string>
|
<string name="pref_circle_sensitivity_e_low">낮음</string>
|
||||||
<string name="key_action_done">확인</string>
|
<string name="pref_circle_sensitivity_e_disabled">사용 안 함</string>
|
||||||
<string name="key_action_go">엔터</string>
|
<string name="key_action_next">다음</string>
|
||||||
<string name="key_action_prev">이전</string>
|
<string name="key_action_done">확인</string>
|
||||||
<string name="key_action_search">검색</string>
|
<string name="key_action_go">엔터</string>
|
||||||
<string name="key_action_send">보내기</string>
|
<string name="key_action_prev">이전</string>
|
||||||
<string name="launcher_button_imesettings">키보드 활성화</string>
|
<string name="key_action_search">검색</string>
|
||||||
<string name="launcher_button_imepicker">키보드 선택</string>
|
<string name="key_action_send">보내기</string>
|
||||||
<string name="launcher_description">이 앱은 가상 키보드입니다.Unexpected-Keyboard를 클릭하여 시스템 설정으로 이동하고 아래 버튼을 클릭하세요.</string>
|
<string name="launcher_button_imesettings">키보드 활성화</string>
|
||||||
<string name="launcher_sourcecode">이것은 무료이고 오픈 소스 응용 프로그램입니다. GitHub에서 원본 코드를 찾을 수 있습니다 또는 버그를 신고할 수 있습니다.</string>
|
<string name="launcher_button_imepicker">키보드 선택</string>
|
||||||
<string name="launcher_tryhere">켜면 여기에서 키보드를 시험해 볼 수 있습니다:</string>
|
<string name="launcher_description">이 앱은 가상 키보드입니다.Unexpected-Keyboard를 클릭하여 시스템 설정으로 이동하고 아래 버튼을 클릭하세요.</string>
|
||||||
<string name="launcher_tryhere_hint">여기서 시험해 보기</string>
|
<string name="launcher_sourcecode">이것은 무료이고 오픈 소스 응용 프로그램입니다. GitHub에서 원본 코드를 찾을 수 있습니다 또는 버그를 신고할 수 있습니다.</string>
|
||||||
<string name="key_descr_capslock">대문자 잠금</string>
|
<string name="launcher_tryhere">켜면 여기에서 키보드를 시험해 볼 수 있습니다:</string>
|
||||||
<string name="key_descr_compose">구성</string>
|
<string name="launcher_tryhere_hint">여기서 시험해 보기</string>
|
||||||
<string name="key_descr_switch_greekmath">그리스 수학 기호 전환</string>
|
<string name="key_descr_capslock">대문자 잠금</string>
|
||||||
<string name="key_descr_change_method">키보드 전환</string>
|
<string name="key_descr_compose">구성</string>
|
||||||
<string name="key_descr_voice_typing">음성 입력</string>
|
<string name="key_descr_switch_greekmath">그리스 수학 기호 전환</string>
|
||||||
<string name="key_descr_copy">복사</string>
|
<string name="key_descr_change_method">키보드 전환</string>
|
||||||
<string name="key_descr_paste">붙여넣기</string>
|
<string name="key_descr_voice_typing">음성 입력</string>
|
||||||
<string name="key_descr_cut">자르기</string>
|
<string name="key_descr_copy">복사</string>
|
||||||
<string name="key_descr_selectAll">전부 선택</string>
|
<string name="key_descr_paste">붙여넣기</string>
|
||||||
<string name="key_descr_shareText">텍스트 공유</string>
|
<string name="key_descr_cut">자르기</string>
|
||||||
<string name="key_descr_pasteAsPlainText">일반 텍스트로 붙여넣기</string>
|
<string name="key_descr_selectAll">전부 선택</string>
|
||||||
<string name="key_descr_undo">실행 취소</string>
|
<string name="key_descr_shareText">텍스트 공유</string>
|
||||||
<string name="key_descr_redo">다시 실행</string>
|
<string name="key_descr_pasteAsPlainText">일반 텍스트로 붙여넣기</string>
|
||||||
<string name="key_descr_ª">순서 표시기</string>
|
<string name="key_descr_undo">실행 취소</string>
|
||||||
<string name="key_descr_º">순서 표시기</string>
|
<string name="key_descr_redo">다시 실행</string>
|
||||||
<string name="key_descr_superscript">상위 스크립트</string>
|
<string name="key_descr_ª">순서 표시기</string>
|
||||||
<string name="key_descr_subscript">하위 스크립트</string>
|
<string name="key_descr_º">순서 표시기</string>
|
||||||
<string name="key_descr_page_up">페이지 위</string>
|
<string name="key_descr_superscript">상위 스크립트</string>
|
||||||
<string name="key_descr_page_down">페이지 아래</string>
|
<string name="key_descr_subscript">하위 스크립트</string>
|
||||||
<string name="key_descr_home">홈</string>
|
<string name="key_descr_page_up">페이지 위</string>
|
||||||
<string name="key_descr_end">종료</string>
|
<string name="key_descr_page_down">페이지 아래</string>
|
||||||
<string name="key_descr_clipboard">클립보드 관리자</string>
|
<string name="key_descr_home">홈</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">종료</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">클립보드 관리자</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">최근에 복사한 텍스트</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">고정</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">이 클립보드를 제거하시겠습니까?</string>
|
<string name="clipboard_history_heading">최근에 복사한 텍스트</string>
|
||||||
<string name="clipboard_remove_confirmed">예</string>
|
<string name="clipboard_pin_heading">고정</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">이 클립보드를 제거하시겠습니까?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">예</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,140 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (atkļūdošana)</string>
|
<string name="app_name_debug">Unexpected Keyboard (atkļūdošana)</string>
|
||||||
<string name="short_description">Mazizmēra un privātumu ievērojoša virtuālā Android tastatūra.</string>
|
<string name="short_description">Mazizmēra un privātumu ievērojoša virtuālā Android tastatūra.</string>
|
||||||
<string name="store_description">Galvenā iezīme ir iespēja ievadīt vairāk rakstzīmju ar pavilkšanu uz taustiņu stūriem.\n\nŠī lietotne sākotnēji tika izstrādāta programmētājiem, kas izmanto Termux.\nTagad lieliski piemērota izmantošanai ikdienā.\n\nŠī lietotne nesatur reklāmas, neveic nekādus tīkla pieprasījumus, un tās pirmkods ir pieejams visiem.</string>
|
<string name="store_description">"Galvenā iezīme ir iespēja ievadīt vairāk rakstzīmju ar pavilkšanu uz taustiņu stūriem.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard iestatījumi</string>
|
|
||||||
<string name="pref_portrait">Stateniski</string>
|
Šī lietotne sākotnēji tika izstrādāta programmētājiem, kas izmanto Termux.
|
||||||
<string name="pref_landscape">Guleniski</string>
|
Tagad lieliski piemērota izmantošanai ikdienā.
|
||||||
<string name="pref_category_layout">Izkārtojums</string>
|
|
||||||
<string name="pref_label_brightness">Pielāgot iezīmju spilgtumu</string>
|
Šī lietotne nesatur reklāmas, neveic nekādus tīkla pieprasījumus, un tās pirmkods ir pieejams visiem."</string>
|
||||||
<string name="pref_keyboard_opacity">Pielāgot tastatūras fona necaurredzamību</string>
|
<string name="settings_activity_label">Unexpected Keyboard iestatījumi</string>
|
||||||
<string name="pref_key_opacity">Pielāgot taustiņu necaurredzamību</string>
|
<string name="pref_portrait">Stateniski</string>
|
||||||
<string name="pref_key_activated_opacity">Pielāgot piespiesta taustiņa necaurredzamību</string>
|
<string name="pref_landscape">Guleniski</string>
|
||||||
<string name="pref_layout_e_system">Ierīces iestatījumi</string>
|
<string name="pref_category_layout">Izkārtojums</string>
|
||||||
<string name="pref_layout_e_custom">Pielāgots izkārtojums</string>
|
<string name="pref_label_brightness">Pielāgot iezīmju spilgtumu</string>
|
||||||
<string name="pref_layouts_add">Pievienot aizstājējizkārtojumu</string>
|
<string name="pref_keyboard_opacity">Pielāgot tastatūras fona necaurredzamību</string>
|
||||||
<string name="pref_layouts_item">Izkārtojums %1$d: %2$s</string>
|
<string name="pref_key_opacity">Pielāgot taustiņu necaurredzamību</string>
|
||||||
<string name="pref_layouts_remove_custom">Noņemt izkārtojumu</string>
|
<string name="pref_key_activated_opacity">Pielāgot piespiesta taustiņa necaurredzamību</string>
|
||||||
<string name="pref_custom_layout_title">Pielāgots izkārtojums</string>
|
<string name="pref_layout_e_system">Ierīces iestatījumi</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Pielāgots izkārtojums</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Pievienot aizstājējizkārtojumu</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Izkārtojums %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Rādīt ciparnīcu</string>
|
<string name="pref_layouts_remove_custom">Noņemt izkārtojumu</string>
|
||||||
<string name="pref_show_numpad_never">Nekad</string>
|
<string name="pref_custom_layout_title">Pielāgots izkārtojums</string>
|
||||||
<string name="pref_show_numpad_landscape">Tikai guleniskajā skatā</string>
|
<string name="pref_show_numpad_title">Rādīt ciparnīcu</string>
|
||||||
<string name="pref_show_numpad_always">Vienmēr</string>
|
<string name="pref_show_numpad_never">Nekad</string>
|
||||||
<string name="pref_number_row_title">Rādīt ciparu rindu</string>
|
<string name="pref_show_numpad_landscape">Tikai guleniskajā skatā</string>
|
||||||
<string name="pref_number_row_summary">Pievienot ciparu rindu virs tastatūras, kad ciparnīca ir paslēpta</string>
|
<string name="pref_show_numpad_always">Vienmēr</string>
|
||||||
<string name="pref_numpad_layout">Ciparnīcas izkārtojums</string>
|
<string name="pref_number_row_title">Rādīt ciparu rindu</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Vispirms lielākie cipari</string>
|
<string name="pref_number_row_summary">Pievienot ciparu rindu virs tastatūras, kad ciparnīca ir paslēpta</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Vispirms mazākie cipari</string>
|
<string name="pref_numpad_layout">Ciparnīcas izkārtojums</string>
|
||||||
<string name="pref_extra_keys_title">Pievienot tastatūrai taustiņus</string>
|
<string name="pref_numpad_layout_e_high_first">Vispirms lielākie cipari</string>
|
||||||
<string name="pref_extra_keys_custom">Pievienot pielāgotus taustiņus</string>
|
<string name="pref_numpad_layout_e_low_first">Vispirms mazākie cipari</string>
|
||||||
<string name="pref_extra_keys_internal">Atlasīt taustiņus, ko pievienot tastatūrai</string>
|
<string name="pref_extra_keys_title">Pievienot tastatūrai taustiņus</string>
|
||||||
<string name="pref_category_typing">Rakstīšana</string>
|
<string name="pref_extra_keys_custom">Pievienot pielāgotus taustiņus</string>
|
||||||
<string name="pref_swipe_dist_title">Pavilkšanas attālums</string>
|
<string name="pref_extra_keys_internal">Atlasīt taustiņus, ko pievienot tastatūrai</string>
|
||||||
<string name="pref_swipe_dist_summary">Taustiņu stūros esošo rakstzīmju attālums (%s)</string>
|
<string name="pref_category_typing">Rakstīšana</string>
|
||||||
<string name="pref_long_timeout_title">Ilgas piespiešanas noildze</string>
|
<string name="pref_swipe_dist_title">Pavilkšanas attālums</string>
|
||||||
<string name="pref_long_interval_title">Taustiņa atkārtošanās aizture</string>
|
<string name="pref_swipe_dist_summary">Taustiņu stūros esošo rakstzīmju attālums (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Taustiņa atkārtošanās ar ilgu piespiešanu</string>
|
<string name="pref_long_timeout_title">Ilgas piespiešanas noildze</string>
|
||||||
<string name="pref_lock_double_tap_title">Divkāršs piesitiens burtslēgam</string>
|
<string name="pref_long_interval_title">Taustiņa atkārtošanās aizture</string>
|
||||||
<string name="pref_lock_double_tap_summary">Tā vietā, lai ilstoši piespiestu pārveidotāju</string>
|
<string name="pref_keyrepeat_enabled">Taustiņa atkārtošanās ar ilgu piespiešanu</string>
|
||||||
<string name="pref_category_behavior">Uzvedība</string>
|
<string name="pref_lock_double_tap_title">Divkāršs piesitiens burtslēgam</string>
|
||||||
<string name="pref_autocapitalisation_title">Automātiski lielie burti</string>
|
<string name="pref_lock_double_tap_summary">Tā vietā, lai ilstoši piespiestu pārveidotāju</string>
|
||||||
<string name="pref_autocapitalisation_summary">Piespiest Shift teikuma sākumā</string>
|
<string name="pref_category_behavior">Uzvedība</string>
|
||||||
<string name="pref_switch_input_immediate_title">Pārslēgties uz pēdējo izmantoto tastatūru</string>
|
<string name="pref_autocapitalisation_title">Automātiski lielie burti</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Tastatūras pārslēgšanas taustiņa uzvedība</string>
|
<string name="pref_autocapitalisation_summary">Piespiest Shift teikuma sākumā</string>
|
||||||
<string name="pref_vibrate_custom">Pielāgota trīcēšana</string>
|
<string name="pref_switch_input_immediate_title">Pārslēgties uz pēdējo izmantoto tastatūru</string>
|
||||||
<string name="pref_vibrate_duration_title">Trīcēšanas stiprums</string>
|
<string name="pref_switch_input_immediate_summary">Tastatūras pārslēgšanas taustiņa uzvedība</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Piespraust ievadīšanas izkārtojumu</string>
|
<string name="pref_vibrate_custom">Pielāgota trīcēšana</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Kad ievada skaitļus, datumus un tālruņa numurus</string>
|
<string name="pref_vibrate_duration_title">Trīcēšanas stiprums</string>
|
||||||
<string name="pref_category_style">Izskata pielāgojumi</string>
|
<string name="pref_pin_entry_enabled_title">Piespraust ievadīšanas izkārtojumu</string>
|
||||||
<string name="pref_margin_bottom_title">Apakšējā apmale</string>
|
<string name="pref_pin_entry_enabled_summary">Kad ievada skaitļus, datumus un tālruņa numurus</string>
|
||||||
<string name="pref_keyboard_height_title">Tastatūras augstums</string>
|
<string name="pref_category_style">Izskata pielāgojumi</string>
|
||||||
<string name="pref_horizontal_margin_title">Līmeniskā apmale</string>
|
<string name="pref_margin_bottom_title">Apakšējā apmale</string>
|
||||||
<string name="pref_character_size_title">Iezīmes izmērs</string>
|
<string name="pref_keyboard_height_title">Tastatūras augstums</string>
|
||||||
<string name="pref_character_size_summary">Tastatūrā attēloto rakstzīmju izmērs (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Līmeniskā apmale</string>
|
||||||
<string name="pref_theme">Izskats</string>
|
<string name="pref_character_size_title">Iezīmes izmērs</string>
|
||||||
<string name="pref_theme_e_system">Ierīces iestatījumi</string>
|
<string name="pref_character_size_summary">Tastatūrā attēloto rakstzīmju izmērs (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Tumšs</string>
|
<string name="pref_theme">Izskats</string>
|
||||||
<string name="pref_theme_e_light">Gaišs</string>
|
<string name="pref_theme_e_system">Ierīces iestatījumi</string>
|
||||||
<string name="pref_theme_e_black">Melns</string>
|
<string name="pref_theme_e_dark">Tumšs</string>
|
||||||
<string name="pref_theme_e_altblack">Citādi melns</string>
|
<string name="pref_theme_e_light">Gaišs</string>
|
||||||
<string name="pref_theme_e_white">Balts</string>
|
<string name="pref_theme_e_black">Melns</string>
|
||||||
<string name="pref_theme_e_epaper">ePapīrs</string>
|
<string name="pref_theme_e_altblack">Citādi melns</string>
|
||||||
<string name="pref_theme_e_desert">Tuksnesis</string>
|
<string name="pref_theme_e_white">Balts</string>
|
||||||
<string name="pref_theme_e_jungle">Džungļi</string>
|
<string name="pref_theme_e_epaper">ePapīrs</string>
|
||||||
<string name="pref_theme_e_monet">Monē (sistēmas)</string>
|
<string name="pref_theme_e_desert">Tuksnesis</string>
|
||||||
<string name="pref_theme_e_monetlight">Monē (gaišs)</string>
|
<string name="pref_theme_e_jungle">Džungļi</string>
|
||||||
<string name="pref_theme_e_monetdark">Monē (tumšs)</string>
|
<string name="pref_theme_e_monet">Monē (sistēmas)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monē (gaišs)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Ļoti tuvs</string>
|
<string name="pref_theme_e_monetdark">Monē (tumšs)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Tuvs</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Vidējs</string>
|
<string name="pref_swipe_dist_e_very_short">Ļoti tuvs</string>
|
||||||
<string name="pref_swipe_dist_e_far">Tāls</string>
|
<string name="pref_swipe_dist_e_short">Tuvs</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Ļoti tāls</string>
|
<string name="pref_swipe_dist_e_default">Vidējs</string>
|
||||||
<string name="pref_key_horizontal_space">Līmeniskais attālums starp taustiņiem</string>
|
<string name="pref_swipe_dist_e_far">Tāls</string>
|
||||||
<string name="pref_key_vertical_space">Stateniskais attālums starp taustiņiem</string>
|
<string name="pref_swipe_dist_e_very_far">Ļoti tāls</string>
|
||||||
<string name="pref_border_config_title">Pielāgot apmales</string>
|
<string name="pref_key_horizontal_space">Līmeniskais attālums starp taustiņiem</string>
|
||||||
<string name="pref_border_width_title">Apmales platums</string>
|
<string name="pref_key_vertical_space">Stateniskais attālums starp taustiņiem</string>
|
||||||
<string name="pref_corners_radius_title">Stūru rādiuss</string>
|
<string name="pref_border_config_title">Pielāgot apmales</string>
|
||||||
<string name="pref_circle_sensitivity_title">Apļveida kustības jutīgums</string>
|
<string name="pref_border_width_title">Apmales platums</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Augsts</string>
|
<string name="pref_corners_radius_title">Stūru rādiuss</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Vidējs</string>
|
<string name="pref_circle_sensitivity_title">Apļveida kustības jutīgums</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Zems</string>
|
<string name="pref_circle_sensitivity_e_high">Augsts</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Atspējots</string>
|
<string name="pref_circle_sensitivity_e_medium">Vidējs</string>
|
||||||
<string name="key_action_next">Nākamais</string>
|
<string name="pref_circle_sensitivity_e_low">Zems</string>
|
||||||
<string name="key_action_done">Darīts</string>
|
<string name="pref_circle_sensitivity_e_disabled">Atspējots</string>
|
||||||
<string name="key_action_go">Aiziet</string>
|
<string name="key_action_next">Nākamais</string>
|
||||||
<string name="key_action_prev">Iepriekšējais</string>
|
<string name="key_action_done">Darīts</string>
|
||||||
<string name="key_action_search">Meklēt</string>
|
<string name="key_action_go">Aiziet</string>
|
||||||
<string name="key_action_send">Sūtīt</string>
|
<string name="key_action_prev">Iepriekšējais</string>
|
||||||
<string name="launcher_button_imesettings">Iespējot tastatūru</string>
|
<string name="key_action_search">Meklēt</string>
|
||||||
<string name="launcher_button_imepicker">Izvēlēties tastatūru</string>
|
<string name="key_action_send">Sūtīt</string>
|
||||||
<string name="launcher_description">Šī lietotne ir virtuālā tastatūra. Ar zemāk esošo pogu var atvērt sistēmas iestatījumus un iespējot Unexpected Keyboard.</string>
|
<string name="launcher_button_imesettings">Iespējot tastatūru</string>
|
||||||
<string name="launcher_sourcecode">Šī ir bezmaksas un atvērtā pirmkoda lietotne. GitHub var atrast pirmkodu un ziņot par nepilnībām.</string>
|
<string name="launcher_button_imepicker">Izvēlēties tastatūru</string>
|
||||||
<string name="launcher_tryhere">Pēc iespējošanas šeit var izmēģināt tastatūru:</string>
|
<string name="launcher_description">Šī lietotne ir virtuālā tastatūra.
|
||||||
<string name="launcher_tryhere_hint">Izmēģināt šeit</string>
|
Ar zemāk esošo pogu var atvērt sistēmas iestatījumus un iespējot Unexpected Keyboard.</string>
|
||||||
<string name="key_descr_capslock">Burtslēgs</string>
|
<string name="launcher_sourcecode">Šī ir bezmaksas un atvērtā pirmkoda lietotne.
|
||||||
<string name="key_descr_compose">Izveidot</string>
|
GitHub var atrast pirmkodu un ziņot par nepilnībām.</string>
|
||||||
<string name="key_descr_switch_greekmath">Grieķu un matemātikas rakstzīmes</string>
|
<string name="launcher_tryhere">Pēc iespējošanas šeit var izmēģināt tastatūru:</string>
|
||||||
<string name="key_descr_change_method">Pārslēgt tastatūru</string>
|
<string name="launcher_tryhere_hint">Izmēģināt šeit</string>
|
||||||
<string name="key_descr_voice_typing">Rakstīšana ar balsi</string>
|
<string name="key_descr_capslock">Burtslēgs</string>
|
||||||
<string name="key_descr_copy">Ievietot starpliktuvē</string>
|
<string name="key_descr_compose">Izveidot</string>
|
||||||
<string name="key_descr_paste">Ielīmēt</string>
|
<string name="key_descr_switch_greekmath">Grieķu un matemātikas rakstzīmes</string>
|
||||||
<string name="key_descr_cut">Izgriezt</string>
|
<string name="key_descr_change_method">Pārslēgt tastatūru</string>
|
||||||
<string name="key_descr_selectAll">Iezīmēt visu</string>
|
<string name="key_descr_voice_typing">Rakstīšana ar balsi</string>
|
||||||
<string name="key_descr_shareText">Kopīgot tekstu</string>
|
<string name="key_descr_copy">Ievietot starpliktuvē</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Ielīmēt kā vienkāršu tekstu</string>
|
<string name="key_descr_paste">Ielīmēt</string>
|
||||||
<string name="key_descr_undo">Atsaukt</string>
|
<string name="key_descr_cut">Izgriezt</string>
|
||||||
<string name="key_descr_redo">Atatsaukt</string>
|
<string name="key_descr_selectAll">Iezīmēt visu</string>
|
||||||
<string name="key_descr_ª">Kārtas rādītājs</string>
|
<string name="key_descr_shareText">Kopīgot tekstu</string>
|
||||||
<string name="key_descr_º">Kārtas rādītājs</string>
|
<string name="key_descr_pasteAsPlainText">Ielīmēt kā vienkāršu tekstu</string>
|
||||||
<string name="key_descr_superscript">Augšraksts</string>
|
<string name="key_descr_undo">Atsaukt</string>
|
||||||
<string name="key_descr_subscript">Apakšraksts</string>
|
<string name="key_descr_redo">Atatsaukt</string>
|
||||||
<string name="key_descr_page_up">Augšupšķirt</string>
|
<string name="key_descr_ª">Kārtas rādītājs</string>
|
||||||
<string name="key_descr_page_down">Lejupšķirt</string>
|
<string name="key_descr_º">Kārtas rādītājs</string>
|
||||||
<string name="key_descr_home">Sākums</string>
|
<string name="key_descr_superscript">Augšraksts</string>
|
||||||
<string name="key_descr_end">Beigas</string>
|
<string name="key_descr_subscript">Apakšraksts</string>
|
||||||
<string name="key_descr_clipboard">Starpliktuves pārvaldnieks</string>
|
<string name="key_descr_page_up">Augšupšķirt</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_page_down">Lejupšķirt</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_home">Sākums</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<string name="key_descr_end">Beigas</string>
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<string name="key_descr_clipboard">Starpliktuves pārvaldnieks</string>
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<string name="clipboard_history_heading">Nesen starpliktuvē ievietots teksts</string>
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<string name="clipboard_pin_heading">Piesprausts</string>
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_remove_confirm">Noņemt šo starpliktuves vienumu?</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_remove_confirmed">Jā</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_history_heading">Nesen starpliktuvē ievietots teksts</string>
|
||||||
|
<string name="clipboard_pin_heading">Piesprausts</string>
|
||||||
|
<string name="clipboard_remove_confirm">Noņemt šo starpliktuves vienumu?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Jā</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">Lekka i dbająca o prywatność klawiatura wirtualna dla Androida.</string>
|
<string name="short_description">Lekka i dbająca o prywatność klawiatura wirtualna dla Androida.</string>
|
||||||
<string name="store_description">Główną cechą tej klawiatury jest możliwość wprowadzania więcej znaków poprzez przesuwanie po klawiszach do ich rogów.\n\nTa aplikacja została pierwotnie zaprojektowana z myślą o programistach używających Termuxa.\nObecnie nadaje się doskonale do codziennego użytku.\n\nAplikacja nie zawiera reklam, nie żąda dostępu do internetu, a jej kod źródłowy jest dostępny publicznie.</string>
|
<string name="store_description">"Główną cechą tej klawiatury jest możliwość wprowadzania więcej znaków poprzez przesuwanie po klawiszach do ich rogów.
|
||||||
<string name="settings_activity_label">Ustawienia Unexpected Keyboard</string>
|
|
||||||
<string name="pref_portrait">W widoku pionowym</string>
|
Ta aplikacja została pierwotnie zaprojektowana z myślą o programistach używających Termuxa.
|
||||||
<string name="pref_landscape">W widoku poziomym</string>
|
Obecnie nadaje się doskonale do codziennego użytku.
|
||||||
<string name="pref_category_layout">Układ</string>
|
|
||||||
<string name="pref_label_brightness">Dostosuj jasność znaków</string>
|
Aplikacja nie zawiera reklam, nie żąda dostępu do internetu, a jej kod źródłowy jest dostępny publicznie."</string>
|
||||||
<string name="pref_keyboard_opacity">Nieprzezroczystość tła klawiatury</string>
|
<string name="settings_activity_label">Ustawienia Unexpected Keyboard</string>
|
||||||
<string name="pref_key_opacity">Nieprzezroczystość klawisza</string>
|
<string name="pref_portrait">W widoku pionowym</string>
|
||||||
<string name="pref_key_activated_opacity">Nieprzezroczystość naciśniętego klawisza</string>
|
<string name="pref_landscape">W widoku poziomym</string>
|
||||||
<string name="pref_layout_e_system">Systemowy</string>
|
<string name="pref_category_layout">Układ</string>
|
||||||
<string name="pref_layout_e_custom">Własny układ</string>
|
<string name="pref_label_brightness">Dostosuj jasność znaków</string>
|
||||||
<string name="pref_layouts_add">Dodaj dodatkowy układ</string>
|
<string name="pref_keyboard_opacity">Nieprzezroczystość tła klawiatury</string>
|
||||||
<string name="pref_layouts_item">Układ %1$d: %2$s</string>
|
<string name="pref_key_opacity">Nieprzezroczystość klawisza</string>
|
||||||
<string name="pref_layouts_remove_custom">Usuń układ</string>
|
<string name="pref_key_activated_opacity">Nieprzezroczystość naciśniętego klawisza</string>
|
||||||
<string name="pref_custom_layout_title">Własny układ</string>
|
<string name="pref_layout_e_system">Systemowy</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Własny układ</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Dodaj dodatkowy układ</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Układ %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Pokaż klawiaturę numeryczną</string>
|
<string name="pref_layouts_remove_custom">Usuń układ</string>
|
||||||
<string name="pref_show_numpad_never">Nigdy</string>
|
<string name="pref_custom_layout_title">Własny układ</string>
|
||||||
<string name="pref_show_numpad_landscape">Tylko w orientacji poziomej</string>
|
<string name="pref_show_numpad_title">Pokaż klawiaturę numeryczną</string>
|
||||||
<string name="pref_show_numpad_always">Zawsze</string>
|
<string name="pref_show_numpad_never">Nigdy</string>
|
||||||
<string name="pref_number_row_title">Pokaż rząd cyfr</string>
|
<string name="pref_show_numpad_landscape">Tylko w orientacji poziomej</string>
|
||||||
<string name="pref_number_row_summary">Dodaj rząd cyfr na górze klawiatury, kiedy klaw. numeryczna jest schowana</string>
|
<string name="pref_show_numpad_always">Zawsze</string>
|
||||||
<string name="pref_numpad_layout">Układ klawiatury numerycznej</string>
|
<string name="pref_number_row_title">Pokaż rząd cyfr</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Od największej cyfry</string>
|
<string name="pref_number_row_summary">Dodaj rząd cyfr na górze klawiatury, kiedy klaw. numeryczna jest schowana</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Od najmniejszej cyfry</string>
|
<string name="pref_numpad_layout">Układ klawiatury numerycznej</string>
|
||||||
<string name="pref_extra_keys_title">Dodaj klawisze do klawiatury</string>
|
<string name="pref_numpad_layout_e_high_first">Od największej cyfry</string>
|
||||||
<string name="pref_extra_keys_custom">Dodaj niestandardowe klawisze</string>
|
<string name="pref_numpad_layout_e_low_first">Od najmniejszej cyfry</string>
|
||||||
<string name="pref_extra_keys_internal">Wybierz klawisze, które chcesz dodać do klawiatury</string>
|
<string name="pref_extra_keys_title">Dodaj klawisze do klawiatury</string>
|
||||||
<string name="pref_category_typing">Pisanie</string>
|
<string name="pref_extra_keys_custom">Dodaj niestandardowe klawisze</string>
|
||||||
<string name="pref_swipe_dist_title">Odległość przesuwania</string>
|
<string name="pref_extra_keys_internal">Wybierz klawisze, które chcesz dodać do klawiatury</string>
|
||||||
<string name="pref_swipe_dist_summary">Odległość znaków od rogów klawiszy (%s)</string>
|
<string name="pref_category_typing">Pisanie</string>
|
||||||
<string name="pref_long_timeout_title">Opóźnienie przytrzymania klawisza</string>
|
<string name="pref_swipe_dist_title">Odległość przesuwania</string>
|
||||||
<string name="pref_long_interval_title">Czas pomiędzy powtórzeniem klawisza</string>
|
<string name="pref_swipe_dist_summary">Odległość znaków od rogów klawiszy (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Powtarzanie klawisza po przytrzymaniu</string>
|
<string name="pref_long_timeout_title">Opóźnienie przytrzymania klawisza</string>
|
||||||
<string name="pref_lock_double_tap_title">Naciśnij Shift podwójnie, aby włączyć caps lock</string>
|
<string name="pref_long_interval_title">Czas pomiędzy powtórzeniem klawisza</string>
|
||||||
<string name="pref_lock_double_tap_summary">Możesz zablokować modyfikator poprzez jego długie naciśnięcie</string>
|
<string name="pref_keyrepeat_enabled">Powtarzanie klawisza po przytrzymaniu</string>
|
||||||
<string name="pref_category_behavior">Zachowanie</string>
|
<string name="pref_lock_double_tap_title">Naciśnij Shift podwójnie, aby włączyć caps lock</string>
|
||||||
<string name="pref_autocapitalisation_title">Automatyczne wielkie litery</string>
|
<string name="pref_lock_double_tap_summary">Możesz zablokować modyfikator poprzez jego długie naciśnięcie</string>
|
||||||
<string name="pref_autocapitalisation_summary">Naciśnij Shift na początku zdania</string>
|
<string name="pref_category_behavior">Zachowanie</string>
|
||||||
<string name="pref_switch_input_immediate_title">Przełącz na ostatnio używaną klawiaturę</string>
|
<string name="pref_autocapitalisation_title">Automatyczne wielkie litery</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Działanie klawisza przełączającego klawiaturę</string>
|
<string name="pref_autocapitalisation_summary">Naciśnij Shift na początku zdania</string>
|
||||||
<string name="pref_vibrate_custom">Własna wibracja</string>
|
<string name="pref_switch_input_immediate_title">Przełącz na ostatnio używaną klawiaturę</string>
|
||||||
<string name="pref_vibrate_duration_title">Intensywność wibracji</string>
|
<string name="pref_switch_input_immediate_summary">Działanie klawisza przełączającego klawiaturę</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Układ klawiatury PIN</string>
|
<string name="pref_vibrate_custom">Własna wibracja</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Podczas wpisywania liczb, dat i numerów telefonu</string>
|
<string name="pref_vibrate_duration_title">Intensywność wibracji</string>
|
||||||
<string name="pref_category_style">Styl</string>
|
<string name="pref_pin_entry_enabled_title">Układ klawiatury PIN</string>
|
||||||
<string name="pref_margin_bottom_title">Margines dolny</string>
|
<string name="pref_pin_entry_enabled_summary">Podczas wpisywania liczb, dat i numerów telefonu</string>
|
||||||
<string name="pref_keyboard_height_title">Wysokość klawiatury</string>
|
<string name="pref_category_style">Styl</string>
|
||||||
<string name="pref_horizontal_margin_title">Margines poziomy</string>
|
<string name="pref_margin_bottom_title">Margines dolny</string>
|
||||||
<string name="pref_character_size_title">Wielkość znaku</string>
|
<string name="pref_keyboard_height_title">Wysokość klawiatury</string>
|
||||||
<string name="pref_character_size_summary">Wielkość znaków widocznych na klawiaturze (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Margines poziomy</string>
|
||||||
<string name="pref_theme">Motyw</string>
|
<string name="pref_character_size_title">Wielkość znaku</string>
|
||||||
<string name="pref_theme_e_system">Systemowy</string>
|
<string name="pref_character_size_summary">Wielkość znaków widocznych na klawiaturze (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Ciemny</string>
|
<string name="pref_theme">Motyw</string>
|
||||||
<string name="pref_theme_e_light">Jasny</string>
|
<string name="pref_theme_e_system">Systemowy</string>
|
||||||
<string name="pref_theme_e_black">Czarny</string>
|
<string name="pref_theme_e_dark">Ciemny</string>
|
||||||
<string name="pref_theme_e_altblack">Alternatywny Czarny</string>
|
<string name="pref_theme_e_light">Jasny</string>
|
||||||
<string name="pref_theme_e_white">Biały</string>
|
<string name="pref_theme_e_black">Czarny</string>
|
||||||
<string name="pref_theme_e_epaper">e-paper</string>
|
<string name="pref_theme_e_altblack">Alternatywny Czarny</string>
|
||||||
<string name="pref_theme_e_desert">Pustynny</string>
|
<string name="pref_theme_e_white">Biały</string>
|
||||||
<string name="pref_theme_e_jungle">Dżunglowy</string>
|
<string name="pref_theme_e_epaper">e-paper</string>
|
||||||
<string name="pref_theme_e_monet">Monet (Systemowy)</string>
|
<string name="pref_theme_e_desert">Pustynny</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Jasny)</string>
|
<string name="pref_theme_e_jungle">Dżunglowy</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Ciemny)</string>
|
<string name="pref_theme_e_monet">Monet (Systemowy)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monet (Jasny)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Bardzo mała</string>
|
<string name="pref_theme_e_monetdark">Monet (Ciemny)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Mała</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normalna</string>
|
<string name="pref_swipe_dist_e_very_short">Bardzo mała</string>
|
||||||
<string name="pref_swipe_dist_e_far">Duża</string>
|
<string name="pref_swipe_dist_e_short">Mała</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Bardzo duża</string>
|
<string name="pref_swipe_dist_e_default">Normalna</string>
|
||||||
<string name="pref_key_horizontal_space">Odległość pomiędzy klawiszami w poziomie</string>
|
<string name="pref_swipe_dist_e_far">Duża</string>
|
||||||
<string name="pref_key_vertical_space">Odległość pomiędzy klawiszami w pionie</string>
|
<string name="pref_swipe_dist_e_very_far">Bardzo duża</string>
|
||||||
<string name="pref_border_config_title">Dostosuj krawędzie</string>
|
<string name="pref_key_horizontal_space">Odległość pomiędzy klawiszami w poziomie</string>
|
||||||
<string name="pref_border_width_title">Grubość krawedzi</string>
|
<string name="pref_key_vertical_space">Odległość pomiędzy klawiszami w pionie</string>
|
||||||
<string name="pref_corners_radius_title">Promień rogów</string>
|
<string name="pref_border_config_title">Dostosuj krawędzie</string>
|
||||||
<string name="pref_circle_sensitivity_title">Czułość gestu koła</string>
|
<string name="pref_border_width_title">Grubość krawedzi</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Wysoka</string>
|
<string name="pref_corners_radius_title">Promień rogów</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Średnia</string>
|
<string name="pref_circle_sensitivity_title">Czułość gestu koła</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Mała</string>
|
<string name="pref_circle_sensitivity_e_high">Wysoka</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Wyłączona</string>
|
<string name="pref_circle_sensitivity_e_medium">Średnia</string>
|
||||||
<string name="key_action_next">Dalej</string>
|
<string name="pref_circle_sensitivity_e_low">Mała</string>
|
||||||
<string name="key_action_done">OK</string>
|
<string name="pref_circle_sensitivity_e_disabled">Wyłączona</string>
|
||||||
<string name="key_action_go">Przejdź</string>
|
<string name="key_action_next">Dalej</string>
|
||||||
<string name="key_action_prev">Wstecz</string>
|
<string name="key_action_done">OK</string>
|
||||||
<string name="key_action_search">Szukaj</string>
|
<string name="key_action_go">Przejdź</string>
|
||||||
<string name="key_action_send">Wyślij</string>
|
<string name="key_action_prev">Wstecz</string>
|
||||||
<string name="launcher_button_imesettings">Włącz klawiaturę</string>
|
<string name="key_action_search">Szukaj</string>
|
||||||
<string name="launcher_button_imepicker">Wybierz klawiaturę</string>
|
<string name="key_action_send">Wyślij</string>
|
||||||
<string name="launcher_description">Ta aplikacja jest klawiaturą ekranową. Naciśnij poniższy przycisk, aby przejść do ustawień systemu i włącz Unexpected-Keyboard.</string>
|
<string name="launcher_button_imesettings">Włącz klawiaturę</string>
|
||||||
<string name="launcher_sourcecode">Jest to darmowa aplikacja o otwartym kodzie źródłowym. Możesz zobaczyć kod źródłowy oraz zgłosić błedy na Githubie.</string>
|
<string name="launcher_button_imepicker">Wybierz klawiaturę</string>
|
||||||
<string name="launcher_tryhere">Po jej włączeniu, możesz wypróbować klawiaturę tutaj:</string>
|
<string name="launcher_description">Ta aplikacja jest klawiaturą ekranową. Naciśnij poniższy przycisk, aby przejść do ustawień systemu i włącz Unexpected-Keyboard.</string>
|
||||||
<string name="launcher_tryhere_hint">Wypróbuj tutaj</string>
|
<string name="launcher_sourcecode">Jest to darmowa aplikacja o otwartym kodzie źródłowym. Możesz zobaczyć kod źródłowy oraz zgłosić błedy na Githubie.</string>
|
||||||
<string name="key_descr_capslock">Caps lock</string>
|
<string name="launcher_tryhere">Po jej włączeniu, możesz wypróbować klawiaturę tutaj:</string>
|
||||||
<string name="key_descr_compose">Komponuj</string>
|
<string name="launcher_tryhere_hint">Wypróbuj tutaj</string>
|
||||||
<string name="key_descr_switch_greekmath">Symbole greckie i matematyczne</string>
|
<string name="key_descr_capslock">Caps lock</string>
|
||||||
<string name="key_descr_change_method">Przełącz klawiaturę</string>
|
<string name="key_descr_compose">Komponuj</string>
|
||||||
<string name="key_descr_voice_typing">Pisanie głosowe</string>
|
<string name="key_descr_switch_greekmath">Symbole greckie i matematyczne</string>
|
||||||
<string name="key_descr_copy">Kopiuj</string>
|
<string name="key_descr_change_method">Przełącz klawiaturę</string>
|
||||||
<string name="key_descr_paste">Wklej</string>
|
<string name="key_descr_voice_typing">Pisanie głosowe</string>
|
||||||
<string name="key_descr_cut">Wytnij</string>
|
<string name="key_descr_copy">Kopiuj</string>
|
||||||
<string name="key_descr_selectAll">Zaznacz wszystko</string>
|
<string name="key_descr_paste">Wklej</string>
|
||||||
<string name="key_descr_shareText">Udostępnij tekst</string>
|
<string name="key_descr_cut">Wytnij</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Wklej sam tekst</string>
|
<string name="key_descr_selectAll">Zaznacz wszystko</string>
|
||||||
<string name="key_descr_undo">Cofnij</string>
|
<string name="key_descr_shareText">Udostępnij tekst</string>
|
||||||
<string name="key_descr_redo">Ponów</string>
|
<string name="key_descr_pasteAsPlainText">Wklej sam tekst</string>
|
||||||
<string name="key_descr_ª">Wskaźnik porządkowy (żeński)</string>
|
<string name="key_descr_undo">Cofnij</string>
|
||||||
<string name="key_descr_º">Wskaźnik porządkowy (męski)</string>
|
<string name="key_descr_redo">Ponów</string>
|
||||||
<string name="key_descr_superscript">Indeks górny</string>
|
<string name="key_descr_ª">Wskaźnik porządkowy (żeński)</string>
|
||||||
<string name="key_descr_subscript">Indeks dolny</string>
|
<string name="key_descr_º">Wskaźnik porządkowy (męski)</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_superscript">Indeks górny</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_subscript">Indeks dolny</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<string name="key_descr_clipboard">Zarządzanie schowkiem</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Zarządzanie schowkiem</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Ostatnio skopiowane elementy</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Przypięte</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Usunąć ten element ze schowka?</string>
|
<string name="clipboard_history_heading">Ostatnio skopiowane elementy</string>
|
||||||
<string name="clipboard_remove_confirmed">Tak</string>
|
<string name="clipboard_pin_heading">Przypięte</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Usunąć ten element ze schowka?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Tak</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Teclado Unexpected</string>
|
<string name="app_name_release">Teclado Unexpected</string>
|
||||||
<string name="app_name_debug">Teclado Unexpected</string>
|
<string name="app_name_debug">Teclado Unexpected</string>
|
||||||
<string name="short_description">Um teclado virtual leve para desenvolvedores.</string>
|
<string name="short_description">Um teclado virtual leve para desenvolvedores.</string>
|
||||||
<string name="store_description">A principal característica é que você pode digitar mais caracteres deslizando as teclas para os cantos.\n\nO app foi criado originalmente para desenvolvedores que usam Termux.\nAgora aperfeiçoado para o uso diário.\n\nEste aplicativo não contém anúncios, não faz nenhuma solicitação de rede e é Open Source.</string>
|
<string name="store_description">"A principal característica é que você pode digitar mais caracteres deslizando as teclas para os cantos.
|
||||||
<string name="settings_activity_label">Configurações</string>
|
|
||||||
<string name="pref_portrait">No modo retrato</string>
|
O app foi criado originalmente para desenvolvedores que usam Termux.
|
||||||
<string name="pref_landscape">No modo paisagem</string>
|
Agora aperfeiçoado para o uso diário.
|
||||||
<string name="pref_category_layout">Layout</string>
|
|
||||||
<string name="pref_label_brightness">Ajustar brilho dos rótulos</string>
|
Este aplicativo não contém anúncios, não faz nenhuma solicitação de rede e é Open Source."</string>
|
||||||
<string name="pref_keyboard_opacity">Ajustar opacidade do fundo do teclado</string>
|
<string name="settings_activity_label">Configurações</string>
|
||||||
<string name="pref_key_opacity">Ajustar opacidade das teclas</string>
|
<string name="pref_portrait">No modo retrato</string>
|
||||||
<string name="pref_key_activated_opacity">Ajustar opacidade das teclas pressionadas</string>
|
<string name="pref_landscape">No modo paisagem</string>
|
||||||
<string name="pref_layout_e_system">Mesmo do sistema</string>
|
<string name="pref_category_layout">Layout</string>
|
||||||
<string name="pref_layout_e_custom">Layout personalizado</string>
|
<string name="pref_label_brightness">Ajustar brilho dos rótulos</string>
|
||||||
<string name="pref_layouts_add">Adicione um layout alternativo</string>
|
<string name="pref_keyboard_opacity">Ajustar opacidade do fundo do teclado</string>
|
||||||
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
<string name="pref_key_opacity">Ajustar opacidade das teclas</string>
|
||||||
<string name="pref_layouts_remove_custom">Remover layout</string>
|
<string name="pref_key_activated_opacity">Ajustar opacidade das teclas pressionadas</string>
|
||||||
<string name="pref_custom_layout_title">Layout personalizado</string>
|
<string name="pref_layout_e_system">Mesmo do sistema</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Layout personalizado</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Adicione um layout alternativo</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Mostrar Teclado Numérico</string>
|
<string name="pref_layouts_remove_custom">Remover layout</string>
|
||||||
<string name="pref_show_numpad_never">Nunca</string>
|
<string name="pref_custom_layout_title">Layout personalizado</string>
|
||||||
<string name="pref_show_numpad_landscape">Somente no modo paisagem</string>
|
<string name="pref_show_numpad_title">Mostrar Teclado Numérico</string>
|
||||||
<string name="pref_show_numpad_always">Sempre</string>
|
<string name="pref_show_numpad_never">Nunca</string>
|
||||||
<string name="pref_number_row_title">Mostrar fileira de números</string>
|
<string name="pref_show_numpad_landscape">Somente no modo paisagem</string>
|
||||||
<string name="pref_number_row_summary">Adicionar uma linha de números no topo do teclado quando o teclado numérico estiver oculto</string>
|
<string name="pref_show_numpad_always">Sempre</string>
|
||||||
<string name="pref_numpad_layout">Layout do teclado numérico</string>
|
<string name="pref_number_row_title">Mostrar fileira de números</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Dígitos maiores primeiro</string>
|
<string name="pref_number_row_summary">Adicionar uma linha de números no topo do teclado quando o teclado numérico estiver oculto</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Dígitos menores primeiro</string>
|
<string name="pref_numpad_layout">Layout do teclado numérico</string>
|
||||||
<string name="pref_extra_keys_title">Adicionar teclas ao teclado</string>
|
<string name="pref_numpad_layout_e_high_first">Dígitos maiores primeiro</string>
|
||||||
<string name="pref_extra_keys_custom">Adicionar teclas customizadas</string>
|
<string name="pref_numpad_layout_e_low_first">Dígitos menores primeiro</string>
|
||||||
<string name="pref_extra_keys_internal">Selecione teclas para serem adicionadas ao teclado</string>
|
<string name="pref_extra_keys_title">Adicionar teclas ao teclado</string>
|
||||||
<string name="pref_category_typing">Digitação</string>
|
<string name="pref_extra_keys_custom">Adicionar teclas customizadas</string>
|
||||||
<string name="pref_swipe_dist_title">Distância a deslizar</string>
|
<string name="pref_extra_keys_internal">Selecione teclas para serem adicionadas ao teclado</string>
|
||||||
<string name="pref_swipe_dist_summary">Distância até acionar os cantos das teclas (%s)</string>
|
<string name="pref_category_typing">Digitação</string>
|
||||||
<string name="pref_long_timeout_title">Tempo de pressionamento</string>
|
<string name="pref_swipe_dist_title">Distância a deslizar</string>
|
||||||
<string name="pref_long_interval_title">Intervalo de repetição de tecla</string>
|
<string name="pref_swipe_dist_summary">Distância até acionar os cantos das teclas (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Repetir tecla ao pressionar</string>
|
<string name="pref_long_timeout_title">Tempo de pressionamento</string>
|
||||||
<string name="pref_lock_double_tap_title">Tecle duas vezes no shift para travá-lo acionado</string>
|
<string name="pref_long_interval_title">Intervalo de repetição de tecla</string>
|
||||||
<string name="pref_lock_double_tap_summary">Ao invés de apertar e segurar por um tempo</string>
|
<string name="pref_keyrepeat_enabled">Repetir tecla ao pressionar</string>
|
||||||
<string name="pref_category_behavior">Comportamento</string>
|
<string name="pref_lock_double_tap_title">Tecle duas vezes no shift para travá-lo acionado</string>
|
||||||
<string name="pref_autocapitalisation_title">Capitalização automática</string>
|
<string name="pref_lock_double_tap_summary">Ao invés de apertar e segurar por um tempo</string>
|
||||||
<string name="pref_autocapitalisation_summary">Aciona o shift no início de cada frase</string>
|
<string name="pref_category_behavior">Comportamento</string>
|
||||||
<string name="pref_switch_input_immediate_title">Alternar para o último teclado usado</string>
|
<string name="pref_autocapitalisation_title">Capitalização automática</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Comportamento da tecla de troca de teclado</string>
|
<string name="pref_autocapitalisation_summary">Aciona o shift no início de cada frase</string>
|
||||||
<string name="pref_vibrate_custom">Vibração personalizada</string>
|
<string name="pref_switch_input_immediate_title">Alternar para o último teclado usado</string>
|
||||||
<string name="pref_vibrate_duration_title">Intensidade da vibração</string>
|
<string name="pref_switch_input_immediate_summary">Comportamento da tecla de troca de teclado</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Layout PIN</string>
|
<string name="pref_vibrate_custom">Vibração personalizada</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Quando digitando números, datas ou números de telefone</string>
|
<string name="pref_vibrate_duration_title">Intensidade da vibração</string>
|
||||||
<string name="pref_category_style">Estilo</string>
|
<string name="pref_pin_entry_enabled_title">Layout PIN</string>
|
||||||
<string name="pref_margin_bottom_title">Margem inferior</string>
|
<string name="pref_pin_entry_enabled_summary">Quando digitando números, datas ou números de telefone</string>
|
||||||
<string name="pref_keyboard_height_title">Altura do teclado</string>
|
<string name="pref_category_style">Estilo</string>
|
||||||
<string name="pref_horizontal_margin_title">Margem horizontal</string>
|
<string name="pref_margin_bottom_title">Margem inferior</string>
|
||||||
<string name="pref_character_size_title">Tamanho dos indicadores</string>
|
<string name="pref_keyboard_height_title">Altura do teclado</string>
|
||||||
<string name="pref_character_size_summary">Tamanho dos caracteres visíveis no teclado (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Margem horizontal</string>
|
||||||
<string name="pref_theme">Tema</string>
|
<string name="pref_character_size_title">Tamanho dos indicadores</string>
|
||||||
<string name="pref_theme_e_system">Mesmo do sistema</string>
|
<string name="pref_character_size_summary">Tamanho dos caracteres visíveis no teclado (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Escuro</string>
|
<string name="pref_theme">Tema</string>
|
||||||
<string name="pref_theme_e_light">Claro</string>
|
<string name="pref_theme_e_system">Mesmo do sistema</string>
|
||||||
<string name="pref_theme_e_black">Preto</string>
|
<string name="pref_theme_e_dark">Escuro</string>
|
||||||
<string name="pref_theme_e_altblack">Preto Alternativo</string>
|
<string name="pref_theme_e_light">Claro</string>
|
||||||
<string name="pref_theme_e_white">Branco</string>
|
<string name="pref_theme_e_black">Preto</string>
|
||||||
<string name="pref_theme_e_epaper">Papel Eletrônico</string>
|
<string name="pref_theme_e_altblack">Preto Alternativo</string>
|
||||||
<string name="pref_theme_e_desert">Deserto</string>
|
<string name="pref_theme_e_white">Branco</string>
|
||||||
<string name="pref_theme_e_jungle">Selva</string>
|
<string name="pref_theme_e_epaper">Papel Eletrônico</string>
|
||||||
<string name="pref_theme_e_monet">Monet (Sistema)</string>
|
<string name="pref_theme_e_desert">Deserto</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Claro)</string>
|
<string name="pref_theme_e_jungle">Selva</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Escuro)</string>
|
<string name="pref_theme_e_monet">Monet (Sistema)</string>
|
||||||
<string name="pref_theme_e_rosepine">Rosé Pine</string>
|
<string name="pref_theme_e_monetlight">Monet (Claro)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Bem curta</string>
|
<string name="pref_theme_e_monetdark">Monet (Escuro)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Curta</string>
|
<string name="pref_theme_e_rosepine">Rosé Pine</string>
|
||||||
<string name="pref_swipe_dist_e_default">Normal</string>
|
<string name="pref_swipe_dist_e_very_short">Bem curta</string>
|
||||||
<string name="pref_swipe_dist_e_far">Longa</string>
|
<string name="pref_swipe_dist_e_short">Curta</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Bem longa</string>
|
<string name="pref_swipe_dist_e_default">Normal</string>
|
||||||
<string name="pref_key_horizontal_space">Distância horizontal entre teclas</string>
|
<string name="pref_swipe_dist_e_far">Longa</string>
|
||||||
<string name="pref_key_vertical_space">Distância vertical entre teclas</string>
|
<string name="pref_swipe_dist_e_very_far">Bem longa</string>
|
||||||
<string name="pref_border_config_title">Personalizar bordas</string>
|
<string name="pref_key_horizontal_space">Distância horizontal entre teclas</string>
|
||||||
<string name="pref_border_width_title">Largura de borda</string>
|
<string name="pref_key_vertical_space">Distância vertical entre teclas</string>
|
||||||
<string name="pref_corners_radius_title">Arredondamento de cantos</string>
|
<string name="pref_border_config_title">Personalizar bordas</string>
|
||||||
<string name="pref_circle_sensitivity_title">Sensibilidade do gesto circular</string>
|
<string name="pref_border_width_title">Largura de borda</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Alta</string>
|
<string name="pref_corners_radius_title">Arredondamento de cantos</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Média</string>
|
<string name="pref_circle_sensitivity_title">Sensibilidade do gesto circular</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Baixa</string>
|
<string name="pref_circle_sensitivity_e_high">Alta</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Desativada</string>
|
<string name="pref_circle_sensitivity_e_medium">Média</string>
|
||||||
<string name="key_action_next">Próximo</string>
|
<string name="pref_circle_sensitivity_e_low">Baixa</string>
|
||||||
<string name="key_action_done">Pronto</string>
|
<string name="pref_circle_sensitivity_e_disabled">Desativada</string>
|
||||||
<string name="key_action_go">Ir</string>
|
<string name="key_action_next">Próximo</string>
|
||||||
<string name="key_action_prev">Anterior</string>
|
<string name="key_action_done">Pronto</string>
|
||||||
<string name="key_action_search">Buscar</string>
|
<string name="key_action_go">Ir</string>
|
||||||
<string name="key_action_send">Enviar</string>
|
<string name="key_action_prev">Anterior</string>
|
||||||
<string name="launcher_button_imesettings">Ativar teclado</string>
|
<string name="key_action_search">Buscar</string>
|
||||||
<string name="launcher_button_imepicker">Selecionar teclado</string>
|
<string name="key_action_send">Enviar</string>
|
||||||
<string name="launcher_description">Este app é um teclado virtual. Vá para as configurações do sistema clicando no botão abaixo e ative o Teclado Unexpected.</string>
|
<string name="launcher_button_imesettings">Ativar teclado</string>
|
||||||
<string name="launcher_sourcecode">Este app é gratuito é de código aberto. Você pode consultar o código ou fazer sugestões em Github.</string>
|
<string name="launcher_button_imepicker">Selecionar teclado</string>
|
||||||
<string name="launcher_tryhere">Após ativar, experimente aqui:</string>
|
<string name="launcher_description">Este app é um teclado virtual. Vá para as configurações do sistema clicando no botão abaixo e ative o Teclado Unexpected.</string>
|
||||||
<string name="launcher_tryhere_hint">Experimente aqui</string>
|
<string name="launcher_sourcecode">Este app é gratuito é de código aberto. Você pode consultar o código ou fazer sugestões em Github.</string>
|
||||||
<string name="key_descr_capslock">Caps lock</string>
|
<string name="launcher_tryhere">Após ativar, experimente aqui:</string>
|
||||||
<string name="key_descr_compose">Compor</string>
|
<string name="launcher_tryhere_hint">Experimente aqui</string>
|
||||||
<string name="key_descr_switch_greekmath">Grego e símbolos matemáticos</string>
|
<string name="key_descr_capslock">Caps lock</string>
|
||||||
<string name="key_descr_change_method">Trocar de teclado</string>
|
<string name="key_descr_compose">Compor</string>
|
||||||
<string name="key_descr_voice_typing">Digitação por voz</string>
|
<string name="key_descr_switch_greekmath">Grego e símbolos matemáticos</string>
|
||||||
<string name="key_descr_copy">Copiar</string>
|
<string name="key_descr_change_method">Trocar de teclado</string>
|
||||||
<string name="key_descr_paste">Colar</string>
|
<string name="key_descr_voice_typing">Digitação por voz</string>
|
||||||
<string name="key_descr_cut">Recortar</string>
|
<string name="key_descr_copy">Copiar</string>
|
||||||
<string name="key_descr_selectAll">Selecionar tudo</string>
|
<string name="key_descr_paste">Colar</string>
|
||||||
<string name="key_descr_shareText">Compartilhar texto</string>
|
<string name="key_descr_cut">Recortar</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Colar texto não formatado</string>
|
<string name="key_descr_selectAll">Selecionar tudo</string>
|
||||||
<string name="key_descr_undo">Desfazer</string>
|
<string name="key_descr_shareText">Compartilhar texto</string>
|
||||||
<string name="key_descr_redo">Refazer</string>
|
<string name="key_descr_pasteAsPlainText">Colar texto não formatado</string>
|
||||||
<string name="key_descr_ª">Indicador Ordinal</string>
|
<string name="key_descr_undo">Desfazer</string>
|
||||||
<string name="key_descr_º">Indicador Ordinal</string>
|
<string name="key_descr_redo">Refazer</string>
|
||||||
<string name="key_descr_superscript">Sobrescrito</string>
|
<string name="key_descr_ª">Indicador Ordinal</string>
|
||||||
<string name="key_descr_subscript">Subscrito</string>
|
<string name="key_descr_º">Indicador Ordinal</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_superscript">Sobrescrito</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_subscript">Subscrito</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<string name="key_descr_clipboard">Área de transferência</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<string name="key_descr_combining">Combinação de diacríticos</string>
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Área de transferência</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<string name="key_descr_combining">Combinação de diacríticos</string>
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Textos recém copiados</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Fixados</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Remover esta cópia?</string>
|
<string name="clipboard_history_heading">Textos recém copiados</string>
|
||||||
<string name="clipboard_remove_confirmed">Sim</string>
|
<string name="clipboard_pin_heading">Fixados</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Remover esta cópia?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Sim</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Tastatură Unexpected (depanare)</string>
|
<string name="app_name_debug">Tastatură Unexpected (depanare)</string>
|
||||||
<string name="short_description">Tastatură virtuală pentru Android, ușoară și respectuoasă cu viața privată.</string>
|
<string name="short_description">Tastatură virtuală pentru Android, ușoară și respectuoasă cu viața privată.</string>
|
||||||
<string name="store_description">Funcționalitatea principală este accesul rapid la o mulțime de caractere ASCII prin glisarea către colțurile tastelor.\n\nAceastă aplicație a fost concepută inițial pentru programatori care folosec Termux.\nEste perfectă pentru uzul cotidian.\n\nAceastă aplicație nu conține publicitate, nu folosește rețeaua deloc și e Open Source.</string>
|
<string name="store_description">"Funcționalitatea principală este accesul rapid la o mulțime de caractere ASCII prin glisarea către colțurile tastelor.
|
||||||
<string name="settings_activity_label">Setări Tastatură Unexpected</string>
|
|
||||||
<string name="pref_portrait">În mod portret</string>
|
Această aplicație a fost concepută inițial pentru programatori care folosec Termux.
|
||||||
<string name="pref_landscape">În mod panoramă</string>
|
Este perfectă pentru uzul cotidian.
|
||||||
<string name="pref_category_layout">Aspect</string>
|
|
||||||
<string name="pref_label_brightness">Modifică luminozitatea denumirii</string>
|
Această aplicație nu conține publicitate, nu folosește rețeaua deloc și e Open Source."</string>
|
||||||
<string name="pref_keyboard_opacity">Modifică opacitatea fundalului tastaturii</string>
|
<string name="settings_activity_label">Setări Tastatură Unexpected</string>
|
||||||
<string name="pref_key_opacity">Modifică opacitatea tastelor</string>
|
<string name="pref_portrait">În mod portret</string>
|
||||||
<string name="pref_key_activated_opacity">Modifică opacitatea tastei apăsate</string>
|
<string name="pref_landscape">În mod panoramă</string>
|
||||||
<string name="pref_layout_e_system">Setări de Sistem</string>
|
<string name="pref_category_layout">Aspect</string>
|
||||||
<string name="pref_layout_e_custom">Aranjament personalizat</string>
|
<string name="pref_label_brightness">Modifică luminozitatea denumirii</string>
|
||||||
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
<string name="pref_keyboard_opacity">Modifică opacitatea fundalului tastaturii</string>
|
||||||
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
<string name="pref_key_opacity">Modifică opacitatea tastelor</string>
|
||||||
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
<string name="pref_key_activated_opacity">Modifică opacitatea tastei apăsate</string>
|
||||||
<string name="pref_custom_layout_title">Aranjament personalizat</string>
|
<string name="pref_layout_e_system">Setări de Sistem</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Aranjament personalizat</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
||||||
<string name="pref_show_numpad_title">Arată NumPad</string>
|
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
||||||
<string name="pref_show_numpad_never">Niciodată</string>
|
<string name="pref_custom_layout_title">Aranjament personalizat</string>
|
||||||
<string name="pref_show_numpad_landscape">Doar în mod panoramă</string>
|
<string name="pref_show_numpad_title">Arată NumPad</string>
|
||||||
<string name="pref_show_numpad_always">Întotdeanuna</string>
|
<string name="pref_show_numpad_never">Niciodată</string>
|
||||||
<string name="pref_number_row_title">Arată rândul cu numere</string>
|
<string name="pref_show_numpad_landscape">Doar în mod panoramă</string>
|
||||||
<string name="pref_number_row_summary">Adaugă un rând deasupra tastaturii când numpad-ul este ascuns</string>
|
<string name="pref_show_numpad_always">Întotdeanuna</string>
|
||||||
<string name="pref_numpad_layout">Aspect NumPad</string>
|
<string name="pref_number_row_title">Arată rândul cu numere</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Mai întâi cifrele mari</string>
|
<string name="pref_number_row_summary">Adaugă un rând deasupra tastaturii când numpad-ul este ascuns</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Mai întâi cifrele mici</string>
|
<string name="pref_numpad_layout">Aspect NumPad</string>
|
||||||
<string name="pref_extra_keys_title">Adaugă taste pe tastatură</string>
|
<string name="pref_numpad_layout_e_high_first">Mai întâi cifrele mari</string>
|
||||||
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
<string name="pref_numpad_layout_e_low_first">Mai întâi cifrele mici</string>
|
||||||
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
<string name="pref_extra_keys_title">Adaugă taste pe tastatură</string>
|
||||||
<string name="pref_category_typing">Tipărire</string>
|
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
||||||
<string name="pref_swipe_dist_title">Distanța de glisare</string>
|
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
||||||
<string name="pref_swipe_dist_summary">Distanța dintre caracterele din colțurile tastelor (%s)</string>
|
<string name="pref_category_typing">Tipărire</string>
|
||||||
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
<string name="pref_swipe_dist_title">Distanța de glisare</string>
|
||||||
<string name="pref_long_interval_title">Intervalul de repetare a tastelor</string>
|
<string name="pref_swipe_dist_summary">Distanța dintre caracterele din colțurile tastelor (%s)</string>
|
||||||
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
||||||
<string name="pref_lock_double_tap_title">Apăsare dublă pe Shift activează Caps Lock</string>
|
<string name="pref_long_interval_title">Intervalul de repetare a tastelor</string>
|
||||||
<string name="pref_lock_double_tap_summary">Puteți activa orice modificator, ținându-l apăsat</string>
|
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
||||||
<string name="pref_category_behavior">Comportament</string>
|
<string name="pref_lock_double_tap_title">Apăsare dublă pe Shift activează Caps Lock</string>
|
||||||
<string name="pref_autocapitalisation_title">Scriere automată cu majuscule</string>
|
<string name="pref_lock_double_tap_summary">Puteți activa orice modificator, ținându-l apăsat</string>
|
||||||
<string name="pref_autocapitalisation_summary">Autoapăsare Shift la începutul fiecărei propoziții</string>
|
<string name="pref_category_behavior">Comportament</string>
|
||||||
<string name="pref_switch_input_immediate_title">Schimbă la ultima tastatură folosită</string>
|
<string name="pref_autocapitalisation_title">Scriere automată cu majuscule</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Comportamentul tastei pentru schimbarea tastaturii</string>
|
<string name="pref_autocapitalisation_summary">Autoapăsare Shift la începutul fiecărei propoziții</string>
|
||||||
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
<string name="pref_switch_input_immediate_title">Schimbă la ultima tastatură folosită</string>
|
||||||
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
<string name="pref_switch_input_immediate_summary">Comportamentul tastei pentru schimbarea tastaturii</string>
|
||||||
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
||||||
<string name="pref_category_style">Stil</string>
|
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
||||||
<string name="pref_margin_bottom_title">Marginea de jos</string>
|
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
||||||
<string name="pref_keyboard_height_title">Înălțimea tastaturii</string>
|
<string name="pref_category_style">Stil</string>
|
||||||
<string name="pref_horizontal_margin_title">Marginea orizontală</string>
|
<string name="pref_margin_bottom_title">Marginea de jos</string>
|
||||||
<string name="pref_character_size_title">Dimensiunea simbolurilor</string>
|
<string name="pref_keyboard_height_title">Înălțimea tastaturii</string>
|
||||||
<string name="pref_character_size_summary">Dimensiumea caracterelor afișate pe tastatură (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Marginea orizontală</string>
|
||||||
<string name="pref_theme">Tema</string>
|
<string name="pref_character_size_title">Dimensiunea simbolurilor</string>
|
||||||
<string name="pref_theme_e_system">Setări de sistem</string>
|
<string name="pref_character_size_summary">Dimensiumea caracterelor afișate pe tastatură (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Întunecată</string>
|
<string name="pref_theme">Tema</string>
|
||||||
<string name="pref_theme_e_light">Luminoasă</string>
|
<string name="pref_theme_e_system">Setări de sistem</string>
|
||||||
<string name="pref_theme_e_black">Neagră</string>
|
<string name="pref_theme_e_dark">Întunecată</string>
|
||||||
<string name="pref_theme_e_altblack">Negru Alternativ</string>
|
<string name="pref_theme_e_light">Luminoasă</string>
|
||||||
<string name="pref_theme_e_white">Albă</string>
|
<string name="pref_theme_e_black">Neagră</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Negru Alternativ</string>
|
||||||
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
<string name="pref_theme_e_white">Albă</string>
|
||||||
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
||||||
<string name="pref_swipe_dist_e_very_short">Foarte apropiată</string>
|
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
||||||
<string name="pref_swipe_dist_e_short">Apropiată</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normală</string>
|
<string name="pref_swipe_dist_e_very_short">Foarte apropiată</string>
|
||||||
<string name="pref_swipe_dist_e_far">Depărtată</string>
|
<string name="pref_swipe_dist_e_short">Apropiată</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Foarte depărtată</string>
|
<string name="pref_swipe_dist_e_default">Normală</string>
|
||||||
<string name="pref_key_horizontal_space">Distanța orizontală dintre taste</string>
|
<string name="pref_swipe_dist_e_far">Depărtată</string>
|
||||||
<string name="pref_key_vertical_space">Distanța verticală dintre taste</string>
|
<string name="pref_swipe_dist_e_very_far">Foarte depărtată</string>
|
||||||
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
<string name="pref_key_horizontal_space">Distanța orizontală dintre taste</string>
|
||||||
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
<string name="pref_key_vertical_space">Distanța verticală dintre taste</string>
|
||||||
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
||||||
<string name="key_action_next">Următor</string>
|
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
||||||
<string name="key_action_done">Gata</string>
|
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
||||||
<string name="key_action_go">Go</string>
|
<string name="key_action_next">Următor</string>
|
||||||
<string name="key_action_prev">Precedent</string>
|
<string name="key_action_done">Gata</string>
|
||||||
<string name="key_action_search">Caută</string>
|
<string name="key_action_go">Go</string>
|
||||||
<string name="key_action_send">Trimite</string>
|
<string name="key_action_prev">Precedent</string>
|
||||||
<string name="launcher_button_imesettings">Activează tastatura</string>
|
<string name="key_action_search">Caută</string>
|
||||||
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
<string name="key_action_send">Trimite</string>
|
||||||
<string name="launcher_description">Această aplicație este o tastatură virtuală. Accesați setările sistemului făcând clic pe butonul de mai jos și activați tastatura Unexpected.</string>
|
<string name="launcher_button_imesettings">Activează tastatura</string>
|
||||||
<string name="launcher_sourcecode">Aceasta este o aplicație gratuită și open source. Puteți găsi codul sursă sau raporta erori folosind link-ul Github.</string>
|
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
||||||
<string name="launcher_tryhere">După activare, puteți să încercați tastatura aici:</string>
|
<string name="launcher_description">Această aplicație este o tastatură virtuală. Accesați setările sistemului făcând clic pe butonul de mai jos și activați tastatura Unexpected.</string>
|
||||||
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
<string name="launcher_sourcecode">Aceasta este o aplicație gratuită și open source. Puteți găsi codul sursă sau raporta erori folosind link-ul Github.</string>
|
||||||
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
<string name="launcher_tryhere">După activare, puteți să încercați tastatura aici:</string>
|
||||||
<!-- <string name="key_descr_compose">Compose</string> -->
|
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
||||||
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
||||||
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
<!-- <string name="key_descr_compose">Compose</string> -->
|
||||||
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
||||||
<!-- <string name="key_descr_copy">Copy</string> -->
|
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
||||||
<!-- <string name="key_descr_paste">Paste</string> -->
|
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
||||||
<!-- <string name="key_descr_cut">Cut</string> -->
|
<!-- <string name="key_descr_copy">Copy</string> -->
|
||||||
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
<!-- <string name="key_descr_paste">Paste</string> -->
|
||||||
<!-- <string name="key_descr_shareText">Share text</string> -->
|
<!-- <string name="key_descr_cut">Cut</string> -->
|
||||||
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
||||||
<!-- <string name="key_descr_undo">Undo</string> -->
|
<!-- <string name="key_descr_shareText">Share text</string> -->
|
||||||
<!-- <string name="key_descr_redo">Redo</string> -->
|
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
||||||
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_undo">Undo</string> -->
|
||||||
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_redo">Redo</string> -->
|
||||||
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
||||||
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
||||||
<!-- <string name="key_descr_home">Home</string> -->
|
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
||||||
<!-- <string name="key_descr_end">End</string> -->
|
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
||||||
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
<!-- <string name="key_descr_home">Home</string> -->
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<!-- <string name="key_descr_end">End</string> -->
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
||||||
|
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (отладка)</string>
|
<string name="app_name_debug">Unexpected Keyboard (отладка)</string>
|
||||||
<string name="short_description">Легкая клавиатура для пользователей, заботящихся о конфиденциальности.</string>
|
<string name="short_description">Легкая клавиатура для пользователей, заботящихся о конфиденциальности.</string>
|
||||||
<string name="store_description">Главная особенность клавиатуры — это возможность легко напечатать любой ASCII-символ жестами в углы клавиш.\n\nПриложение изначально было разработано для использования с Termux.\nНа данный момент оно также удобно в повседневном использовании.\n\nПриложение не содержит рекламы, не осуществляет никаких запросов в сеть и имеет открытый исходный код.</string>
|
<string name="store_description">"Главная особенность клавиатуры — это возможность легко напечатать любой ASCII-символ жестами в углы клавиш.
|
||||||
<string name="settings_activity_label">Настройки Unexpected Keyboard</string>
|
|
||||||
<string name="pref_portrait">В портретном режиме</string>
|
Приложение изначально было разработано для использования с Termux.
|
||||||
<string name="pref_landscape">В ландшафтном режиме</string>
|
На данный момент оно также удобно в повседневном использовании.
|
||||||
<string name="pref_category_layout">Расположение</string>
|
|
||||||
<string name="pref_label_brightness">Изменить яркость клавиатуры</string>
|
Приложение не содержит рекламы, не осуществляет никаких запросов в сеть и имеет открытый исходный код."</string>
|
||||||
<string name="pref_keyboard_opacity">Изменить прозрачность фона</string>
|
<string name="settings_activity_label">Настройки Unexpected Keyboard</string>
|
||||||
<string name="pref_key_opacity">Изменить прозрачность клавиш</string>
|
<string name="pref_portrait">В портретном режиме</string>
|
||||||
<string name="pref_key_activated_opacity">Изменить прозрачность нажатой клавиши</string>
|
<string name="pref_landscape">В ландшафтном режиме</string>
|
||||||
<string name="pref_layout_e_system">Системные настройки</string>
|
<string name="pref_category_layout">Расположение</string>
|
||||||
<string name="pref_layout_e_custom">Пользовательская раскладка</string>
|
<string name="pref_label_brightness">Изменить яркость клавиатуры</string>
|
||||||
<string name="pref_layouts_add">Добавить альтернативную раскладку</string>
|
<string name="pref_keyboard_opacity">Изменить прозрачность фона</string>
|
||||||
<string name="pref_layouts_item">Раскладка %1$d: %2$s</string>
|
<string name="pref_key_opacity">Изменить прозрачность клавиш</string>
|
||||||
<string name="pref_layouts_remove_custom">Удалить раскладку</string>
|
<string name="pref_key_activated_opacity">Изменить прозрачность нажатой клавиши</string>
|
||||||
<string name="pref_custom_layout_title">Пользовательская раскладка</string>
|
<string name="pref_layout_e_system">Системные настройки</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Пользовательская раскладка</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Добавить альтернативную раскладку</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Раскладка %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Показывать цифровой блок</string>
|
<string name="pref_layouts_remove_custom">Удалить раскладку</string>
|
||||||
<string name="pref_show_numpad_never">Никогда</string>
|
<string name="pref_custom_layout_title">Пользовательская раскладка</string>
|
||||||
<string name="pref_show_numpad_landscape">Только в ландшафтном режиме</string>
|
<string name="pref_show_numpad_title">Показывать цифровой блок</string>
|
||||||
<string name="pref_show_numpad_always">Всегда</string>
|
<string name="pref_show_numpad_never">Никогда</string>
|
||||||
<string name="pref_number_row_title">Показывать цифры</string>
|
<string name="pref_show_numpad_landscape">Только в ландшафтном режиме</string>
|
||||||
<string name="pref_number_row_summary">Добавить ряд цифр над клавиатурой, когда цифровой блок не активен</string>
|
<string name="pref_show_numpad_always">Всегда</string>
|
||||||
<string name="pref_numpad_layout">Раскладка цифрового блока</string>
|
<string name="pref_number_row_title">Показывать цифры</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Старшие цифры сверху</string>
|
<string name="pref_number_row_summary">Добавить ряд цифр над клавиатурой, когда цифровой блок не активен</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Младшие цифры сверху</string>
|
<string name="pref_numpad_layout">Раскладка цифрового блока</string>
|
||||||
<string name="pref_extra_keys_title">Добавить клавиши на клавиатуру</string>
|
<string name="pref_numpad_layout_e_high_first">Старшие цифры сверху</string>
|
||||||
<string name="pref_extra_keys_custom">Добавить пользовательские клавиши</string>
|
<string name="pref_numpad_layout_e_low_first">Младшие цифры сверху</string>
|
||||||
<string name="pref_extra_keys_internal">Выберите клавиши для добавления на клавиатуру</string>
|
<string name="pref_extra_keys_title">Добавить клавиши на клавиатуру</string>
|
||||||
<string name="pref_category_typing">Набор текста</string>
|
<string name="pref_extra_keys_custom">Добавить пользовательские клавиши</string>
|
||||||
<string name="pref_swipe_dist_title">Длина жеста</string>
|
<string name="pref_extra_keys_internal">Выберите клавиши для добавления на клавиатуру</string>
|
||||||
<string name="pref_swipe_dist_summary">Расстояние между символами в углах клавиш (%s)</string>
|
<string name="pref_category_typing">Набор текста</string>
|
||||||
<string name="pref_long_timeout_title">Задержка долгого нажатия</string>
|
<string name="pref_swipe_dist_title">Длина жеста</string>
|
||||||
<string name="pref_long_interval_title">Интервал повтора клавиш</string>
|
<string name="pref_swipe_dist_summary">Расстояние между символами в углах клавиш (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Повтор клавиши при долгом нажатии</string>
|
<string name="pref_long_timeout_title">Задержка долгого нажатия</string>
|
||||||
<string name="pref_lock_double_tap_title">CapsLock двойным нажатием Shift</string>
|
<string name="pref_long_interval_title">Интервал повтора клавиш</string>
|
||||||
<string name="pref_lock_double_tap_summary">Также можно активировать модификатор долгим нажатием</string>
|
<string name="pref_keyrepeat_enabled">Повтор клавиши при долгом нажатии</string>
|
||||||
<string name="pref_category_behavior">Поведение</string>
|
<string name="pref_lock_double_tap_title">CapsLock двойным нажатием Shift</string>
|
||||||
<string name="pref_autocapitalisation_title">Автоматическая смена регистра</string>
|
<string name="pref_lock_double_tap_summary">Также можно активировать модификатор долгим нажатием</string>
|
||||||
<string name="pref_autocapitalisation_summary">Автоматическое нажатие Shift в начале каждого предложения</string>
|
<string name="pref_category_behavior">Поведение</string>
|
||||||
<string name="pref_switch_input_immediate_title">Активировать предыдущую клавиатуру</string>
|
<string name="pref_autocapitalisation_title">Автоматическая смена регистра</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Поведение клавиши переключения клавиатуры</string>
|
<string name="pref_autocapitalisation_summary">Автоматическое нажатие Shift в начале каждого предложения</string>
|
||||||
<string name="pref_vibrate_custom">Настройка вибрации</string>
|
<string name="pref_switch_input_immediate_title">Активировать предыдущую клавиатуру</string>
|
||||||
<string name="pref_vibrate_duration_title">Интенсивность вибрации</string>
|
<string name="pref_switch_input_immediate_summary">Поведение клавиши переключения клавиатуры</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Закрепить раскладку</string>
|
<string name="pref_vibrate_custom">Настройка вибрации</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">При вводе чисел, дат и телефонных номеров</string>
|
<string name="pref_vibrate_duration_title">Интенсивность вибрации</string>
|
||||||
<string name="pref_category_style">Стиль</string>
|
<string name="pref_pin_entry_enabled_title">Закрепить раскладку</string>
|
||||||
<string name="pref_margin_bottom_title">Нижняя граница поля</string>
|
<string name="pref_pin_entry_enabled_summary">При вводе чисел, дат и телефонных номеров</string>
|
||||||
<string name="pref_keyboard_height_title">Высота клавиатуры</string>
|
<string name="pref_category_style">Стиль</string>
|
||||||
<string name="pref_horizontal_margin_title">Горизонтальное поле</string>
|
<string name="pref_margin_bottom_title">Нижняя граница поля</string>
|
||||||
<string name="pref_character_size_title">Размер символов</string>
|
<string name="pref_keyboard_height_title">Высота клавиатуры</string>
|
||||||
<string name="pref_character_size_summary">Размер символов, отображаемых на клавиатуре (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Горизонтальное поле</string>
|
||||||
<string name="pref_theme">Тема</string>
|
<string name="pref_character_size_title">Размер символов</string>
|
||||||
<string name="pref_theme_e_system">Системная</string>
|
<string name="pref_character_size_summary">Размер символов, отображаемых на клавиатуре (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Темная</string>
|
<string name="pref_theme">Тема</string>
|
||||||
<string name="pref_theme_e_light">Светлая</string>
|
<string name="pref_theme_e_system">Системная</string>
|
||||||
<string name="pref_theme_e_black">Черная</string>
|
<string name="pref_theme_e_dark">Темная</string>
|
||||||
<string name="pref_theme_e_altblack">Альтернативная черная</string>
|
<string name="pref_theme_e_light">Светлая</string>
|
||||||
<string name="pref_theme_e_white">Белая</string>
|
<string name="pref_theme_e_black">Черная</string>
|
||||||
<string name="pref_theme_e_epaper">Электронная бумага</string>
|
<string name="pref_theme_e_altblack">Альтернативная черная</string>
|
||||||
<string name="pref_theme_e_desert">Пустыня</string>
|
<string name="pref_theme_e_white">Белая</string>
|
||||||
<string name="pref_theme_e_jungle">Джунгли</string>
|
<string name="pref_theme_e_epaper">Электронная бумага</string>
|
||||||
<string name="pref_theme_e_monet">Моне (системная)</string>
|
<string name="pref_theme_e_desert">Пустыня</string>
|
||||||
<string name="pref_theme_e_monetlight">Моне (светлая)</string>
|
<string name="pref_theme_e_jungle">Джунгли</string>
|
||||||
<string name="pref_theme_e_monetdark">Моне (темная)</string>
|
<string name="pref_theme_e_monet">Моне (системная)</string>
|
||||||
<string name="pref_theme_e_rosepine">Розовая сосна</string>
|
<string name="pref_theme_e_monetlight">Моне (светлая)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Очень короткая</string>
|
<string name="pref_theme_e_monetdark">Моне (темная)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Короткая</string>
|
<string name="pref_theme_e_rosepine">Розовая сосна</string>
|
||||||
<string name="pref_swipe_dist_e_default">Обычная</string>
|
<string name="pref_swipe_dist_e_very_short">Очень короткая</string>
|
||||||
<string name="pref_swipe_dist_e_far">Длинная</string>
|
<string name="pref_swipe_dist_e_short">Короткая</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Очень длинная</string>
|
<string name="pref_swipe_dist_e_default">Обычная</string>
|
||||||
<string name="pref_key_horizontal_space">Горизонтальное расстояние между клавишами</string>
|
<string name="pref_swipe_dist_e_far">Длинная</string>
|
||||||
<string name="pref_key_vertical_space">Расстояние по вертикали между клавишами</string>
|
<string name="pref_swipe_dist_e_very_far">Очень длинная</string>
|
||||||
<string name="pref_border_config_title">Настройка рамки</string>
|
<string name="pref_key_horizontal_space">Горизонтальное расстояние между клавишами</string>
|
||||||
<string name="pref_border_width_title">Ширина рамки</string>
|
<string name="pref_key_vertical_space">Расстояние по вертикали между клавишами</string>
|
||||||
<string name="pref_corners_radius_title">Радиус скругления</string>
|
<string name="pref_border_config_title">Настройка рамки</string>
|
||||||
<string name="pref_circle_sensitivity_title">Чувствительность круговых жестов</string>
|
<string name="pref_border_width_title">Ширина рамки</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Высокая</string>
|
<string name="pref_corners_radius_title">Радиус скругления</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Средняя</string>
|
<string name="pref_circle_sensitivity_title">Чувствительность круговых жестов</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Низкая</string>
|
<string name="pref_circle_sensitivity_e_high">Высокая</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Отключено</string>
|
<string name="pref_circle_sensitivity_e_medium">Средняя</string>
|
||||||
<string name="key_action_next">Вперед</string>
|
<string name="pref_circle_sensitivity_e_low">Низкая</string>
|
||||||
<string name="key_action_done">Ввод</string>
|
<string name="pref_circle_sensitivity_e_disabled">Отключено</string>
|
||||||
<string name="key_action_go">Перейти</string>
|
<string name="key_action_next">Вперед</string>
|
||||||
<string name="key_action_prev">Назад</string>
|
<string name="key_action_done">Ввод</string>
|
||||||
<string name="key_action_search">Поиск</string>
|
<string name="key_action_go">Перейти</string>
|
||||||
<string name="key_action_send">Отправить</string>
|
<string name="key_action_prev">Назад</string>
|
||||||
<string name="launcher_button_imesettings">Включение клавиатуры</string>
|
<string name="key_action_search">Поиск</string>
|
||||||
<string name="launcher_button_imepicker">Выбор клавиатуры</string>
|
<string name="key_action_send">Отправить</string>
|
||||||
<string name="launcher_description">Данное приложение является виртуальной клавиатурой. Зайдите в настройки, нажав кнопку внизу, и активируйте Unexpected Keyboard.</string>
|
<string name="launcher_button_imesettings">Включение клавиатуры</string>
|
||||||
<string name="launcher_sourcecode">Это бесплатное приложение с открытым исходным кодом. Вы можете изучить код или сообщить об ошибках по ссылке GitHub.</string>
|
<string name="launcher_button_imepicker">Выбор клавиатуры</string>
|
||||||
<string name="launcher_tryhere">После активации вы сможете попробовать клавиатуру прямо здесь:</string>
|
<string name="launcher_description">Данное приложение является виртуальной клавиатурой. Зайдите в настройки, нажав кнопку внизу, и активируйте Unexpected Keyboard.</string>
|
||||||
<string name="launcher_tryhere_hint">Попробуйте здесь</string>
|
<string name="launcher_sourcecode">Это бесплатное приложение с открытым исходным кодом. Вы можете изучить код или сообщить об ошибках по ссылке GitHub.</string>
|
||||||
<string name="key_descr_capslock">CapsLock</string>
|
<string name="launcher_tryhere">После активации вы сможете попробовать клавиатуру прямо здесь:</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere_hint">Попробуйте здесь</string>
|
||||||
<string name="key_descr_switch_greekmath">Греческие и математические символы</string>
|
<string name="key_descr_capslock">CapsLock</string>
|
||||||
<string name="key_descr_change_method">Переключение клавиатуры</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">Голосовой ввод</string>
|
<string name="key_descr_switch_greekmath">Греческие и математические символы</string>
|
||||||
<string name="key_descr_copy">Копировать</string>
|
<string name="key_descr_change_method">Переключение клавиатуры</string>
|
||||||
<string name="key_descr_paste">Вставить</string>
|
<string name="key_descr_voice_typing">Голосовой ввод</string>
|
||||||
<string name="key_descr_cut">Вырезать</string>
|
<string name="key_descr_copy">Копировать</string>
|
||||||
<string name="key_descr_selectAll">Выбрать все</string>
|
<string name="key_descr_paste">Вставить</string>
|
||||||
<string name="key_descr_shareText">Поделиться текстом</string>
|
<string name="key_descr_cut">Вырезать</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Вставить как простой текст</string>
|
<string name="key_descr_selectAll">Выбрать все</string>
|
||||||
<string name="key_descr_undo">Отменить</string>
|
<string name="key_descr_shareText">Поделиться текстом</string>
|
||||||
<string name="key_descr_redo">Повторить</string>
|
<string name="key_descr_pasteAsPlainText">Вставить как простой текст</string>
|
||||||
<string name="key_descr_ª">Порядковый индикатор</string>
|
<string name="key_descr_undo">Отменить</string>
|
||||||
<string name="key_descr_º">Порядковый индикатор</string>
|
<string name="key_descr_redo">Повторить</string>
|
||||||
<string name="key_descr_superscript">Надстрочные</string>
|
<string name="key_descr_ª">Порядковый индикатор</string>
|
||||||
<string name="key_descr_subscript">Подстрочные</string>
|
<string name="key_descr_º">Порядковый индикатор</string>
|
||||||
<string name="key_descr_page_up">Страница вверх</string>
|
<string name="key_descr_superscript">Надстрочные</string>
|
||||||
<string name="key_descr_page_down">Страница вниз</string>
|
<string name="key_descr_subscript">Подстрочные</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Страница вверх</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Страница вниз</string>
|
||||||
<string name="key_descr_clipboard">Менеджер буфера обмена</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<string name="key_descr_combining">Сочетание диакритических знаков</string>
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Менеджер буфера обмена</string>
|
||||||
<string name="key_descr_zwj">Соединитель нулевой ширины</string>
|
<string name="key_descr_combining">Сочетание диакритических знаков</string>
|
||||||
<string name="key_descr_zwnj">Разделитель нулевой ширины</string>
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<string name="key_descr_nbsp">Неразрывный пробел</string>
|
<string name="key_descr_zwj">Соединитель нулевой ширины</string>
|
||||||
<string name="key_descr_nnbsp">Узкий неразрывный пробел</string>
|
<string name="key_descr_zwnj">Разделитель нулевой ширины</string>
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<string name="key_descr_nbsp">Неразрывный пробел</string>
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<string name="key_descr_nnbsp">Узкий неразрывный пробел</string>
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Недавно скопированный текст</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Закреплено</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Удалить этот буфер обмена?</string>
|
<string name="clipboard_history_heading">Недавно скопированный текст</string>
|
||||||
<string name="clipboard_remove_confirmed">Да</string>
|
<string name="clipboard_pin_heading">Закреплено</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Удалить этот буфер обмена?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Да</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">Android için hafif ve güvenlik odaklı bir sanal klavye uygulaması.</string>
|
<string name="short_description">Android için hafif ve güvenlik odaklı bir sanal klavye uygulaması.</string>
|
||||||
<string name="store_description">Bu uygulama özünde tuşların kenarlarından kaydırarak daha fazla karakter yazabilmek amacıyla geliştirildi.\n\nBu uygulama aslında Termux kullanıcıları için geliştirildi.\nArtık gündelik kullanım için de uygun.\n\nBu uygulama açık kaynaklıdır. Reklam içermez ve internete bağlanmaz.</string>
|
<string name="store_description">"Bu uygulama özünde tuşların kenarlarından kaydırarak daha fazla karakter yazabilmek amacıyla geliştirildi.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard Ayarları</string>
|
|
||||||
<string name="pref_portrait">Portre modunda</string>
|
Bu uygulama aslında Termux kullanıcıları için geliştirildi.
|
||||||
<string name="pref_landscape">Manzara modunda</string>
|
Artık gündelik kullanım için de uygun.
|
||||||
<string name="pref_category_layout">Tuş düzeni</string>
|
|
||||||
<string name="pref_label_brightness">Adjust label brightness</string>
|
Bu uygulama açık kaynaklıdır. Reklam içermez ve internete bağlanmaz."</string>
|
||||||
<string name="pref_keyboard_opacity">Klavye arkaplanı opaklığını ayarla</string>
|
<string name="settings_activity_label">Unexpected Keyboard Ayarları</string>
|
||||||
<string name="pref_key_opacity">Tuş opaklığını ayarla</string>
|
<string name="pref_portrait">Portre modunda</string>
|
||||||
<string name="pref_key_activated_opacity">Tuşa basıldığındaki opaklığı ayarla</string>
|
<string name="pref_landscape">Manzara modunda</string>
|
||||||
<string name="pref_layout_e_system">Sistem ayarlarını kullan</string>
|
<string name="pref_category_layout">Tuş düzeni</string>
|
||||||
<string name="pref_layout_e_custom">Özel tuş düeni</string>
|
<string name="pref_label_brightness">Adjust label brightness</string>
|
||||||
<string name="pref_layouts_add">Alternatif bir tuş düzeni ekle</string>
|
<string name="pref_keyboard_opacity">Klavye arkaplanı opaklığını ayarla</string>
|
||||||
<string name="pref_layouts_item">Tuş düzeni %1$d: %2$s</string>
|
<string name="pref_key_opacity">Tuş opaklığını ayarla</string>
|
||||||
<string name="pref_layouts_remove_custom">Tuş düzenini kaldır</string>
|
<string name="pref_key_activated_opacity">Tuşa basıldığındaki opaklığı ayarla</string>
|
||||||
<string name="pref_custom_layout_title">Özel tuş düzeni</string>
|
<string name="pref_layout_e_system">Sistem ayarlarını kullan</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Özel tuş düeni</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Alternatif bir tuş düzeni ekle</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Tuş düzeni %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">NumPadi göster</string>
|
<string name="pref_layouts_remove_custom">Tuş düzenini kaldır</string>
|
||||||
<string name="pref_show_numpad_never">Asla</string>
|
<string name="pref_custom_layout_title">Özel tuş düzeni</string>
|
||||||
<string name="pref_show_numpad_landscape">Sadece manzara modunda</string>
|
<string name="pref_show_numpad_title">NumPadi göster</string>
|
||||||
<string name="pref_show_numpad_always">Her zaman</string>
|
<string name="pref_show_numpad_never">Asla</string>
|
||||||
<string name="pref_number_row_title">Rakam satırını göster</string>
|
<string name="pref_show_numpad_landscape">Sadece manzara modunda</string>
|
||||||
<string name="pref_number_row_summary">NumPad gizlendiğinde klavyenin üstüne rakam satırı ekle</string>
|
<string name="pref_show_numpad_always">Her zaman</string>
|
||||||
<string name="pref_numpad_layout">NumPad düzeni</string>
|
<string name="pref_number_row_title">Rakam satırını göster</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">9dan 1e</string>
|
<string name="pref_number_row_summary">NumPad gizlendiğinde klavyenin üstüne rakam satırı ekle</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">1den 9a</string>
|
<string name="pref_numpad_layout">NumPad düzeni</string>
|
||||||
<string name="pref_extra_keys_title">Tuş ekle</string>
|
<string name="pref_numpad_layout_e_high_first">9dan 1e</string>
|
||||||
<string name="pref_extra_keys_custom">Özel tuş ekle</string>
|
<string name="pref_numpad_layout_e_low_first">1den 9a</string>
|
||||||
<string name="pref_extra_keys_internal">Klavyeye eklenecek tuşları seçin</string>
|
<string name="pref_extra_keys_title">Tuş ekle</string>
|
||||||
<string name="pref_category_typing">Yazma</string>
|
<string name="pref_extra_keys_custom">Özel tuş ekle</string>
|
||||||
<string name="pref_swipe_dist_title">Kaydırma mesafesi</string>
|
<string name="pref_extra_keys_internal">Klavyeye eklenecek tuşları seçin</string>
|
||||||
<string name="pref_swipe_dist_summary">Tuşların köşelerinden kaydırma mesafesi (%s)</string>
|
<string name="pref_category_typing">Yazma</string>
|
||||||
<string name="pref_long_timeout_title">Uzun basma süresi</string>
|
<string name="pref_swipe_dist_title">Kaydırma mesafesi</string>
|
||||||
<string name="pref_long_interval_title">Tuşların tekrarlama sıklığı</string>
|
<string name="pref_swipe_dist_summary">Tuşların köşelerinden kaydırma mesafesi (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Uzun basınca tuş tekrarlamaları</string>
|
<string name="pref_long_timeout_title">Uzun basma süresi</string>
|
||||||
<string name="pref_lock_double_tap_title">CapsLock için Shift tuşuna çift bas</string>
|
<string name="pref_long_interval_title">Tuşların tekrarlama sıklığı</string>
|
||||||
<string name="pref_lock_double_tap_summary">Uzun basarak CapsLock açılabilir</string>
|
<string name="pref_keyrepeat_enabled">Uzun basınca tuş tekrarlamaları</string>
|
||||||
<string name="pref_category_behavior">Klavye davranışı</string>
|
<string name="pref_lock_double_tap_title">CapsLock için Shift tuşuna çift bas</string>
|
||||||
<string name="pref_autocapitalisation_title">Otomatik büyük harf</string>
|
<string name="pref_lock_double_tap_summary">Uzun basarak CapsLock açılabilir</string>
|
||||||
<string name="pref_autocapitalisation_summary">Noktadan sonra ve her cümlenin başında büyük harf yapar</string>
|
<string name="pref_category_behavior">Klavye davranışı</string>
|
||||||
<string name="pref_switch_input_immediate_title">Son kullanılan klavyeye geç</string>
|
<string name="pref_autocapitalisation_title">Otomatik büyük harf</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Klavye değistirme tuşunun davranışını belirler</string>
|
<string name="pref_autocapitalisation_summary">Noktadan sonra ve her cümlenin başında büyük harf yapar</string>
|
||||||
<string name="pref_vibrate_custom">Özel titreşim</string>
|
<string name="pref_switch_input_immediate_title">Son kullanılan klavyeye geç</string>
|
||||||
<string name="pref_vibrate_duration_title">Titreşim yoğunluğu</string>
|
<string name="pref_switch_input_immediate_summary">Klavye değistirme tuşunun davranışını belirler</string>
|
||||||
<string name="pref_pin_entry_enabled_title">NumPad</string>
|
<string name="pref_vibrate_custom">Özel titreşim</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">Sayıları, tarihleri ve telefon numaralarını yazarken</string>
|
<string name="pref_vibrate_duration_title">Titreşim yoğunluğu</string>
|
||||||
<string name="pref_category_style">Tarz</string>
|
<string name="pref_pin_entry_enabled_title">NumPad</string>
|
||||||
<string name="pref_margin_bottom_title">Alt boşluk</string>
|
<string name="pref_pin_entry_enabled_summary">Sayıları, tarihleri ve telefon numaralarını yazarken</string>
|
||||||
<string name="pref_keyboard_height_title">Klavye yüksekliği</string>
|
<string name="pref_category_style">Tarz</string>
|
||||||
<string name="pref_horizontal_margin_title">Yatay boşluk</string>
|
<string name="pref_margin_bottom_title">Alt boşluk</string>
|
||||||
<string name="pref_character_size_title">Etiket boyutu</string>
|
<string name="pref_keyboard_height_title">Klavye yüksekliği</string>
|
||||||
<string name="pref_character_size_summary">Klavye üzerindeki karakterlerin boyutu (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Yatay boşluk</string>
|
||||||
<string name="pref_theme">Tema</string>
|
<string name="pref_character_size_title">Etiket boyutu</string>
|
||||||
<string name="pref_theme_e_system">Sistem Temasını Kullan</string>
|
<string name="pref_character_size_summary">Klavye üzerindeki karakterlerin boyutu (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Koyu</string>
|
<string name="pref_theme">Tema</string>
|
||||||
<string name="pref_theme_e_light">Aydınlık</string>
|
<string name="pref_theme_e_system">Sistem Temasını Kullan</string>
|
||||||
<string name="pref_theme_e_black">Siyah</string>
|
<string name="pref_theme_e_dark">Koyu</string>
|
||||||
<string name="pref_theme_e_altblack">Alternatif Siyah</string>
|
<string name="pref_theme_e_light">Aydınlık</string>
|
||||||
<string name="pref_theme_e_white">Beyaz</string>
|
<string name="pref_theme_e_black">Siyah</string>
|
||||||
<string name="pref_theme_e_epaper">E-Kağıt</string>
|
<string name="pref_theme_e_altblack">Alternatif Siyah</string>
|
||||||
<string name="pref_theme_e_desert">Çöl</string>
|
<string name="pref_theme_e_white">Beyaz</string>
|
||||||
<string name="pref_theme_e_jungle">Orman</string>
|
<string name="pref_theme_e_epaper">E-Kağıt</string>
|
||||||
<string name="pref_theme_e_monet">Monet (Sisteme uyarla)</string>
|
<string name="pref_theme_e_desert">Çöl</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Açık)</string>
|
<string name="pref_theme_e_jungle">Orman</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Koyu)</string>
|
<string name="pref_theme_e_monet">Monet (Sisteme uyarla)</string>
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<string name="pref_theme_e_monetlight">Monet (Açık)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Çok kısa</string>
|
<string name="pref_theme_e_monetdark">Monet (Koyu)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Kısa</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Normal</string>
|
<string name="pref_swipe_dist_e_very_short">Çok kısa</string>
|
||||||
<string name="pref_swipe_dist_e_far">Uzun</string>
|
<string name="pref_swipe_dist_e_short">Kısa</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Çok uzun</string>
|
<string name="pref_swipe_dist_e_default">Normal</string>
|
||||||
<string name="pref_key_horizontal_space">Tuşlar arasındaki yatay boşluk</string>
|
<string name="pref_swipe_dist_e_far">Uzun</string>
|
||||||
<string name="pref_key_vertical_space">Tuşlar arasındaki dikey boşluk</string>
|
<string name="pref_swipe_dist_e_very_far">Çok uzun</string>
|
||||||
<string name="pref_border_config_title">Çerçeveyi özelleştir</string>
|
<string name="pref_key_horizontal_space">Tuşlar arasındaki yatay boşluk</string>
|
||||||
<string name="pref_border_width_title">Çerçeve kalınlığı</string>
|
<string name="pref_key_vertical_space">Tuşlar arasındaki dikey boşluk</string>
|
||||||
<string name="pref_corners_radius_title">Kenar yumuşaklığı</string>
|
<string name="pref_border_config_title">Çerçeveyi özelleştir</string>
|
||||||
<string name="pref_circle_sensitivity_title">Dairesel hareket hassasiyeti</string>
|
<string name="pref_border_width_title">Çerçeve kalınlığı</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Yüksek</string>
|
<string name="pref_corners_radius_title">Kenar yumuşaklığı</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Orta</string>
|
<string name="pref_circle_sensitivity_title">Dairesel hareket hassasiyeti</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Düşük</string>
|
<string name="pref_circle_sensitivity_e_high">Yüksek</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Devre dışı</string>
|
<string name="pref_circle_sensitivity_e_medium">Orta</string>
|
||||||
<string name="key_action_next">Sonraki</string>
|
<string name="pref_circle_sensitivity_e_low">Düşük</string>
|
||||||
<string name="key_action_done">Tamam</string>
|
<string name="pref_circle_sensitivity_e_disabled">Devre dışı</string>
|
||||||
<string name="key_action_go">ileri</string>
|
<string name="key_action_next">Sonraki</string>
|
||||||
<string name="key_action_prev">Önceki</string>
|
<string name="key_action_done">Tamam</string>
|
||||||
<string name="key_action_search">Ara</string>
|
<string name="key_action_go">ileri</string>
|
||||||
<string name="key_action_send">Gönder</string>
|
<string name="key_action_prev">Önceki</string>
|
||||||
<string name="launcher_button_imesettings">Ayarlarda aktif et</string>
|
<string name="key_action_search">Ara</string>
|
||||||
<string name="launcher_button_imepicker">Klavye Seç</string>
|
<string name="key_action_send">Gönder</string>
|
||||||
<string name="launcher_description">Bu uygulama bir sanal klavye uygulamasıdır. Aşağıdaki butona basarak sistem ayarlarında etkinleştiriniz.</string>
|
<string name="launcher_button_imesettings">Ayarlarda aktif et</string>
|
||||||
<string name="launcher_sourcecode">Bu uygulama ücretsiz ve açık kaynaklıdır. Kaynak koduna erişmek veya bir hata raporlamak için GitHub</string>
|
<string name="launcher_button_imepicker">Klavye Seç</string>
|
||||||
<string name="launcher_tryhere">Ayarlardan aktif ettikten sonra klavyeyi burada test edebilirsin:</string>
|
<string name="launcher_description">Bu uygulama bir sanal klavye uygulamasıdır. Aşağıdaki butona basarak sistem ayarlarında etkinleştiriniz.</string>
|
||||||
<string name="launcher_tryhere_hint">Burada dene</string>
|
<string name="launcher_sourcecode">Bu uygulama ücretsiz ve açık kaynaklıdır. Kaynak koduna erişmek veya bir hata raporlamak için GitHub</string>
|
||||||
<string name="key_descr_capslock">CapsLock</string>
|
<string name="launcher_tryhere">Ayarlardan aktif ettikten sonra klavyeyi burada test edebilirsin:</string>
|
||||||
<string name="key_descr_compose">Oluştur</string>
|
<string name="launcher_tryhere_hint">Burada dene</string>
|
||||||
<string name="key_descr_switch_greekmath">Greek & math sembolleri</string>
|
<string name="key_descr_capslock">CapsLock</string>
|
||||||
<string name="key_descr_change_method">Klavye değiştir</string>
|
<string name="key_descr_compose">Oluştur</string>
|
||||||
<string name="key_descr_voice_typing">Sesle yazma</string>
|
<string name="key_descr_switch_greekmath">Greek & math sembolleri</string>
|
||||||
<string name="key_descr_copy">Kopyala</string>
|
<string name="key_descr_change_method">Klavye değiştir</string>
|
||||||
<string name="key_descr_paste">Yapıştır</string>
|
<string name="key_descr_voice_typing">Sesle yazma</string>
|
||||||
<string name="key_descr_cut">Kes</string>
|
<string name="key_descr_copy">Kopyala</string>
|
||||||
<string name="key_descr_selectAll">Tümünü seç</string>
|
<string name="key_descr_paste">Yapıştır</string>
|
||||||
<string name="key_descr_shareText">Metni paylaş</string>
|
<string name="key_descr_cut">Kes</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Düz metin olarak yapıştır</string>
|
<string name="key_descr_selectAll">Tümünü seç</string>
|
||||||
<string name="key_descr_undo">Geri al</string>
|
<string name="key_descr_shareText">Metni paylaş</string>
|
||||||
<string name="key_descr_redo">İleri al</string>
|
<string name="key_descr_pasteAsPlainText">Düz metin olarak yapıştır</string>
|
||||||
<string name="key_descr_ª">Sıralı göstergesi</string>
|
<string name="key_descr_undo">Geri al</string>
|
||||||
<string name="key_descr_º">Sıralı göstergesi</string>
|
<string name="key_descr_redo">İleri al</string>
|
||||||
<string name="key_descr_superscript">Süperscript</string>
|
<string name="key_descr_ª">Sıralı göstergesi</string>
|
||||||
<string name="key_descr_subscript">Anascript</string>
|
<string name="key_descr_º">Sıralı göstergesi</string>
|
||||||
<string name="key_descr_page_up">Yukarı</string>
|
<string name="key_descr_superscript">Süperscript</string>
|
||||||
<string name="key_descr_page_down">Aşağı</string>
|
<string name="key_descr_subscript">Anascript</string>
|
||||||
<string name="key_descr_home">BAŞ(Sol yön tuşu)</string>
|
<string name="key_descr_page_up">Yukarı</string>
|
||||||
<string name="key_descr_end">SON(Sağ yön tuşu)</string>
|
<string name="key_descr_page_down">Aşağı</string>
|
||||||
<string name="key_descr_clipboard">Pano</string>
|
<string name="key_descr_home">BAŞ(Sol yön tuşu)</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">SON(Sağ yön tuşu)</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<string name="key_descr_clipboard">Pano</string>
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Son kopyalanan metin</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Sabitlendi</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Bu sabitlemeyi sil</string>
|
<string name="clipboard_history_heading">Son kopyalanan metin</string>
|
||||||
<string name="clipboard_remove_confirmed">Evet</string>
|
<string name="clipboard_pin_heading">Sabitlendi</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Bu sabitlemeyi sil</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Evet</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (Налагодження)</string>
|
<string name="app_name_debug">Unexpected Keyboard (Налагодження)</string>
|
||||||
<string name="short_description">Легка та конфіденційна віртуальна клавіатура для Android.</string>
|
<string name="short_description">Легка та конфіденційна віртуальна клавіатура для Android.</string>
|
||||||
<string name="store_description">Головна особливість полягає в тому, що ви можете вводити більше символів, проводячи клавіші до кутів.\n\nЦя програма спочатку була розроблена для програмістів, які використовують Termux.\nТепер ідеально підходить для щоденного використання.\n\nЦя програма не містить реклами, не надсилає жодних мережевих запитів і має відкритий код.</string>
|
<string name="store_description">"Головна особливість полягає в тому, що ви можете вводити більше символів, проводячи клавіші до кутів.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard Налаштування</string>
|
|
||||||
<string name="pref_portrait">У портретному режимі</string>
|
Ця програма спочатку була розроблена для програмістів, які використовують Termux.
|
||||||
<string name="pref_landscape">У альбомному режимі</string>
|
Тепер ідеально підходить для щоденного використання.
|
||||||
<string name="pref_category_layout">Макет</string>
|
|
||||||
<string name="pref_label_brightness">Налаштувати яскравість символів</string>
|
Ця програма не містить реклами, не надсилає жодних мережевих запитів і має відкритий код."</string>
|
||||||
<string name="pref_keyboard_opacity">Налаштувати прозорість фону клавіатури</string>
|
<string name="settings_activity_label">Unexpected Keyboard Налаштування</string>
|
||||||
<string name="pref_key_opacity">Налаштувати прозорість клавіш</string>
|
<string name="pref_portrait">У портретному режимі</string>
|
||||||
<string name="pref_key_activated_opacity">Налаштувати прозорість натиснутої клавіші</string>
|
<string name="pref_landscape">У альбомному режимі</string>
|
||||||
<string name="pref_layout_e_system">Системні налаштування</string>
|
<string name="pref_category_layout">Макет</string>
|
||||||
<string name="pref_layout_e_custom">Власний макет</string>
|
<string name="pref_label_brightness">Налаштувати яскравість символів</string>
|
||||||
<string name="pref_layouts_add">Додати альтернативний макет</string>
|
<string name="pref_keyboard_opacity">Налаштувати прозорість фону клавіатури</string>
|
||||||
<string name="pref_layouts_item">Макет %1$d: %2$s</string>
|
<string name="pref_key_opacity">Налаштувати прозорість клавіш</string>
|
||||||
<string name="pref_layouts_remove_custom">Видалити макет</string>
|
<string name="pref_key_activated_opacity">Налаштувати прозорість натиснутої клавіші</string>
|
||||||
<string name="pref_custom_layout_title">Власний макет</string>
|
<string name="pref_layout_e_system">Системні налаштування</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Власний макет</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">Додати альтернативний макет</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">Макет %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Показувати числову клавіатуру</string>
|
<string name="pref_layouts_remove_custom">Видалити макет</string>
|
||||||
<string name="pref_show_numpad_never">Ніколи</string>
|
<string name="pref_custom_layout_title">Власний макет</string>
|
||||||
<string name="pref_show_numpad_landscape">Тільки в альбомному режимі</string>
|
<string name="pref_show_numpad_title">Показувати числову клавіатуру </string>
|
||||||
<string name="pref_show_numpad_always">Завжди</string>
|
<string name="pref_show_numpad_never">Ніколи</string>
|
||||||
<string name="pref_number_row_title">Показувати рядок чисел</string>
|
<string name="pref_show_numpad_landscape">Тільки в альбомному режимі</string>
|
||||||
<string name="pref_number_row_summary">Додати рядок чисел у верхній частині клавіатури, коли числову клавіатуру приховано</string>
|
<string name="pref_show_numpad_always">Завжди</string>
|
||||||
<string name="pref_numpad_layout">Макет числової клавіатури</string>
|
<string name="pref_number_row_title">Показувати рядок чисел</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Від найбільшої цифри</string>
|
<string name="pref_number_row_summary">Додати рядок чисел у верхній частині клавіатури, коли числову клавіатуру приховано</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Від найменшої цифри</string>
|
<string name="pref_numpad_layout">Макет числової клавіатури</string>
|
||||||
<string name="pref_extra_keys_title">Додати клавіші до клавіатури</string>
|
<string name="pref_numpad_layout_e_high_first">Від найбільшої цифри</string>
|
||||||
<string name="pref_extra_keys_custom">Додайте власні клавіші</string>
|
<string name="pref_numpad_layout_e_low_first">Від найменшої цифри</string>
|
||||||
<string name="pref_extra_keys_internal">Виберіть клавіші, які потрібно додати до клавіатури</string>
|
<string name="pref_extra_keys_title">Додати клавіші до клавіатури</string>
|
||||||
<string name="pref_category_typing">Введення</string>
|
<string name="pref_extra_keys_custom">Додайте власні клавіші</string>
|
||||||
<string name="pref_swipe_dist_title">Відстань проведення</string>
|
<string name="pref_extra_keys_internal">Виберіть клавіші, які потрібно додати до клавіатури</string>
|
||||||
<string name="pref_swipe_dist_summary">Відстань між символами в кутах клавіш (%s)</string>
|
<string name="pref_category_typing">Введення</string>
|
||||||
<string name="pref_long_timeout_title">Час очікування тривалого натискання</string>
|
<string name="pref_swipe_dist_title">Відстань проведення</string>
|
||||||
<string name="pref_long_interval_title">Інтервал повторення клавіш</string>
|
<string name="pref_swipe_dist_summary">Відстань між символами в кутах клавіш (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Повторення клавіші при тривалому натисканні</string>
|
<string name="pref_long_timeout_title">Час очікування тривалого натискання</string>
|
||||||
<string name="pref_lock_double_tap_title">Двічі торкніться Shift для Caps Lock</string>
|
<string name="pref_long_interval_title">Інтервал повторення клавіш</string>
|
||||||
<string name="pref_lock_double_tap_summary">Ви можете заблокувати будь-який модифікатор, утримуючи його</string>
|
<string name="pref_keyrepeat_enabled">Повторення клавіші при тривалому натисканні</string>
|
||||||
<string name="pref_category_behavior">Поведінка</string>
|
<string name="pref_lock_double_tap_title">Двічі торкніться Shift для Caps Lock</string>
|
||||||
<string name="pref_autocapitalisation_title">Автоматичне введення великих літер</string>
|
<string name="pref_lock_double_tap_summary">Ви можете заблокувати будь-який модифікатор, утримуючи його</string>
|
||||||
<string name="pref_autocapitalisation_summary">Натиснути Shift на початку речення</string>
|
<string name="pref_category_behavior">Поведінка</string>
|
||||||
<string name="pref_switch_input_immediate_title">Перейти до останньої використаної клавіатури</string>
|
<string name="pref_autocapitalisation_title">Автоматичне введення великих літер</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Поведінка клавіші перемикання клавіатури</string>
|
<string name="pref_autocapitalisation_summary">Натиснути Shift на початку речення</string>
|
||||||
<string name="pref_vibrate_custom">Спеціальна вібрація</string>
|
<string name="pref_switch_input_immediate_title">Перейти до останньої використаної клавіатури</string>
|
||||||
<string name="pref_vibrate_duration_title">Інтенсивність вібрації</string>
|
<string name="pref_switch_input_immediate_summary">Поведінка клавіші перемикання клавіатури</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Макет введення PIN-коду</string>
|
<string name="pref_vibrate_custom">Спеціальна вібрація</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">При наборі чисел, дат і номерів телефонів</string>
|
<string name="pref_vibrate_duration_title">Інтенсивність вібрації</string>
|
||||||
<string name="pref_category_style">Стиль</string>
|
<string name="pref_pin_entry_enabled_title">Макет введення PIN-коду</string>
|
||||||
<string name="pref_margin_bottom_title">Поле знизу</string>
|
<string name="pref_pin_entry_enabled_summary">При наборі чисел, дат і номерів телефонів</string>
|
||||||
<string name="pref_keyboard_height_title">Висота клавіатури</string>
|
<string name="pref_category_style">Стиль</string>
|
||||||
<string name="pref_horizontal_margin_title">Горизонтальне поле</string>
|
<string name="pref_margin_bottom_title">Поле знизу</string>
|
||||||
<string name="pref_character_size_title">Розмір символів</string>
|
<string name="pref_keyboard_height_title">Висота клавіатури</string>
|
||||||
<string name="pref_character_size_summary">Розмір символів, що відображаються на клавіатурі (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Горизонтальне поле</string>
|
||||||
<string name="pref_theme">Тема</string>
|
<string name="pref_character_size_title">Розмір символів</string>
|
||||||
<string name="pref_theme_e_system">Налаштування системи</string>
|
<string name="pref_character_size_summary">Розмір символів, що відображаються на клавіатурі (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Темна</string>
|
<string name="pref_theme">Тема</string>
|
||||||
<string name="pref_theme_e_light">Світла</string>
|
<string name="pref_theme_e_system">Налаштування системи</string>
|
||||||
<string name="pref_theme_e_black">Чорна</string>
|
<string name="pref_theme_e_dark">Темна</string>
|
||||||
<string name="pref_theme_e_altblack">Альтернативний чорний</string>
|
<string name="pref_theme_e_light">Світла</string>
|
||||||
<string name="pref_theme_e_white">Біла</string>
|
<string name="pref_theme_e_black">Чорна</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Альтернативний чорний</string>
|
||||||
<string name="pref_theme_e_desert">Пустеля</string>
|
<string name="pref_theme_e_white">Біла</string>
|
||||||
<string name="pref_theme_e_jungle">Джунглі</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monet">Моне (Системна)</string>
|
<string name="pref_theme_e_desert">Пустеля</string>
|
||||||
<string name="pref_theme_e_monetlight">Моне (Світла)</string>
|
<string name="pref_theme_e_jungle">Джунглі</string>
|
||||||
<string name="pref_theme_e_monetdark">Моне (Темна)</string>
|
<string name="pref_theme_e_monet">Моне (Системна)</string>
|
||||||
<string name="pref_theme_e_rosepine">Рожева сосна</string>
|
<string name="pref_theme_e_monetlight">Моне (Світла)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Дуже коротка</string>
|
<string name="pref_theme_e_monetdark">Моне (Темна)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Коротка</string>
|
<string name="pref_theme_e_rosepine">Рожева сосна</string>
|
||||||
<string name="pref_swipe_dist_e_default">Звичайна</string>
|
<string name="pref_swipe_dist_e_very_short">Дуже коротка</string>
|
||||||
<string name="pref_swipe_dist_e_far">Далека</string>
|
<string name="pref_swipe_dist_e_short">Коротка</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Дуже далека</string>
|
<string name="pref_swipe_dist_e_default">Звичайна</string>
|
||||||
<string name="pref_key_horizontal_space">Горизонтальна відстань між клавішами</string>
|
<string name="pref_swipe_dist_e_far">Далека</string>
|
||||||
<string name="pref_key_vertical_space">Вертикальна відстань між клавішами</string>
|
<string name="pref_swipe_dist_e_very_far">Дуже далека</string>
|
||||||
<string name="pref_border_config_title">Налаштувати межі</string>
|
<string name="pref_key_horizontal_space">Горизонтальна відстань між клавішами</string>
|
||||||
<string name="pref_border_width_title">Ширина межі</string>
|
<string name="pref_key_vertical_space">Вертикальна відстань між клавішами</string>
|
||||||
<string name="pref_corners_radius_title">Радіус кута</string>
|
<string name="pref_border_config_title">Налаштувати межі</string>
|
||||||
<string name="pref_circle_sensitivity_title">Чутливість до колових жестів</string>
|
<string name="pref_border_width_title">Ширина межі</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">Висока</string>
|
<string name="pref_corners_radius_title">Радіус кута</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Середня</string>
|
<string name="pref_circle_sensitivity_title">Чутливість до колових жестів</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Низька</string>
|
<string name="pref_circle_sensitivity_e_high">Висока</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Вимкнено</string>
|
<string name="pref_circle_sensitivity_e_medium">Середня</string>
|
||||||
<string name="key_action_next">Далі</string>
|
<string name="pref_circle_sensitivity_e_low">Низька</string>
|
||||||
<string name="key_action_done">Готово</string>
|
<string name="pref_circle_sensitivity_e_disabled">Вимкнено</string>
|
||||||
<string name="key_action_go">Іти</string>
|
<string name="key_action_next">Далі</string>
|
||||||
<string name="key_action_prev">Назад</string>
|
<string name="key_action_done">Готово</string>
|
||||||
<string name="key_action_search">Пошук</string>
|
<string name="key_action_go">Іти</string>
|
||||||
<string name="key_action_send">Надіслати</string>
|
<string name="key_action_prev">Назад</string>
|
||||||
<string name="launcher_button_imesettings">Увімкнути клавіатуру</string>
|
<string name="key_action_search">Пошук</string>
|
||||||
<string name="launcher_button_imepicker">Вибрати клавіатуру</string>
|
<string name="key_action_send">Надіслати</string>
|
||||||
<string name="launcher_description">Ця програма є віртуальною клавіатурою. Перейдіть до системних налаштувань, натиснувши кнопку нижче, і ввімкніть Unexpected-Keyboard.</string>
|
<string name="launcher_button_imesettings">Увімкнути клавіатуру</string>
|
||||||
<string name="launcher_sourcecode">Це безкоштовна програма з відкритим кодом. Ви можете знайти початковий код або повідомити про помилки на GitHub.</string>
|
<string name="launcher_button_imepicker">Вибрати клавіатуру</string>
|
||||||
<string name="launcher_tryhere">Після ввімкнення ви можете спробувати клавіатуру тут:</string>
|
<string name="launcher_description">Ця програма є віртуальною клавіатурою. Перейдіть до системних налаштувань, натиснувши кнопку нижче, і ввімкніть Unexpected-Keyboard.</string>
|
||||||
<string name="launcher_tryhere_hint">Спробуйте тут</string>
|
<string name="launcher_sourcecode">Це безкоштовна програма з відкритим кодом. Ви можете знайти початковий код або повідомити про помилки на GitHub.</string>
|
||||||
<string name="key_descr_capslock">Caps lock</string>
|
<string name="launcher_tryhere">Після ввімкнення ви можете спробувати клавіатуру тут:</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere_hint">Спробуйте тут</string>
|
||||||
<string name="key_descr_switch_greekmath">Грецькі та математичні символи</string>
|
<string name="key_descr_capslock">Caps lock</string>
|
||||||
<string name="key_descr_change_method">Переключити клавіатуру</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">Голосове введення</string>
|
<string name="key_descr_switch_greekmath">Грецькі та математичні символи</string>
|
||||||
<string name="key_descr_copy">Копіювати</string>
|
<string name="key_descr_change_method">Переключити клавіатуру</string>
|
||||||
<string name="key_descr_paste">Вставити</string>
|
<string name="key_descr_voice_typing">Голосове введення</string>
|
||||||
<string name="key_descr_cut">Вирізати</string>
|
<string name="key_descr_copy">Копіювати</string>
|
||||||
<string name="key_descr_selectAll">Вибрати все</string>
|
<string name="key_descr_paste">Вставити</string>
|
||||||
<string name="key_descr_shareText">Поділитися текстом</string>
|
<string name="key_descr_cut">Вирізати</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Вставити як звичайний текст</string>
|
<string name="key_descr_selectAll">Вибрати все</string>
|
||||||
<string name="key_descr_undo">Відмінити</string>
|
<string name="key_descr_shareText">Поділитися текстом</string>
|
||||||
<string name="key_descr_redo">Повторити</string>
|
<string name="key_descr_pasteAsPlainText">Вставити як звичайний текст</string>
|
||||||
<string name="key_descr_ª">Жіночий порядковий вказівник</string>
|
<string name="key_descr_undo">Відмінити</string>
|
||||||
<string name="key_descr_º">Чоловічий порядковий вказівник</string>
|
<string name="key_descr_redo">Повторити</string>
|
||||||
<string name="key_descr_superscript">Верхній індекс</string>
|
<string name="key_descr_ª">Жіночий порядковий вказівник</string>
|
||||||
<string name="key_descr_subscript">Нижній індекс</string>
|
<string name="key_descr_º">Чоловічий порядковий вказівник</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_superscript">Верхній індекс</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_subscript">Нижній індекс</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<string name="key_descr_clipboard">Менеджер буфера обміну</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<string name="key_descr_combining">Комбінування діакритики</string>
|
<string name="key_descr_end">End</string>
|
||||||
<string name="key_descr_dead_key">Мертва клавіша</string>
|
<string name="key_descr_clipboard">Менеджер буфера обміну</string>
|
||||||
<string name="key_descr_zwj">З\'єднувач нульової ширини</string>
|
<string name="key_descr_combining">Комбінування діакритики</string>
|
||||||
<string name="key_descr_zwnj">Разділювач нульової ширини</string>
|
<string name="key_descr_dead_key">Мертва клавіша</string>
|
||||||
<string name="key_descr_nbsp">Нерозривний пробіл</string>
|
<string name="key_descr_zwj">З\'єднувач нульової ширини</string>
|
||||||
<string name="key_descr_nnbsp">Вузький нерозривний пробіл</string>
|
<string name="key_descr_zwnj">Разділювач нульової ширини</string>
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<string name="key_descr_nbsp">Нерозривний пробіл</string>
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<string name="key_descr_nnbsp">Вузький нерозривний пробіл</string>
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<string name="clipboard_history_heading">Нещодавно скопійований текст</string>
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<string name="clipboard_pin_heading">Закріплено</string>
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<string name="clipboard_remove_confirm">Видалити цей буфер обміну?</string>
|
<string name="clipboard_history_heading">Нещодавно скопійований текст</string>
|
||||||
<string name="clipboard_remove_confirmed">Так</string>
|
<string name="clipboard_pin_heading">Закріплено</string>
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<string name="clipboard_remove_confirm">Видалити цей буфер обміну?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Так</string>
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (gỡ lỗi)</string>
|
<string name="app_name_debug">Unexpected Keyboard (gỡ lỗi)</string>
|
||||||
<string name="short_description">Bàn phím ảo gọn nhẹ và tôn trọng quyền riêng tư cho Android.</string>
|
<string name="short_description">Bàn phím ảo gọn nhẹ và tôn trọng quyền riêng tư cho Android.</string>
|
||||||
<string name="store_description">Chức năng chính là dễ dàng gõ nhiều ký tự bằng cách kéo phím về góc của nó.\n\nỨng dụng này ban đầu được thiết kế cho các lập trình viên dùng Termux.\nBây giờ đã hoàn hảo cho việc sử dụng hàng ngày.\n\nỨng dụng này không chứa quảng cáo, không cần đến mạng, và có mã nguồn mở.</string>
|
<string name="store_description">"Chức năng chính là dễ dàng gõ nhiều ký tự bằng cách kéo phím về góc của nó.
|
||||||
<string name="settings_activity_label">Cài đặt Unexpected Keyboard</string>
|
|
||||||
<string name="pref_portrait">Trong chế độ chân dung</string>
|
Ứng dụng này ban đầu được thiết kế cho các lập trình viên dùng Termux.
|
||||||
<string name="pref_landscape">Trong chế độ phong cảnh</string>
|
Bây giờ đã hoàn hảo cho việc sử dụng hàng ngày.
|
||||||
<string name="pref_category_layout">Bố cục</string>
|
|
||||||
<string name="pref_label_brightness">Tùy chỉnh độ sáng của phím</string>
|
Ứng dụng này không chứa quảng cáo, không cần đến mạng, và có mã nguồn mở."</string>
|
||||||
<string name="pref_keyboard_opacity">Tùy chỉnh độ trong suốt của bàn phím</string>
|
<string name="settings_activity_label">Cài đặt Unexpected Keyboard</string>
|
||||||
<string name="pref_key_opacity">Tùy chỉnh độ trong suốt của phím</string>
|
<string name="pref_portrait">Trong chế độ chân dung</string>
|
||||||
<string name="pref_key_activated_opacity">Tùy chỉnh độ trong suốt của phím khi nhấn</string>
|
<string name="pref_landscape">Trong chế độ phong cảnh</string>
|
||||||
<string name="pref_layout_e_system">Hệ thống</string>
|
<string name="pref_category_layout">Bố cục</string>
|
||||||
<string name="pref_layout_e_custom">Tùy chỉnh bố cục</string>
|
<string name="pref_label_brightness">Tùy chỉnh độ sáng của phím</string>
|
||||||
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
<string name="pref_keyboard_opacity">Tùy chỉnh độ trong suốt của bàn phím</string>
|
||||||
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
<string name="pref_key_opacity">Tùy chỉnh độ trong suốt của phím</string>
|
||||||
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
<string name="pref_key_activated_opacity">Tùy chỉnh độ trong suốt của phím khi nhấn</string>
|
||||||
<string name="pref_custom_layout_title">Tùy chỉnh bố cục</string>
|
<string name="pref_layout_e_system">Hệ thống</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">Tùy chỉnh bố cục</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<!-- <string name="pref_layouts_add">Add an alternate layout</string> -->
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<!-- <string name="pref_layouts_item">Layout %1$d: %2$s</string> -->
|
||||||
<string name="pref_show_numpad_title">Hiện NumPad</string>
|
<!-- <string name="pref_layouts_remove_custom">Remove layout</string> -->
|
||||||
<string name="pref_show_numpad_never">Không bao giờ</string>
|
<string name="pref_custom_layout_title">Tùy chỉnh bố cục</string>
|
||||||
<string name="pref_show_numpad_landscape">Chỉ trong chế độ phong cảnh</string>
|
<string name="pref_show_numpad_title">Hiện NumPad</string>
|
||||||
<string name="pref_show_numpad_always">Luôn luôn</string>
|
<string name="pref_show_numpad_never">Không bao giờ</string>
|
||||||
<string name="pref_number_row_title">Hiện số dòng</string>
|
<string name="pref_show_numpad_landscape">Chỉ trong chế độ phong cảnh</string>
|
||||||
<string name="pref_number_row_summary">Hiện số dòng trên đầu bàn phím khi NumPad ẩn</string>
|
<string name="pref_show_numpad_always">Luôn luôn</string>
|
||||||
<string name="pref_numpad_layout">Bố cục NumPad</string>
|
<string name="pref_number_row_title">Hiện số dòng</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">Số lớn nhất trước</string>
|
<string name="pref_number_row_summary">Hiện số dòng trên đầu bàn phím khi NumPad ẩn</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Số nhỏ nhất trước</string>
|
<string name="pref_numpad_layout">Bố cục NumPad</string>
|
||||||
<string name="pref_extra_keys_title">Thêm phím vào bàn phím</string>
|
<string name="pref_numpad_layout_e_high_first">Số lớn nhất trước</string>
|
||||||
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
<string name="pref_numpad_layout_e_low_first">Số nhỏ nhất trước</string>
|
||||||
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
<string name="pref_extra_keys_title">Thêm phím vào bàn phím</string>
|
||||||
<string name="pref_category_typing">Gõ</string>
|
<!-- <string name="pref_extra_keys_custom">Add custom keys</string> -->
|
||||||
<string name="pref_swipe_dist_title">Khoảng cách vuốt</string>
|
<!-- <string name="pref_extra_keys_internal">Select keys to add to the keyboard</string> -->
|
||||||
<string name="pref_swipe_dist_summary">Khoảng cách giữa các ký tự ở góc phím (%s)</string>
|
<string name="pref_category_typing">Gõ</string>
|
||||||
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
<string name="pref_swipe_dist_title">Khoảng cách vuốt</string>
|
||||||
<string name="pref_long_interval_title">Khoảng thời gian lặp phím</string>
|
<string name="pref_swipe_dist_summary">Khoảng cách giữa các ký tự ở góc phím (%s)</string>
|
||||||
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
||||||
<string name="pref_lock_double_tap_title">Nhấn hai lần Shift để bật Caps Lock</string>
|
<string name="pref_long_interval_title">Khoảng thời gian lặp phím</string>
|
||||||
<string name="pref_lock_double_tap_summary">Bạn có thể khóa phím hỗ trợ bằng cách giữ vào nó</string>
|
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
||||||
<!-- <string name="pref_category_behavior">Behavior</string> -->
|
<string name="pref_lock_double_tap_title">Nhấn hai lần Shift để bật Caps Lock</string>
|
||||||
<string name="pref_autocapitalisation_title">Tự động viết hoa</string>
|
<string name="pref_lock_double_tap_summary">Bạn có thể khóa phím hỗ trợ bằng cách giữ vào nó</string>
|
||||||
<string name="pref_autocapitalisation_summary">Nhấn Shift ở đầu câu</string>
|
<!-- <string name="pref_category_behavior">Behavior</string> -->
|
||||||
<!-- <string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string> -->
|
<string name="pref_autocapitalisation_title">Tự động viết hoa</string>
|
||||||
<!-- <string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string> -->
|
<string name="pref_autocapitalisation_summary">Nhấn Shift ở đầu câu</string>
|
||||||
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
<!-- <string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string> -->
|
||||||
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
<!-- <string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
<!-- <string name="pref_vibrate_custom">Custom vibration</string> -->
|
||||||
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
<!-- <string name="pref_vibrate_duration_title">Vibration intensity</string> -->
|
||||||
<string name="pref_category_style">Kiểu cách</string>
|
<!-- <string name="pref_pin_entry_enabled_title">Pin entry layout</string> -->
|
||||||
<string name="pref_margin_bottom_title">Căn lề dưới</string>
|
<!-- <string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string> -->
|
||||||
<string name="pref_keyboard_height_title">Chiều cao bàn phím</string>
|
<string name="pref_category_style">Kiểu cách</string>
|
||||||
<string name="pref_horizontal_margin_title">Căn lề chiều ngang</string>
|
<string name="pref_margin_bottom_title">Căn lề dưới</string>
|
||||||
<string name="pref_character_size_title">Kích cỡ ký tự phím</string>
|
<string name="pref_keyboard_height_title">Chiều cao bàn phím</string>
|
||||||
<string name="pref_character_size_summary">Kích cỡ các ký tự hiển thị trên bàn phím (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Căn lề chiều ngang</string>
|
||||||
<string name="pref_theme">Chủ đề</string>
|
<string name="pref_character_size_title">Kích cỡ ký tự phím</string>
|
||||||
<string name="pref_theme_e_system">Hệ thống</string>
|
<string name="pref_character_size_summary">Kích cỡ các ký tự hiển thị trên bàn phím (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Tối</string>
|
<string name="pref_theme">Chủ đề</string>
|
||||||
<string name="pref_theme_e_light">Sáng</string>
|
<string name="pref_theme_e_system">Hệ thống</string>
|
||||||
<string name="pref_theme_e_black">Đen</string>
|
<string name="pref_theme_e_dark">Tối</string>
|
||||||
<!-- <string name="pref_theme_e_altblack">Alternative Black</string> -->
|
<string name="pref_theme_e_light">Sáng</string>
|
||||||
<string name="pref_theme_e_white">Trắng</string>
|
<string name="pref_theme_e_black">Đen</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<!-- <string name="pref_theme_e_altblack">Alternative Black</string> -->
|
||||||
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
<string name="pref_theme_e_white">Trắng</string>
|
||||||
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
<!-- <string name="pref_theme_e_desert">Desert</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
<!-- <string name="pref_theme_e_jungle">Jungle</string> -->
|
||||||
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
||||||
<string name="pref_swipe_dist_e_very_short">Rất gần</string>
|
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
||||||
<string name="pref_swipe_dist_e_short">Gần</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">Trungbình</string>
|
<string name="pref_swipe_dist_e_very_short">Rất gần</string>
|
||||||
<string name="pref_swipe_dist_e_far">Xa</string>
|
<string name="pref_swipe_dist_e_short">Gần</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Rất xa</string>
|
<string name="pref_swipe_dist_e_default">Trungbình</string>
|
||||||
<string name="pref_key_horizontal_space">Khoảng cách giữa các phím theo chiều ngang</string>
|
<string name="pref_swipe_dist_e_far">Xa</string>
|
||||||
<string name="pref_key_vertical_space">Khoảng cách giữa các phím theo chiều dọc</string>
|
<string name="pref_swipe_dist_e_very_far">Rất xa</string>
|
||||||
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
<string name="pref_key_horizontal_space">Khoảng cách giữa các phím theo chiều ngang</string>
|
||||||
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
<string name="pref_key_vertical_space">Khoảng cách giữa các phím theo chiều dọc</string>
|
||||||
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
<!-- <string name="pref_border_config_title">Customize borders</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
<!-- <string name="pref_border_width_title">Border Width</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
<!-- <string name="pref_corners_radius_title">Corner radius</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
||||||
<string name="key_action_next">Tiếp</string>
|
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
||||||
<string name="key_action_done">Xong</string>
|
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
||||||
<string name="key_action_go">Đi</string>
|
<string name="key_action_next">Tiếp</string>
|
||||||
<string name="key_action_prev">Trước</string>
|
<string name="key_action_done">Xong</string>
|
||||||
<string name="key_action_search">Tìm</string>
|
<string name="key_action_go">Đi</string>
|
||||||
<string name="key_action_send">Gửi</string>
|
<string name="key_action_prev">Trước</string>
|
||||||
<!-- <string name="launcher_button_imesettings">Enable keyboard</string> -->
|
<string name="key_action_search">Tìm</string>
|
||||||
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
<string name="key_action_send">Gửi</string>
|
||||||
<!-- <string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string> -->
|
<!-- <string name="launcher_button_imesettings">Enable keyboard</string> -->
|
||||||
<!-- <string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string> -->
|
<!-- <string name="launcher_button_imepicker">Select keyboard</string> -->
|
||||||
<!-- <string name="launcher_tryhere">After enabling, you can try the keyboard here:</string> -->
|
<!-- <string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string> -->
|
||||||
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
<!-- <string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string> -->
|
||||||
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
<!-- <string name="launcher_tryhere">After enabling, you can try the keyboard here:</string> -->
|
||||||
<!-- <string name="key_descr_compose">Compose</string> -->
|
<!-- <string name="launcher_tryhere_hint">Try here</string> -->
|
||||||
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
<!-- <string name="key_descr_capslock">Caps lock</string> -->
|
||||||
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
<!-- <string name="key_descr_compose">Compose</string> -->
|
||||||
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
<!-- <string name="key_descr_switch_greekmath">Greek & math symbols</string> -->
|
||||||
<!-- <string name="key_descr_copy">Copy</string> -->
|
<!-- <string name="key_descr_change_method">Switch keyboard</string> -->
|
||||||
<!-- <string name="key_descr_paste">Paste</string> -->
|
<!-- <string name="key_descr_voice_typing">Voice typing</string> -->
|
||||||
<!-- <string name="key_descr_cut">Cut</string> -->
|
<!-- <string name="key_descr_copy">Copy</string> -->
|
||||||
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
<!-- <string name="key_descr_paste">Paste</string> -->
|
||||||
<!-- <string name="key_descr_shareText">Share text</string> -->
|
<!-- <string name="key_descr_cut">Cut</string> -->
|
||||||
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
<!-- <string name="key_descr_selectAll">Select all</string> -->
|
||||||
<!-- <string name="key_descr_undo">Undo</string> -->
|
<!-- <string name="key_descr_shareText">Share text</string> -->
|
||||||
<!-- <string name="key_descr_redo">Redo</string> -->
|
<!-- <string name="key_descr_pasteAsPlainText">Paste as plain text</string> -->
|
||||||
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_undo">Undo</string> -->
|
||||||
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
<!-- <string name="key_descr_redo">Redo</string> -->
|
||||||
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
<!-- <string name="key_descr_ª">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
<!-- <string name="key_descr_º">Ordinal Indicator</string> -->
|
||||||
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
<!-- <string name="key_descr_superscript">Superscript</string> -->
|
||||||
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
<!-- <string name="key_descr_subscript">Subscript</string> -->
|
||||||
<!-- <string name="key_descr_home">Home</string> -->
|
<!-- <string name="key_descr_page_up">Page Up</string> -->
|
||||||
<!-- <string name="key_descr_end">End</string> -->
|
<!-- <string name="key_descr_page_down">Page Down</string> -->
|
||||||
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
<!-- <string name="key_descr_home">Home</string> -->
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<!-- <string name="key_descr_end">End</string> -->
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
||||||
|
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (debug)</string>
|
||||||
<string name="short_description">适用于 Android 的轻量级、注重隐私的虚拟键盘。</string>
|
<string name="short_description">适用于 Android 的轻量级、注重隐私的虚拟键盘。</string>
|
||||||
<string name="store_description">此应用的主要功能是,通过将按键沿四角滑动,您可以输入更多字符。\n\n此应用最初是为使用 Termux 的程序员而设计的。\n现在对于日常使用来说也很完美。\n\n此应用没有广告,不会发送任何网络请求,而且是开源的。</string>
|
<string name="store_description">"此应用的主要功能是,通过将按键沿四角滑动,您可以输入更多字符。
|
||||||
<string name="settings_activity_label">Unexpected Keyboard 设置</string>
|
|
||||||
<string name="pref_portrait">在竖屏模式下</string>
|
此应用最初是为使用 Termux 的程序员而设计的。
|
||||||
<string name="pref_landscape">在横屏模式下</string>
|
现在对于日常使用来说也很完美。
|
||||||
<string name="pref_category_layout">布局</string>
|
|
||||||
<string name="pref_label_brightness">调整字母亮度</string>
|
此应用没有广告,不会发送任何网络请求,而且是开源的。"</string>
|
||||||
<string name="pref_keyboard_opacity">调整键盘背景透明度</string>
|
<string name="settings_activity_label">Unexpected Keyboard 设置</string>
|
||||||
<string name="pref_key_opacity">调整按键透明度</string>
|
<string name="pref_portrait">在竖屏模式下</string>
|
||||||
<string name="pref_key_activated_opacity">调整按下的按键的透明度</string>
|
<string name="pref_landscape">在横屏模式下</string>
|
||||||
<string name="pref_layout_e_system">系统设置</string>
|
<string name="pref_category_layout">布局</string>
|
||||||
<string name="pref_layout_e_custom">自定义布局</string>
|
<string name="pref_label_brightness">调整字母亮度</string>
|
||||||
<string name="pref_layouts_add">添加其他布局</string>
|
<string name="pref_keyboard_opacity">调整键盘背景透明度</string>
|
||||||
<string name="pref_layouts_item">布局 %1$d:%2$s</string>
|
<string name="pref_key_opacity">调整按键透明度</string>
|
||||||
<string name="pref_layouts_remove_custom">移除布局</string>
|
<string name="pref_key_activated_opacity">调整按下的按键的透明度</string>
|
||||||
<string name="pref_custom_layout_title">自定义布局</string>
|
<string name="pref_layout_e_system">系统设置</string>
|
||||||
<!-- <string name="pref_show_number_row_no_number_row">No number row</string> -->
|
<string name="pref_layout_e_custom">自定义布局</string>
|
||||||
<!-- <string name="pref_show_number_row_no_symbols">Number row without symbols</string> -->
|
<string name="pref_layouts_add">添加其他布局</string>
|
||||||
<!-- <string name="pref_show_number_row_symbols">Number row with symbols</string> -->
|
<string name="pref_layouts_item">布局 %1$d:%2$s</string>
|
||||||
<string name="pref_show_numpad_title">显示数字小键盘</string>
|
<string name="pref_layouts_remove_custom">移除布局</string>
|
||||||
<string name="pref_show_numpad_never">从不</string>
|
<string name="pref_custom_layout_title">自定义布局</string>
|
||||||
<string name="pref_show_numpad_landscape">只在横屏显示</string>
|
<string name="pref_show_numpad_title">显示数字小键盘</string>
|
||||||
<string name="pref_show_numpad_always">一直显示</string>
|
<string name="pref_show_numpad_never">从不</string>
|
||||||
<string name="pref_number_row_title">显示数字行</string>
|
<string name="pref_show_numpad_landscape">只在横屏显示</string>
|
||||||
<string name="pref_number_row_summary">当数字小键盘隐藏时,在键盘上方显示数字按键</string>
|
<string name="pref_show_numpad_always">一直显示</string>
|
||||||
<string name="pref_numpad_layout">数字小键盘布局</string>
|
<string name="pref_number_row_title">显示数字行</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">大数字在上方</string>
|
<string name="pref_number_row_summary">当数字小键盘隐藏时,在键盘上方显示数字按键</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">小数字在上方</string>
|
<string name="pref_numpad_layout">数字小键盘布局</string>
|
||||||
<string name="pref_extra_keys_title">选择要显示的按键</string>
|
<string name="pref_numpad_layout_e_high_first">大数字在上方</string>
|
||||||
<string name="pref_extra_keys_custom">添加自定义按键</string>
|
<string name="pref_numpad_layout_e_low_first">小数字在上方</string>
|
||||||
<string name="pref_extra_keys_internal">选择要添加到键盘的按键</string>
|
<string name="pref_extra_keys_title">选择要显示的按键</string>
|
||||||
<string name="pref_category_typing">输入</string>
|
<string name="pref_extra_keys_custom">添加自定义按键</string>
|
||||||
<string name="pref_swipe_dist_title">滑动触发距离</string>
|
<string name="pref_extra_keys_internal">选择要添加到键盘的按键</string>
|
||||||
<string name="pref_swipe_dist_summary">输入按键四角的符号需要滑动的距离 (%s)</string>
|
<string name="pref_category_typing">输入</string>
|
||||||
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
<string name="pref_swipe_dist_title">滑动触发距离</string>
|
||||||
<string name="pref_long_interval_title">长按后每次重复输入的时间间隔</string>
|
<string name="pref_swipe_dist_summary">输入按键四角的符号需要滑动的距离 (%s)</string>
|
||||||
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
<!-- <string name="pref_long_timeout_title">Long press timeout</string> -->
|
||||||
<string name="pref_lock_double_tap_title">双击 Shift 键锁定大写</string>
|
<string name="pref_long_interval_title">长按后每次重复输入的时间间隔</string>
|
||||||
<string name="pref_lock_double_tap_summary">任何时候长按修饰键均可将其锁定</string>
|
<!-- <string name="pref_keyrepeat_enabled">Key repeat on long press</string> -->
|
||||||
<string name="pref_category_behavior">行为</string>
|
<string name="pref_lock_double_tap_title">双击 Shift 键锁定大写</string>
|
||||||
<string name="pref_autocapitalisation_title">句首自动大写</string>
|
<string name="pref_lock_double_tap_summary">任何时候长按修饰键均可将其锁定</string>
|
||||||
<string name="pref_autocapitalisation_summary">在句子的开头自动按下Shift</string>
|
<string name="pref_category_behavior">行为</string>
|
||||||
<string name="pref_switch_input_immediate_title">切换到最近使用的键盘</string>
|
<string name="pref_autocapitalisation_title">句首自动大写</string>
|
||||||
<string name="pref_switch_input_immediate_summary">切换键盘按钮的行为</string>
|
<string name="pref_autocapitalisation_summary">在句子的开头自动按下Shift</string>
|
||||||
<string name="pref_vibrate_custom">自定义振动</string>
|
<string name="pref_switch_input_immediate_title">切换到最近使用的键盘</string>
|
||||||
<string name="pref_vibrate_duration_title">振动强度</string>
|
<string name="pref_switch_input_immediate_summary">切换键盘按钮的行为</string>
|
||||||
<string name="pref_pin_entry_enabled_title">数字输入布局</string>
|
<string name="pref_vibrate_custom">自定义振动</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">输入数字、日期与电话号码时</string>
|
<string name="pref_vibrate_duration_title">振动强度</string>
|
||||||
<string name="pref_category_style">样式</string>
|
<string name="pref_pin_entry_enabled_title">数字输入布局</string>
|
||||||
<string name="pref_margin_bottom_title">键盘下边距</string>
|
<string name="pref_pin_entry_enabled_summary">输入数字、日期与电话号码时</string>
|
||||||
<string name="pref_keyboard_height_title">键盘高度</string>
|
<string name="pref_category_style">样式</string>
|
||||||
<string name="pref_horizontal_margin_title">键盘左右边距</string>
|
<string name="pref_margin_bottom_title">键盘下边距</string>
|
||||||
<string name="pref_character_size_title">字符大小</string>
|
<string name="pref_keyboard_height_title">键盘高度</string>
|
||||||
<string name="pref_character_size_summary">按键上显示的字符的大小 (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">键盘左右边距</string>
|
||||||
<string name="pref_theme">主题</string>
|
<string name="pref_character_size_title">字符大小</string>
|
||||||
<string name="pref_theme_e_system">跟随系统设置</string>
|
<string name="pref_character_size_summary">按键上显示的字符的大小 (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">暗色</string>
|
<string name="pref_theme">主题</string>
|
||||||
<string name="pref_theme_e_light">亮色</string>
|
<string name="pref_theme_e_system">跟随系统设置</string>
|
||||||
<string name="pref_theme_e_black">黑色</string>
|
<string name="pref_theme_e_dark">暗色</string>
|
||||||
<string name="pref_theme_e_altblack">黑色带边框</string>
|
<string name="pref_theme_e_light">亮色</string>
|
||||||
<string name="pref_theme_e_white">白色</string>
|
<string name="pref_theme_e_black">黑色</string>
|
||||||
<string name="pref_theme_e_epaper">白色带边框</string>
|
<string name="pref_theme_e_altblack">黑色带边框</string>
|
||||||
<string name="pref_theme_e_desert">沙漠</string>
|
<string name="pref_theme_e_white">白色</string>
|
||||||
<string name="pref_theme_e_jungle">雨林</string>
|
<string name="pref_theme_e_epaper">白色带边框</string>
|
||||||
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
<string name="pref_theme_e_desert">沙漠</string>
|
||||||
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
<string name="pref_theme_e_jungle">雨林</string>
|
||||||
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
<!-- <string name="pref_theme_e_monet">Monet (System)</string> -->
|
||||||
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
<!-- <string name="pref_theme_e_monetlight">Monet (Light)</string> -->
|
||||||
<string name="pref_swipe_dist_e_very_short">非常短</string>
|
<!-- <string name="pref_theme_e_monetdark">Monet (Dark)</string> -->
|
||||||
<string name="pref_swipe_dist_e_short">短</string>
|
<!-- <string name="pref_theme_e_rosepine">Rosé Pine</string> -->
|
||||||
<string name="pref_swipe_dist_e_default">中(默认)</string>
|
<string name="pref_swipe_dist_e_very_short">非常短</string>
|
||||||
<string name="pref_swipe_dist_e_far">长</string>
|
<string name="pref_swipe_dist_e_short">短</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">非常长</string>
|
<string name="pref_swipe_dist_e_default">中(默认)</string>
|
||||||
<string name="pref_key_horizontal_space">按键的左右边距</string>
|
<string name="pref_swipe_dist_e_far">长</string>
|
||||||
<string name="pref_key_vertical_space">按键的上下边距</string>
|
<string name="pref_swipe_dist_e_very_far">非常长</string>
|
||||||
<string name="pref_border_config_title">自定义边界</string>
|
<string name="pref_key_horizontal_space">按键的左右边距</string>
|
||||||
<string name="pref_border_width_title">边界宽度</string>
|
<string name="pref_key_vertical_space">按键的上下边距</string>
|
||||||
<string name="pref_corners_radius_title">圆角半径</string>
|
<string name="pref_border_config_title">自定义边界</string>
|
||||||
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
<string name="pref_border_width_title">边界宽度</string>
|
||||||
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
<string name="pref_corners_radius_title">圆角半径</string>
|
||||||
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
<!-- <string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_high">High</string> -->
|
||||||
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
<!-- <string name="pref_circle_sensitivity_e_medium">Medium</string> -->
|
||||||
<string name="key_action_next">下一项</string>
|
<!-- <string name="pref_circle_sensitivity_e_low">Low</string> -->
|
||||||
<string name="key_action_done">完成</string>
|
<!-- <string name="pref_circle_sensitivity_e_disabled">Disabled</string> -->
|
||||||
<string name="key_action_go">前往</string>
|
<string name="key_action_next">下一项</string>
|
||||||
<string name="key_action_prev">上一项</string>
|
<string name="key_action_done">完成</string>
|
||||||
<string name="key_action_search">搜索</string>
|
<string name="key_action_go">前往</string>
|
||||||
<string name="key_action_send">发送</string>
|
<string name="key_action_prev">上一项</string>
|
||||||
<string name="launcher_button_imesettings">启用键盘</string>
|
<string name="key_action_search">搜索</string>
|
||||||
<string name="launcher_button_imepicker">选择键盘</string>
|
<string name="key_action_send">发送</string>
|
||||||
<string name="launcher_description">这是一个虚拟键盘软件。点击按钮进入系统设置,然后启用 Unexpected-Keyboard 即可使用。</string>
|
<string name="launcher_button_imesettings">启用键盘</string>
|
||||||
<string name="launcher_sourcecode">这是一个免费且开源的软件。你可以在 GitHub 上找到源代码或反馈问题。</string>
|
<string name="launcher_button_imepicker">选择键盘</string>
|
||||||
<string name="launcher_tryhere">启用键盘后,可以在这里测试效果:</string>
|
<string name="launcher_description">这是一个虚拟键盘软件。点击按钮进入系统设置,然后启用 Unexpected-Keyboard 即可使用。</string>
|
||||||
<string name="launcher_tryhere_hint">在这里测试</string>
|
<string name="launcher_sourcecode">这是一个免费且开源的软件。你可以在 GitHub 上找到源代码或反馈问题。</string>
|
||||||
<string name="key_descr_capslock">大写锁定</string>
|
<string name="launcher_tryhere">启用键盘后,可以在这里测试效果:</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere_hint">在这里测试</string>
|
||||||
<string name="key_descr_switch_greekmath">希腊 & 数学符号</string>
|
<string name="key_descr_capslock">大写锁定</string>
|
||||||
<string name="key_descr_change_method">切换键盘</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">语音输入</string>
|
<string name="key_descr_switch_greekmath">希腊 & 数学符号</string>
|
||||||
<string name="key_descr_copy">复制</string>
|
<string name="key_descr_change_method">切换键盘</string>
|
||||||
<string name="key_descr_paste">粘贴</string>
|
<string name="key_descr_voice_typing">语音输入</string>
|
||||||
<string name="key_descr_cut">剪切</string>
|
<string name="key_descr_copy">复制</string>
|
||||||
<string name="key_descr_selectAll">全选</string>
|
<string name="key_descr_paste">粘贴</string>
|
||||||
<string name="key_descr_shareText">分享文本</string>
|
<string name="key_descr_cut">剪切</string>
|
||||||
<string name="key_descr_pasteAsPlainText">粘贴为纯文本</string>
|
<string name="key_descr_selectAll">全选</string>
|
||||||
<string name="key_descr_undo">撤销</string>
|
<string name="key_descr_shareText">分享文本</string>
|
||||||
<string name="key_descr_redo">重做</string>
|
<string name="key_descr_pasteAsPlainText">粘贴为纯文本</string>
|
||||||
<string name="key_descr_ª">次序标志</string>
|
<string name="key_descr_undo">撤销</string>
|
||||||
<string name="key_descr_º">次序标志</string>
|
<string name="key_descr_redo">重做</string>
|
||||||
<string name="key_descr_superscript">上标</string>
|
<string name="key_descr_ª">次序标志</string>
|
||||||
<string name="key_descr_subscript">下标</string>
|
<string name="key_descr_º">次序标志</string>
|
||||||
<string name="key_descr_page_up">上一页</string>
|
<string name="key_descr_superscript">上标</string>
|
||||||
<string name="key_descr_page_down">下一页</string>
|
<string name="key_descr_subscript">下标</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">上一页</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">下一页</string>
|
||||||
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
<string name="key_descr_home">Home</string>
|
||||||
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
<string name="key_descr_end">End</string>
|
||||||
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
<!-- <string name="key_descr_clipboard">Clipboard manager</string> -->
|
||||||
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
<!-- <string name="key_descr_combining">Combining diacritic</string> -->
|
||||||
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
<!-- <string name="key_descr_dead_key">Dead key</string> -->
|
||||||
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
<!-- <string name="key_descr_zwj">Zero width joiner</string> -->
|
||||||
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
<!-- <string name="key_descr_zwnj">Zero width non-joiner</string> -->
|
||||||
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
<!-- <string name="key_descr_nbsp">Non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
<!-- <string name="key_descr_nnbsp">Narrow non-breaking space</string> -->
|
||||||
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
<!-- <string name="key_descr_delete_word">Delete a word</string> -->
|
||||||
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
<!-- <string name="key_descr_forward_delete_word">Delete a word on the right</string> -->
|
||||||
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
<!-- <string name="key_descr_gesture">Gesture</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
<!-- <string name="clipboard_history_heading">Recently copied text</string> -->
|
||||||
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
<!-- <string name="clipboard_pin_heading">Pinned</string> -->
|
||||||
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
<!-- <string name="clipboard_remove_confirm">Remove this clipboard?</string> -->
|
||||||
|
<!-- <string name="clipboard_remove_confirmed">Yes</string> -->
|
||||||
|
<!-- <string name="toast_no_voice_input">No voice typing app installed</string> -->
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,15 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string-array name="pref_show_number_row_values">
|
|
||||||
<item>no_number_row</item>
|
|
||||||
<item>no_symbols</item>
|
|
||||||
<item>symbols</item>
|
|
||||||
</string-array>
|
|
||||||
<string-array name="pref_show_number_row_entries">
|
|
||||||
<item>@string/pref_show_number_row_no_number_row</item>
|
|
||||||
<item>@string/pref_show_number_row_no_symbols</item>
|
|
||||||
<item>@string/pref_show_number_row_symbols</item>
|
|
||||||
</string-array>
|
|
||||||
<string-array name="pref_show_numpad_values">
|
<string-array name="pref_show_numpad_values">
|
||||||
<item>never</item>
|
<item>never</item>
|
||||||
<item>landscape</item>
|
<item>landscape</item>
|
||||||
|
@@ -1,136 +1,138 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name_release">Unexpected Keyboard</string>
|
<string name="app_name_release">Unexpected Keyboard</string>
|
||||||
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
<string name="app_name_debug">Unexpected Keyboard (Debug)</string>
|
||||||
<string name="short_description">Lightweight and privacy-conscious virtual keyboard for Android.</string>
|
<string name="short_description">Lightweight and privacy-conscious virtual keyboard for Android.</string>
|
||||||
<string name="store_description">The main feature is that you can type more characters by swiping the keys towards the corners.\n\nThis application was originally designed for programmers using Termux.\nNow perfect for everyday use.\n\nThis application contains no ads, doesn\'t make any network requests and is Open Source.</string>
|
<string name="store_description">"The main feature is that you can type more characters by swiping the keys towards the corners.
|
||||||
<string name="settings_activity_label">Unexpected Keyboard Settings</string>
|
|
||||||
<string name="pref_portrait">In portrait mode</string>
|
This application was originally designed for programmers using Termux.
|
||||||
<string name="pref_landscape">In landscape mode</string>
|
Now perfect for everyday use.
|
||||||
<string name="pref_category_layout">Layout</string>
|
|
||||||
<string name="pref_label_brightness">Adjust label brightness</string>
|
This application contains no ads, doesn't make any network requests and is Open Source."</string>
|
||||||
<string name="pref_keyboard_opacity">Adjust keyboard background opacity</string>
|
<string name="settings_activity_label">Unexpected Keyboard Settings</string>
|
||||||
<string name="pref_key_opacity">Adjust key opacity</string>
|
<string name="pref_portrait">In portrait mode</string>
|
||||||
<string name="pref_key_activated_opacity">Adjust pressed key opacity</string>
|
<string name="pref_landscape">In landscape mode</string>
|
||||||
<string name="pref_layout_e_system">System settings</string>
|
<string name="pref_category_layout">Layout</string>
|
||||||
<string name="pref_layout_e_custom">Custom layout</string>
|
<string name="pref_label_brightness">Adjust label brightness</string>
|
||||||
<string name="pref_layouts_add">Add an alternate layout</string>
|
<string name="pref_keyboard_opacity">Adjust keyboard background opacity</string>
|
||||||
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
<string name="pref_key_opacity">Adjust key opacity</string>
|
||||||
<string name="pref_layouts_remove_custom">Remove layout</string>
|
<string name="pref_key_activated_opacity">Adjust pressed key opacity</string>
|
||||||
<string name="pref_custom_layout_title">Custom layout</string>
|
<string name="pref_layout_e_system">System settings</string>
|
||||||
<string name="pref_show_number_row_no_number_row">No number row</string>
|
<string name="pref_layout_e_custom">Custom layout</string>
|
||||||
<string name="pref_show_number_row_no_symbols">Number row without symbols</string>
|
<string name="pref_layouts_add">Add an alternate layout</string>
|
||||||
<string name="pref_show_number_row_symbols">Number row with symbols</string>
|
<string name="pref_layouts_item">Layout %1$d: %2$s</string>
|
||||||
<string name="pref_show_numpad_title">Show NumPad</string>
|
<string name="pref_layouts_remove_custom">Remove layout</string>
|
||||||
<string name="pref_show_numpad_never">Never</string>
|
<string name="pref_custom_layout_title">Custom layout</string>
|
||||||
<string name="pref_show_numpad_landscape">Only in landscape mode</string>
|
<string name="pref_show_numpad_title">Show NumPad</string>
|
||||||
<string name="pref_show_numpad_always">Always</string>
|
<string name="pref_show_numpad_never">Never</string>
|
||||||
<string name="pref_number_row_title">Show number row</string>
|
<string name="pref_show_numpad_landscape">Only in landscape mode</string>
|
||||||
<string name="pref_number_row_summary">Add a number row at the top of the keyboard when the numpad is hidden</string>
|
<string name="pref_show_numpad_always">Always</string>
|
||||||
<string name="pref_numpad_layout">NumPad layout</string>
|
<string name="pref_number_row_title">Show number row</string>
|
||||||
<string name="pref_numpad_layout_e_high_first">High digits first</string>
|
<string name="pref_number_row_summary">Add a number row at the top of the keyboard when the numpad is hidden</string>
|
||||||
<string name="pref_numpad_layout_e_low_first">Low digits first</string>
|
<string name="pref_numpad_layout">NumPad layout</string>
|
||||||
<string name="pref_extra_keys_title">Add keys to the keyboard</string>
|
<string name="pref_numpad_layout_e_high_first">High digits first</string>
|
||||||
<string name="pref_extra_keys_custom">Add custom keys</string>
|
<string name="pref_numpad_layout_e_low_first">Low digits first</string>
|
||||||
<string name="pref_extra_keys_internal">Select keys to add to the keyboard</string>
|
<string name="pref_extra_keys_title">Add keys to the keyboard</string>
|
||||||
<string name="pref_category_typing">Typing</string>
|
<string name="pref_extra_keys_custom">Add custom keys</string>
|
||||||
<string name="pref_swipe_dist_title">Swiping distance</string>
|
<string name="pref_extra_keys_internal">Select keys to add to the keyboard</string>
|
||||||
<string name="pref_swipe_dist_summary">Distance of characters in the corners of the keys (%s)</string>
|
<string name="pref_category_typing">Typing</string>
|
||||||
<string name="pref_long_timeout_title">Long press timeout</string>
|
<string name="pref_swipe_dist_title">Swiping distance</string>
|
||||||
<string name="pref_long_interval_title">Key repeat interval</string>
|
<string name="pref_swipe_dist_summary">Distance of characters in the corners of the keys (%s)</string>
|
||||||
<string name="pref_keyrepeat_enabled">Key repeat on long press</string>
|
<string name="pref_long_timeout_title">Long press timeout</string>
|
||||||
<string name="pref_lock_double_tap_title">Double tap on shift for caps lock</string>
|
<string name="pref_long_interval_title">Key repeat interval</string>
|
||||||
<string name="pref_lock_double_tap_summary">You can lock any modifier by holding it</string>
|
<string name="pref_keyrepeat_enabled">Key repeat on long press</string>
|
||||||
<string name="pref_category_behavior">Behavior</string>
|
<string name="pref_lock_double_tap_title">Double tap on shift for caps lock</string>
|
||||||
<string name="pref_autocapitalisation_title">Automatic capitalisation</string>
|
<string name="pref_lock_double_tap_summary">You can lock any modifier by holding it</string>
|
||||||
<string name="pref_autocapitalisation_summary">Press Shift at the beginning of a sentence</string>
|
<string name="pref_category_behavior">Behavior</string>
|
||||||
<string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string>
|
<string name="pref_autocapitalisation_title">Automatic capitalisation</string>
|
||||||
<string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string>
|
<string name="pref_autocapitalisation_summary">Press Shift at the beginning of a sentence</string>
|
||||||
<string name="pref_vibrate_custom">Custom vibration</string>
|
<string name="pref_switch_input_immediate_title">Switch to the last used keyboard</string>
|
||||||
<string name="pref_vibrate_duration_title">Vibration intensity</string>
|
<string name="pref_switch_input_immediate_summary">Behavior of the keyboard-switching key</string>
|
||||||
<string name="pref_pin_entry_enabled_title">Pin entry layout</string>
|
<string name="pref_vibrate_custom">Custom vibration</string>
|
||||||
<string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string>
|
<string name="pref_vibrate_duration_title">Vibration intensity</string>
|
||||||
<string name="pref_category_style">Style</string>
|
<string name="pref_pin_entry_enabled_title">Pin entry layout</string>
|
||||||
<string name="pref_margin_bottom_title">Margin bottom</string>
|
<string name="pref_pin_entry_enabled_summary">When typing numbers, dates and phone numbers</string>
|
||||||
<string name="pref_keyboard_height_title">Keyboard height</string>
|
<string name="pref_category_style">Style</string>
|
||||||
<string name="pref_horizontal_margin_title">Horizontal margin</string>
|
<string name="pref_margin_bottom_title">Margin bottom</string>
|
||||||
<string name="pref_character_size_title">Label size</string>
|
<string name="pref_keyboard_height_title">Keyboard height</string>
|
||||||
<string name="pref_character_size_summary">Size of characters displayed on the keyboard (%.2fx)</string>
|
<string name="pref_horizontal_margin_title">Horizontal margin</string>
|
||||||
<string name="pref_theme">Theme</string>
|
<string name="pref_character_size_title">Label size</string>
|
||||||
<string name="pref_theme_e_system">System settings</string>
|
<string name="pref_character_size_summary">Size of characters displayed on the keyboard (%.2fx)</string>
|
||||||
<string name="pref_theme_e_dark">Dark</string>
|
<string name="pref_theme">Theme</string>
|
||||||
<string name="pref_theme_e_light">Light</string>
|
<string name="pref_theme_e_system">System settings</string>
|
||||||
<string name="pref_theme_e_black">Black</string>
|
<string name="pref_theme_e_dark">Dark</string>
|
||||||
<string name="pref_theme_e_altblack">Alternative Black</string>
|
<string name="pref_theme_e_light">Light</string>
|
||||||
<string name="pref_theme_e_white">White</string>
|
<string name="pref_theme_e_black">Black</string>
|
||||||
<string name="pref_theme_e_epaper">ePaper</string>
|
<string name="pref_theme_e_altblack">Alternative Black</string>
|
||||||
<string name="pref_theme_e_desert">Desert</string>
|
<string name="pref_theme_e_white">White</string>
|
||||||
<string name="pref_theme_e_jungle">Jungle</string>
|
<string name="pref_theme_e_epaper">ePaper</string>
|
||||||
<string name="pref_theme_e_monet">Monet (System)</string>
|
<string name="pref_theme_e_desert">Desert</string>
|
||||||
<string name="pref_theme_e_monetlight">Monet (Light)</string>
|
<string name="pref_theme_e_jungle">Jungle</string>
|
||||||
<string name="pref_theme_e_monetdark">Monet (Dark)</string>
|
<string name="pref_theme_e_monet">Monet (System)</string>
|
||||||
<string name="pref_theme_e_rosepine">Rosé Pine</string>
|
<string name="pref_theme_e_monetlight">Monet (Light)</string>
|
||||||
<string name="pref_swipe_dist_e_very_short">Very short</string>
|
<string name="pref_theme_e_monetdark">Monet (Dark)</string>
|
||||||
<string name="pref_swipe_dist_e_short">Short</string>
|
<string name="pref_theme_e_rosepine">Rosé Pine</string>
|
||||||
<string name="pref_swipe_dist_e_default">Normal</string>
|
<string name="pref_swipe_dist_e_very_short">Very short</string>
|
||||||
<string name="pref_swipe_dist_e_far">Far</string>
|
<string name="pref_swipe_dist_e_short">Short</string>
|
||||||
<string name="pref_swipe_dist_e_very_far">Very far</string>
|
<string name="pref_swipe_dist_e_default">Normal</string>
|
||||||
<string name="pref_key_horizontal_space">Horizontal spacing between the keys</string>
|
<string name="pref_swipe_dist_e_far">Far</string>
|
||||||
<string name="pref_key_vertical_space">Vertical spacing between the keys</string>
|
<string name="pref_swipe_dist_e_very_far">Very far</string>
|
||||||
<string name="pref_border_config_title">Customize borders</string>
|
<string name="pref_key_horizontal_space">Horizontal spacing between the keys</string>
|
||||||
<string name="pref_border_width_title">Border Width</string>
|
<string name="pref_key_vertical_space">Vertical spacing between the keys</string>
|
||||||
<string name="pref_corners_radius_title">Corner radius</string>
|
<string name="pref_border_config_title">Customize borders</string>
|
||||||
<string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string>
|
<string name="pref_border_width_title">Border Width</string>
|
||||||
<string name="pref_circle_sensitivity_e_high">High</string>
|
<string name="pref_corners_radius_title">Corner radius</string>
|
||||||
<string name="pref_circle_sensitivity_e_medium">Medium</string>
|
<string name="pref_circle_sensitivity_title">Circle gesture sensitivity</string>
|
||||||
<string name="pref_circle_sensitivity_e_low">Low</string>
|
<string name="pref_circle_sensitivity_e_high">High</string>
|
||||||
<string name="pref_circle_sensitivity_e_disabled">Disabled</string>
|
<string name="pref_circle_sensitivity_e_medium">Medium</string>
|
||||||
<string name="key_action_next">Next</string>
|
<string name="pref_circle_sensitivity_e_low">Low</string>
|
||||||
<string name="key_action_done">Done</string>
|
<string name="pref_circle_sensitivity_e_disabled">Disabled</string>
|
||||||
<string name="key_action_go">Go</string>
|
<string name="key_action_next">Next</string>
|
||||||
<string name="key_action_prev">Prev</string>
|
<string name="key_action_done">Done</string>
|
||||||
<string name="key_action_search">Search</string>
|
<string name="key_action_go">Go</string>
|
||||||
<string name="key_action_send">Send</string>
|
<string name="key_action_prev">Prev</string>
|
||||||
<string name="launcher_button_imesettings">Enable keyboard</string>
|
<string name="key_action_search">Search</string>
|
||||||
<string name="launcher_button_imepicker">Select keyboard</string>
|
<string name="key_action_send">Send</string>
|
||||||
<string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string>
|
<string name="launcher_button_imesettings">Enable keyboard</string>
|
||||||
<string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string>
|
<string name="launcher_button_imepicker">Select keyboard</string>
|
||||||
<string name="launcher_tryhere">After enabling, you can try the keyboard here:</string>
|
<string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string>
|
||||||
<string name="launcher_tryhere_hint">Try here</string>
|
<string name="launcher_sourcecode">This is a free and open source application. You can find the source code or report bugs on GitHub.</string>
|
||||||
<string name="key_descr_capslock">Caps lock</string>
|
<string name="launcher_tryhere">After enabling, you can try the keyboard here:</string>
|
||||||
<string name="key_descr_compose">Compose</string>
|
<string name="launcher_tryhere_hint">Try here</string>
|
||||||
<string name="key_descr_switch_greekmath">Greek & math symbols</string>
|
<string name="key_descr_capslock">Caps lock</string>
|
||||||
<string name="key_descr_change_method">Switch keyboard</string>
|
<string name="key_descr_compose">Compose</string>
|
||||||
<string name="key_descr_voice_typing">Voice typing</string>
|
<string name="key_descr_switch_greekmath">Greek & math symbols</string>
|
||||||
<string name="key_descr_copy">Copy</string>
|
<string name="key_descr_change_method">Switch keyboard</string>
|
||||||
<string name="key_descr_paste">Paste</string>
|
<string name="key_descr_voice_typing">Voice typing</string>
|
||||||
<string name="key_descr_cut">Cut</string>
|
<string name="key_descr_copy">Copy</string>
|
||||||
<string name="key_descr_selectAll">Select all</string>
|
<string name="key_descr_paste">Paste</string>
|
||||||
<string name="key_descr_shareText">Share text</string>
|
<string name="key_descr_cut">Cut</string>
|
||||||
<string name="key_descr_pasteAsPlainText">Paste as plain text</string>
|
<string name="key_descr_selectAll">Select all</string>
|
||||||
<string name="key_descr_undo">Undo</string>
|
<string name="key_descr_shareText">Share text</string>
|
||||||
<string name="key_descr_redo">Redo</string>
|
<string name="key_descr_pasteAsPlainText">Paste as plain text</string>
|
||||||
<string name="key_descr_ª">Ordinal Indicator</string>
|
<string name="key_descr_undo">Undo</string>
|
||||||
<string name="key_descr_º">Ordinal Indicator</string>
|
<string name="key_descr_redo">Redo</string>
|
||||||
<string name="key_descr_superscript">Superscript</string>
|
<string name="key_descr_ª">Ordinal Indicator</string>
|
||||||
<string name="key_descr_subscript">Subscript</string>
|
<string name="key_descr_º">Ordinal Indicator</string>
|
||||||
<string name="key_descr_page_up">Page Up</string>
|
<string name="key_descr_superscript">Superscript</string>
|
||||||
<string name="key_descr_page_down">Page Down</string>
|
<string name="key_descr_subscript">Subscript</string>
|
||||||
<string name="key_descr_home">Home</string>
|
<string name="key_descr_page_up">Page Up</string>
|
||||||
<string name="key_descr_end">End</string>
|
<string name="key_descr_page_down">Page Down</string>
|
||||||
<string name="key_descr_clipboard">Clipboard manager</string>
|
<string name="key_descr_home">Home</string>
|
||||||
<string name="key_descr_combining">Combining diacritic</string>
|
<string name="key_descr_end">End</string>
|
||||||
<string name="key_descr_dead_key">Dead key</string>
|
<string name="key_descr_clipboard">Clipboard manager</string>
|
||||||
<string name="key_descr_zwj">Zero width joiner</string>
|
<string name="key_descr_combining">Combining diacritic</string>
|
||||||
<string name="key_descr_zwnj">Zero width non-joiner</string>
|
<string name="key_descr_dead_key">Dead key</string>
|
||||||
<string name="key_descr_nbsp">Non-breaking space</string>
|
<string name="key_descr_zwj">Zero width joiner</string>
|
||||||
<string name="key_descr_nnbsp">Narrow non-breaking space</string>
|
<string name="key_descr_zwnj">Zero width non-joiner</string>
|
||||||
<string name="key_descr_delete_word">Delete a word</string>
|
<string name="key_descr_nbsp">Non-breaking space</string>
|
||||||
<string name="key_descr_forward_delete_word">Delete a word on the right</string>
|
<string name="key_descr_nnbsp">Narrow non-breaking space</string>
|
||||||
<string name="key_descr_gesture">Gesture</string>
|
<string name="key_descr_delete_word">Delete a word</string>
|
||||||
<string name="clipboard_history_heading">Recently copied text</string>
|
<string name="key_descr_forward_delete_word">Delete a word on the right</string>
|
||||||
<string name="clipboard_pin_heading">Pinned</string>
|
<string name="key_descr_gesture">Gesture</string>
|
||||||
<string name="clipboard_remove_confirm">Remove this clipboard?</string>
|
<string name="clipboard_history_heading">Recently copied text</string>
|
||||||
<string name="clipboard_remove_confirmed">Yes</string>
|
<string name="clipboard_pin_heading">Pinned</string>
|
||||||
<string name="toast_no_voice_input">No voice typing app installed</string>
|
<string name="clipboard_remove_confirm">Remove this clipboard?</string>
|
||||||
|
<string name="clipboard_remove_confirmed">Yes</string>
|
||||||
|
<string name="toast_no_voice_input">No voice typing app installed</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -181,27 +181,27 @@
|
|||||||
</style>
|
</style>
|
||||||
<style name="MonetLight" parent="@style/BaseTheme">
|
<style name="MonetLight" parent="@style/BaseTheme">
|
||||||
<item name="android:isLightTheme">true</item>
|
<item name="android:isLightTheme">true</item>
|
||||||
<item name="colorKeyboard">@android:color/system_neutral1_100</item>
|
<item name="colorKeyboard">@android:color/system_accent1_100</item>
|
||||||
<item name="colorKey">@android:color/system_neutral1_50</item>
|
<item name="colorKey">@android:color/system_accent1_0</item>
|
||||||
<item name="colorKeyActivated">?colorKeyboard</item>
|
<item name="colorKeyActivated">@android:color/system_accent1_300</item>
|
||||||
<item name="colorLabel">@android:color/system_neutral1_800</item>
|
<item name="colorLabel">@android:color/system_accent1_1000</item>
|
||||||
<item name="colorLabelActivated">@android:color/system_accent1_400</item>
|
<item name="colorLabelActivated">@android:color/system_accent1_1000</item>
|
||||||
<item name="colorLabelLocked">@android:color/system_accent1_600</item>
|
<item name="colorLabelLocked">@android:color/system_accent1_500</item>
|
||||||
<item name="colorSubLabel">@android:color/system_neutral1_500</item>
|
<item name="colorSubLabel">@android:color/system_accent1_900</item>
|
||||||
<item name="emoji_button_bg">?colorKeyActivated</item>
|
<item name="emoji_button_bg">?colorKeyActivated</item>
|
||||||
<item name="emoji_color">?colorKeyboard</item>
|
<item name="emoji_color">@android:color/system_accent1_1000</item>
|
||||||
</style>
|
</style>
|
||||||
<style name="MonetDark" parent="@style/BaseTheme">
|
<style name="MonetDark" parent="@style/BaseTheme">
|
||||||
<item name="android:isLightTheme">false</item>
|
<item name="android:isLightTheme">false</item>
|
||||||
<item name="colorKeyboard">@android:color/system_neutral1_900</item>
|
<item name="colorKeyboard">@android:color/system_neutral1_900</item>
|
||||||
<item name="colorKey">@android:color/system_neutral1_800</item>
|
<item name="colorKey">@android:color/system_accent2_800</item>
|
||||||
<item name="colorKeyActivated">?colorKeyboard</item>
|
<item name="colorKeyActivated">@android:color/system_accent1_800</item>
|
||||||
<item name="colorLabel">@android:color/system_neutral1_0</item>
|
<item name="colorLabel">@android:color/system_neutral1_0</item>
|
||||||
<item name="colorLabelActivated">@android:color/system_accent1_400</item>
|
<item name="colorLabelActivated">@android:color/system_accent1_400</item>
|
||||||
<item name="colorLabelLocked">@android:color/system_accent1_600</item>
|
<item name="colorLabelLocked">@android:color/system_accent1_100</item>
|
||||||
<item name="colorSubLabel">@android:color/system_neutral1_400</item>
|
<item name="colorSubLabel">@android:color/system_neutral1_300</item>
|
||||||
<item name="emoji_button_bg">?colorKeyActivated</item>
|
<item name="emoji_button_bg">?colorKeyActivated</item>
|
||||||
<item name="emoji_color">?colorKeyboard</item>
|
<item name="emoji_color">@android:color/system_neutral1_900</item>
|
||||||
</style>
|
</style>
|
||||||
<style name="RosePine" parent="BaseTheme">
|
<style name="RosePine" parent="BaseTheme">
|
||||||
<item name="android:isLightTheme">false</item>
|
<item name="android:isLightTheme">false</item>
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- See [number_row_no_symbols.xml] for the number row with no symbols. -->
|
|
||||||
<row height="0.75">
|
<row height="0.75">
|
||||||
<key key0="1" se="!"/>
|
<key key0="1" se="!"/>
|
||||||
<key key0="2" se="@"/>
|
<key key0="2" se="@"/>
|
||||||
<key key0="3" se="#"/>
|
<key key0="3" se="#"/>
|
||||||
<key key0="4" se="$"/>
|
<key key0="4" se="$"/>
|
||||||
<key key0="5" se="%"/>
|
<key key0="5" se="%"/>
|
||||||
<key key0="6" sw="^"/>
|
<key key0="6" sw="^"/>
|
||||||
<key key0="7" sw="&"/>
|
<key key0="7" sw="&"/>
|
||||||
<key key0="8" sw="*"/>
|
<key key0="8" sw="*"/>
|
||||||
<key key0="9" sw="("/>
|
<key key0="9" sw="("/>
|
||||||
<key key0="0" sw=")"/>
|
<key key0="0" sw=")"/>
|
||||||
</row>
|
</row>
|
||||||
|
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<row height="0.75">
|
|
||||||
<key key0="1"/>
|
|
||||||
<key key0="2"/>
|
|
||||||
<key key0="3"/>
|
|
||||||
<key key0="4"/>
|
|
||||||
<key key0="5"/>
|
|
||||||
<key key0="6"/>
|
|
||||||
<key key0="7"/>
|
|
||||||
<key key0="8"/>
|
|
||||||
<key key0="9"/>
|
|
||||||
<key key0="0"/>
|
|
||||||
</row>
|
|
@@ -8,7 +8,7 @@
|
|||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
<juloo.keyboard2.prefs.ExtraKeysPreference android:title="@string/pref_extra_keys_internal"/>
|
<juloo.keyboard2.prefs.ExtraKeysPreference android:title="@string/pref_extra_keys_internal"/>
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
<ListPreference android:key="number_row" android:title="@string/pref_number_row_title" android:summary="%s" android:defaultValue="no_number_row" android:entries="@array/pref_show_number_row_entries" android:entryValues="@array/pref_show_number_row_values"/>
|
<CheckBoxPreference android:key="number_row" android:title="@string/pref_number_row_title" android:summary="@string/pref_number_row_summary" android:defaultValue="false"/>
|
||||||
<ListPreference android:key="show_numpad" android:title="@string/pref_show_numpad_title" android:summary="%s" android:defaultValue="1" android:entries="@array/pref_show_numpad_entries" android:entryValues="@array/pref_show_numpad_values"/>
|
<ListPreference android:key="show_numpad" android:title="@string/pref_show_numpad_title" android:summary="%s" android:defaultValue="1" android:entries="@array/pref_show_numpad_entries" android:entryValues="@array/pref_show_numpad_values"/>
|
||||||
<ListPreference android:key="numpad_layout" android:title="@string/pref_numpad_layout" android:summary="%s" android:defaultValue="high_first" android:entries="@array/pref_numpad_layout_entries" android:entryValues="@array/pref_numpad_layout_values"/>
|
<ListPreference android:key="numpad_layout" android:title="@string/pref_numpad_layout" android:summary="%s" android:defaultValue="high_first" android:entries="@array/pref_numpad_layout_entries" android:entryValues="@array/pref_numpad_layout_values"/>
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
package juloo.keyboard2;
|
package juloo.keyboard2;
|
||||||
|
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
import android.text.InputType;
|
import android.text.InputType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.view.inputmethod.EditorInfo;
|
import android.view.inputmethod.EditorInfo;
|
||||||
@@ -26,9 +27,9 @@ public final class Autocapitalisation
|
|||||||
InputType.TYPE_TEXT_FLAG_CAP_SENTENCES |
|
InputType.TYPE_TEXT_FLAG_CAP_SENTENCES |
|
||||||
InputType.TYPE_TEXT_FLAG_CAP_WORDS;
|
InputType.TYPE_TEXT_FLAG_CAP_WORDS;
|
||||||
|
|
||||||
public Autocapitalisation(Handler h, Callback cb)
|
public Autocapitalisation(Looper looper, Callback cb)
|
||||||
{
|
{
|
||||||
_handler = h;
|
_handler = new Handler(looper);
|
||||||
_callback = cb;
|
_callback = cb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -30,7 +30,6 @@ public final class Config
|
|||||||
// From the 'numpad_layout' option, also apply to the numeric pane.
|
// From the 'numpad_layout' option, also apply to the numeric pane.
|
||||||
public boolean inverse_numpad = false;
|
public boolean inverse_numpad = false;
|
||||||
public boolean add_number_row;
|
public boolean add_number_row;
|
||||||
public boolean number_row_symbols;
|
|
||||||
public float swipe_dist_px;
|
public float swipe_dist_px;
|
||||||
public float slide_step_px;
|
public float slide_step_px;
|
||||||
// Let the system handle vibration when false.
|
// Let the system handle vibration when false.
|
||||||
@@ -123,9 +122,7 @@ public final class Config
|
|||||||
}
|
}
|
||||||
layouts = LayoutsPreference.load_from_preferences(res, _prefs);
|
layouts = LayoutsPreference.load_from_preferences(res, _prefs);
|
||||||
inverse_numpad = _prefs.getString("numpad_layout", "default").equals("low_first");
|
inverse_numpad = _prefs.getString("numpad_layout", "default").equals("low_first");
|
||||||
String number_row = _prefs.getString("number_row", "no_number_row");
|
add_number_row = _prefs.getBoolean("number_row", false);
|
||||||
add_number_row = !number_row.equals("no_number_row");
|
|
||||||
number_row_symbols = number_row.equals("symbols");
|
|
||||||
// The baseline for the swipe distance correspond to approximately the
|
// The baseline for the swipe distance correspond to approximately the
|
||||||
// width of a key in portrait mode, as most layouts have 10 columns.
|
// width of a key in portrait mode, as most layouts have 10 columns.
|
||||||
// Multipled by the DPI ratio because most swipes are made in the diagonals.
|
// Multipled by the DPI ratio because most swipes are made in the diagonals.
|
||||||
@@ -275,7 +272,7 @@ public final class Config
|
|||||||
|
|
||||||
/** Config migrations. */
|
/** Config migrations. */
|
||||||
|
|
||||||
private static int CONFIG_VERSION = 2;
|
private static int CONFIG_VERSION = 1;
|
||||||
|
|
||||||
public static void migrate(SharedPreferences prefs)
|
public static void migrate(SharedPreferences prefs)
|
||||||
{
|
{
|
||||||
@@ -287,7 +284,7 @@ public final class Config
|
|||||||
e.putInt("version", CONFIG_VERSION);
|
e.putInt("version", CONFIG_VERSION);
|
||||||
// Migrations might run on an empty [prefs] for new installs, in this case
|
// Migrations might run on an empty [prefs] for new installs, in this case
|
||||||
// they set the default values of complex options.
|
// they set the default values of complex options.
|
||||||
switch (saved_version)
|
switch (saved_version) // Fallback switch
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
// Primary, secondary and custom layout options are merged into the new
|
// Primary, secondary and custom layout options are merged into the new
|
||||||
@@ -301,12 +298,7 @@ public final class Config
|
|||||||
if (custom_layout != null && !custom_layout.equals(""))
|
if (custom_layout != null && !custom_layout.equals(""))
|
||||||
l.add(LayoutsPreference.CustomLayout.parse(custom_layout));
|
l.add(LayoutsPreference.CustomLayout.parse(custom_layout));
|
||||||
LayoutsPreference.save_to_preferences(e, l);
|
LayoutsPreference.save_to_preferences(e, l);
|
||||||
// Fallthrough
|
|
||||||
case 1:
|
case 1:
|
||||||
boolean add_number_row = prefs.getBoolean("number_row", false);
|
|
||||||
e.putString("number_row", add_number_row ? "no_symbols" : "no_number_row");
|
|
||||||
// Fallthrough
|
|
||||||
case 2:
|
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
e.apply();
|
e.apply();
|
||||||
|
@@ -51,14 +51,8 @@ public class Emoji
|
|||||||
if ((line = reader.readLine()) != null)
|
if ((line = reader.readLine()) != null)
|
||||||
{
|
{
|
||||||
String[] tokens = line.split(" ");
|
String[] tokens = line.split(" ");
|
||||||
int last = 0;
|
for (int i = 0; i < tokens.length-1; i++)
|
||||||
for (int i = 1; i < tokens.length; i++)
|
_groups.add(_all.subList(Integer.parseInt(tokens[i]), Integer.parseInt(tokens[i+1])));
|
||||||
{
|
|
||||||
int next = Integer.parseInt(tokens[i]);
|
|
||||||
_groups.add(_all.subList(last, next));
|
|
||||||
last = next;
|
|
||||||
}
|
|
||||||
_groups.add(_all.subList(last, _all.size()));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e) { Logs.exn("Emoji.init() failed", e); }
|
catch (IOException e) { Logs.exn("Emoji.init() failed", e); }
|
||||||
|
@@ -2,7 +2,6 @@ package juloo.keyboard2;
|
|||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Handler;
|
|
||||||
import android.text.InputType;
|
import android.text.InputType;
|
||||||
import android.view.KeyCharacterMap;
|
import android.view.KeyCharacterMap;
|
||||||
import android.view.KeyEvent;
|
import android.view.KeyEvent;
|
||||||
@@ -29,10 +28,10 @@ public final class KeyEventHandler
|
|||||||
[setSelection] could be used instead. */
|
[setSelection] could be used instead. */
|
||||||
boolean _move_cursor_force_fallback = false;
|
boolean _move_cursor_force_fallback = false;
|
||||||
|
|
||||||
public KeyEventHandler(IReceiver recv)
|
public KeyEventHandler(Looper looper, IReceiver recv)
|
||||||
{
|
{
|
||||||
_recv = recv;
|
_recv = recv;
|
||||||
_autocap = new Autocapitalisation(recv.getHandler(),
|
_autocap = new Autocapitalisation(looper,
|
||||||
this.new Autocapitalisation_callback());
|
this.new Autocapitalisation_callback());
|
||||||
_mods = Pointers.Modifiers.EMPTY;
|
_mods = Pointers.Modifiers.EMPTY;
|
||||||
}
|
}
|
||||||
@@ -242,7 +241,6 @@ public final class KeyEventHandler
|
|||||||
case AUTOFILL: send_context_menu_action(android.R.id.autofill); break;
|
case AUTOFILL: send_context_menu_action(android.R.id.autofill); break;
|
||||||
case DELETE_WORD: send_key_down_up(KeyEvent.KEYCODE_DEL, KeyEvent.META_CTRL_ON | KeyEvent.META_CTRL_LEFT_ON); break;
|
case DELETE_WORD: send_key_down_up(KeyEvent.KEYCODE_DEL, KeyEvent.META_CTRL_ON | KeyEvent.META_CTRL_LEFT_ON); break;
|
||||||
case FORWARD_DELETE_WORD: send_key_down_up(KeyEvent.KEYCODE_FORWARD_DEL, KeyEvent.META_CTRL_ON | KeyEvent.META_CTRL_LEFT_ON); break;
|
case FORWARD_DELETE_WORD: send_key_down_up(KeyEvent.KEYCODE_FORWARD_DEL, KeyEvent.META_CTRL_ON | KeyEvent.META_CTRL_LEFT_ON); break;
|
||||||
case SELECTION_CANCEL: cancel_selection(); break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -260,17 +258,15 @@ public final class KeyEventHandler
|
|||||||
return conn.getExtractedText(_move_cursor_req, 0);
|
return conn.getExtractedText(_move_cursor_req, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** [r] might be negative, in which case the direction is reversed. */
|
/** [repeatition] might be negative, in which case the direction is reversed. */
|
||||||
void handle_slider(KeyValue.Slider s, int r)
|
void handle_slider(KeyValue.Slider s, int repeatition)
|
||||||
{
|
{
|
||||||
switch (s)
|
switch (s)
|
||||||
{
|
{
|
||||||
case Cursor_left: move_cursor(-r); break;
|
case Cursor_left: move_cursor(-repeatition); break;
|
||||||
case Cursor_right: move_cursor(r); break;
|
case Cursor_right: move_cursor(repeatition); break;
|
||||||
case Cursor_up: move_cursor_vertical(-r); break;
|
case Cursor_up: move_cursor_vertical(-repeatition); break;
|
||||||
case Cursor_down: move_cursor_vertical(r); break;
|
case Cursor_down: move_cursor_vertical(repeatition); break;
|
||||||
case Selection_cursor_left: move_cursor_sel(r, true); break;
|
|
||||||
case Selection_cursor_right: move_cursor_sel(r, false); break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -284,7 +280,12 @@ public final class KeyEventHandler
|
|||||||
if (conn == null)
|
if (conn == null)
|
||||||
return;
|
return;
|
||||||
ExtractedText et = get_cursor_pos(conn);
|
ExtractedText et = get_cursor_pos(conn);
|
||||||
if (et != null && can_set_selection(conn))
|
int system_mods =
|
||||||
|
KeyEvent.META_CTRL_ON | KeyEvent.META_ALT_ON | KeyEvent.META_META_ON;
|
||||||
|
// Fallback to sending key events if system modifiers are activated or
|
||||||
|
// ExtractedText is not supported, for example on Termux.
|
||||||
|
if (!_move_cursor_force_fallback && et != null
|
||||||
|
&& (_meta_state & system_mods) == 0)
|
||||||
{
|
{
|
||||||
int sel_start = et.selectionStart;
|
int sel_start = et.selectionStart;
|
||||||
int sel_end = et.selectionEnd;
|
int sel_end = et.selectionEnd;
|
||||||
@@ -303,45 +304,8 @@ public final class KeyEventHandler
|
|||||||
sel_start = sel_end;
|
sel_start = sel_end;
|
||||||
}
|
}
|
||||||
if (conn.setSelection(sel_start, sel_end))
|
if (conn.setSelection(sel_start, sel_end))
|
||||||
return; // Fallback to sending key events if [setSelection] failed
|
return; // [setSelection] succeeded, don't fallback to key events
|
||||||
}
|
}
|
||||||
move_cursor_fallback(d);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Move one of the two side of a selection. If [sel_left] is true, the left
|
|
||||||
position is moved, otherwise the right position is moved. */
|
|
||||||
void move_cursor_sel(int d, boolean sel_left)
|
|
||||||
{
|
|
||||||
InputConnection conn = _recv.getCurrentInputConnection();
|
|
||||||
if (conn == null)
|
|
||||||
return;
|
|
||||||
ExtractedText et = get_cursor_pos(conn);
|
|
||||||
if (et != null && can_set_selection(conn))
|
|
||||||
{
|
|
||||||
int sel_start = et.selectionStart;
|
|
||||||
int sel_end = et.selectionEnd;
|
|
||||||
if (sel_left == (sel_start <= sel_end))
|
|
||||||
sel_start += d;
|
|
||||||
else
|
|
||||||
sel_end += d;
|
|
||||||
if (conn.setSelection(sel_start, sel_end))
|
|
||||||
return; // Fallback to sending key events if [setSelection] failed
|
|
||||||
}
|
|
||||||
move_cursor_fallback(d);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Returns whether the selection can be set using [conn.setSelection()].
|
|
||||||
This can happen on Termux or when system modifiers are activated for
|
|
||||||
example. */
|
|
||||||
boolean can_set_selection(InputConnection conn)
|
|
||||||
{
|
|
||||||
final int system_mods =
|
|
||||||
KeyEvent.META_CTRL_ON | KeyEvent.META_ALT_ON | KeyEvent.META_META_ON;
|
|
||||||
return !_move_cursor_force_fallback && (_meta_state & system_mods) == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void move_cursor_fallback(int d)
|
|
||||||
{
|
|
||||||
if (d < 0)
|
if (d < 0)
|
||||||
send_key_down_up_repeat(KeyEvent.KEYCODE_DPAD_LEFT, -d);
|
send_key_down_up_repeat(KeyEvent.KEYCODE_DPAD_LEFT, -d);
|
||||||
else
|
else
|
||||||
@@ -360,72 +324,31 @@ public final class KeyEventHandler
|
|||||||
|
|
||||||
void evaluate_macro(KeyValue[] keys)
|
void evaluate_macro(KeyValue[] keys)
|
||||||
{
|
{
|
||||||
if (keys.length == 0)
|
final Pointers.Modifiers empty = Pointers.Modifiers.EMPTY;
|
||||||
return;
|
|
||||||
// Ignore modifiers that are activated at the time the macro is evaluated
|
// Ignore modifiers that are activated at the time the macro is evaluated
|
||||||
mods_changed(Pointers.Modifiers.EMPTY);
|
mods_changed(empty);
|
||||||
evaluate_macro_loop(keys, 0, Pointers.Modifiers.EMPTY, _autocap.pause());
|
Pointers.Modifiers mods = empty;
|
||||||
}
|
final boolean autocap_paused = _autocap.pause();
|
||||||
|
for (KeyValue kv : keys)
|
||||||
/** Evaluate the macro asynchronously to make sure event are processed in the
|
|
||||||
right order. */
|
|
||||||
void evaluate_macro_loop(final KeyValue[] keys, int i, Pointers.Modifiers mods, final boolean autocap_paused)
|
|
||||||
{
|
|
||||||
boolean should_delay = false;
|
|
||||||
KeyValue kv = KeyModifier.modify(keys[i], mods);
|
|
||||||
if (kv != null)
|
|
||||||
{
|
{
|
||||||
|
kv = KeyModifier.modify(kv, mods);
|
||||||
|
if (kv == null)
|
||||||
|
continue;
|
||||||
if (kv.hasFlagsAny(KeyValue.FLAG_LATCH))
|
if (kv.hasFlagsAny(KeyValue.FLAG_LATCH))
|
||||||
{
|
{
|
||||||
// Non-special latchable keys clear latched modifiers
|
// Non-special latchable keys clear latched modifiers
|
||||||
if (!kv.hasFlagsAny(KeyValue.FLAG_SPECIAL))
|
if (!kv.hasFlagsAny(KeyValue.FLAG_SPECIAL))
|
||||||
mods = Pointers.Modifiers.EMPTY;
|
mods = empty;
|
||||||
mods = mods.with_extra_mod(kv);
|
mods = mods.with_extra_mod(kv);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
key_down(kv, false);
|
key_down(kv, false);
|
||||||
key_up(kv, mods);
|
key_up(kv, mods);
|
||||||
mods = Pointers.Modifiers.EMPTY;
|
mods = empty;
|
||||||
}
|
}
|
||||||
should_delay = wait_after_macro_key(kv);
|
|
||||||
}
|
|
||||||
i++;
|
|
||||||
if (i >= keys.length) // Stop looping
|
|
||||||
{
|
|
||||||
_autocap.unpause(autocap_paused);
|
|
||||||
}
|
|
||||||
else if (should_delay)
|
|
||||||
{
|
|
||||||
// Add a delay before sending the next key to avoid race conditions
|
|
||||||
// causing keys to be handled in the wrong order. Notably, KeyEvent keys
|
|
||||||
// handling is scheduled differently than the other edit functions.
|
|
||||||
final int i_ = i;
|
|
||||||
final Pointers.Modifiers mods_ = mods;
|
|
||||||
_recv.getHandler().postDelayed(new Runnable() {
|
|
||||||
public void run()
|
|
||||||
{
|
|
||||||
evaluate_macro_loop(keys, i_, mods_, autocap_paused);
|
|
||||||
}
|
|
||||||
}, 1000/30);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
evaluate_macro_loop(keys, i, mods, autocap_paused);
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean wait_after_macro_key(KeyValue kv)
|
|
||||||
{
|
|
||||||
switch (kv.getKind())
|
|
||||||
{
|
|
||||||
case Keyevent:
|
|
||||||
case Editing:
|
|
||||||
case Event:
|
|
||||||
return true;
|
|
||||||
case Slider:
|
|
||||||
return _move_cursor_force_fallback;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
_autocap.unpause(autocap_paused);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Repeat calls to [send_key_down_up]. */
|
/** Repeat calls to [send_key_down_up]. */
|
||||||
@@ -435,27 +358,12 @@ public final class KeyEventHandler
|
|||||||
send_key_down_up(event_code);
|
send_key_down_up(event_code);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cancel_selection()
|
|
||||||
{
|
|
||||||
InputConnection conn = _recv.getCurrentInputConnection();
|
|
||||||
if (conn == null)
|
|
||||||
return;
|
|
||||||
ExtractedText et = get_cursor_pos(conn);
|
|
||||||
if (et == null) return;
|
|
||||||
final int curs = et.selectionStart;
|
|
||||||
// Notify the receiver as Android's [onUpdateSelection] is not triggered.
|
|
||||||
if (conn.setSelection(curs, curs));
|
|
||||||
_recv.selection_state_changed(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static interface IReceiver
|
public static interface IReceiver
|
||||||
{
|
{
|
||||||
public void handle_event_key(KeyValue.Event ev);
|
public void handle_event_key(KeyValue.Event ev);
|
||||||
public void set_shift_state(boolean state, boolean lock);
|
public void set_shift_state(boolean state, boolean lock);
|
||||||
public void set_compose_pending(boolean pending);
|
public void set_compose_pending(boolean pending);
|
||||||
public void selection_state_changed(boolean selection_is_ongoing);
|
|
||||||
public InputConnection getCurrentInputConnection();
|
public InputConnection getCurrentInputConnection();
|
||||||
public Handler getHandler();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Autocapitalisation_callback implements Autocapitalisation.Callback
|
class Autocapitalisation_callback implements Autocapitalisation.Callback
|
||||||
|
@@ -82,7 +82,6 @@ public final class KeyModifier
|
|||||||
case HOOK_ABOVE: return apply_compose(k, ComposeKeyData.accent_hook_above);
|
case HOOK_ABOVE: return apply_compose(k, ComposeKeyData.accent_hook_above);
|
||||||
case DOUBLE_GRAVE: return apply_compose(k, ComposeKeyData.accent_double_grave);
|
case DOUBLE_GRAVE: return apply_compose(k, ComposeKeyData.accent_double_grave);
|
||||||
case ARROW_RIGHT: return apply_combining_char(k, "\u20D7");
|
case ARROW_RIGHT: return apply_combining_char(k, "\u20D7");
|
||||||
case SELECTION_MODE: return apply_selection_mode(k);
|
|
||||||
default: return k;
|
default: return k;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -393,34 +392,6 @@ public final class KeyModifier
|
|||||||
return (name == null) ? k : KeyValue.getKeyByName(name);
|
return (name == null) ? k : KeyValue.getKeyByName(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static KeyValue apply_selection_mode(KeyValue k)
|
|
||||||
{
|
|
||||||
String name = null;
|
|
||||||
switch (k.getKind())
|
|
||||||
{
|
|
||||||
case Char:
|
|
||||||
switch (k.getChar())
|
|
||||||
{
|
|
||||||
case ' ': name = "selection_cancel"; break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case Slider:
|
|
||||||
switch (k.getSlider())
|
|
||||||
{
|
|
||||||
case Cursor_left: name = "selection_cursor_left"; break;
|
|
||||||
case Cursor_right: name = "selection_cursor_right"; break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case Keyevent:
|
|
||||||
switch (k.getKeyevent())
|
|
||||||
{
|
|
||||||
case KeyEvent.KEYCODE_ESCAPE: name = "selection_cancel"; break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return (name == null) ? k : KeyValue.getKeyByName(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Compose the precomposed initial with the medial [kv]. */
|
/** Compose the precomposed initial with the medial [kv]. */
|
||||||
private static KeyValue combine_hangul_initial(KeyValue kv, int precomposed)
|
private static KeyValue combine_hangul_initial(KeyValue kv, int precomposed)
|
||||||
{
|
{
|
||||||
|
@@ -59,7 +59,6 @@ public final class KeyValue implements Comparable<KeyValue>
|
|||||||
BREVE,
|
BREVE,
|
||||||
BAR,
|
BAR,
|
||||||
FN,
|
FN,
|
||||||
SELECTION_MODE,
|
|
||||||
} // Last is be applied first
|
} // Last is be applied first
|
||||||
|
|
||||||
public static enum Editing
|
public static enum Editing
|
||||||
@@ -78,7 +77,6 @@ public final class KeyValue implements Comparable<KeyValue>
|
|||||||
AUTOFILL,
|
AUTOFILL,
|
||||||
DELETE_WORD,
|
DELETE_WORD,
|
||||||
FORWARD_DELETE_WORD,
|
FORWARD_DELETE_WORD,
|
||||||
SELECTION_CANCEL,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static enum Placeholder
|
public static enum Placeholder
|
||||||
@@ -717,9 +715,6 @@ public final class KeyValue implements Comparable<KeyValue>
|
|||||||
case "cursor_right": return sliderKey(Slider.Cursor_right, 1);
|
case "cursor_right": return sliderKey(Slider.Cursor_right, 1);
|
||||||
case "cursor_up": return sliderKey(Slider.Cursor_up, 1);
|
case "cursor_up": return sliderKey(Slider.Cursor_up, 1);
|
||||||
case "cursor_down": return sliderKey(Slider.Cursor_down, 1);
|
case "cursor_down": return sliderKey(Slider.Cursor_down, 1);
|
||||||
case "selection_cancel": return editingKey("Esc", Editing.SELECTION_CANCEL, FLAG_SMALLER_FONT);
|
|
||||||
case "selection_cursor_left": return sliderKey(Slider.Selection_cursor_left, -1); // Move the left side of the selection
|
|
||||||
case "selection_cursor_right": return sliderKey(Slider.Selection_cursor_right, 1);
|
|
||||||
// These keys are not used
|
// These keys are not used
|
||||||
case "replaceText": return editingKey("repl", Editing.REPLACE);
|
case "replaceText": return editingKey("repl", Editing.REPLACE);
|
||||||
case "textAssist": return editingKey(0xE038, Editing.ASSIST);
|
case "textAssist": return editingKey(0xE038, Editing.ASSIST);
|
||||||
@@ -769,9 +764,6 @@ public final class KeyValue implements Comparable<KeyValue>
|
|||||||
case "௲": case "௳":
|
case "௲": case "௳":
|
||||||
return makeStringKey(name, FLAG_SMALLER_FONT);
|
return makeStringKey(name, FLAG_SMALLER_FONT);
|
||||||
|
|
||||||
/* Internal keys */
|
|
||||||
case "selection_mode": return makeInternalModifier(Modifier.SELECTION_MODE);
|
|
||||||
|
|
||||||
default: return null;
|
default: return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -788,9 +780,7 @@ public final class KeyValue implements Comparable<KeyValue>
|
|||||||
Cursor_left(0xE008),
|
Cursor_left(0xE008),
|
||||||
Cursor_right(0xE006),
|
Cursor_right(0xE006),
|
||||||
Cursor_up(0xE005),
|
Cursor_up(0xE005),
|
||||||
Cursor_down(0xE007),
|
Cursor_down(0xE007);
|
||||||
Selection_cursor_left(0xE008),
|
|
||||||
Selection_cursor_right(0xE006);
|
|
||||||
|
|
||||||
final String symbol;
|
final String symbol;
|
||||||
|
|
||||||
|
@@ -6,7 +6,6 @@ import android.content.Intent;
|
|||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.inputmethodservice.InputMethodService;
|
import android.inputmethodservice.InputMethodService;
|
||||||
import android.os.Build.VERSION;
|
import android.os.Build.VERSION;
|
||||||
import android.os.Handler;
|
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.text.InputType;
|
import android.text.InputType;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
@@ -39,7 +38,6 @@ public class Keyboard2 extends InputMethodService
|
|||||||
private ViewGroup _emojiPane = null;
|
private ViewGroup _emojiPane = null;
|
||||||
private ViewGroup _clipboard_pane = null;
|
private ViewGroup _clipboard_pane = null;
|
||||||
public int actionId; // Action performed by the Action key.
|
public int actionId; // Action performed by the Action key.
|
||||||
private Handler _handler;
|
|
||||||
|
|
||||||
private Config _config;
|
private Config _config;
|
||||||
|
|
||||||
@@ -109,8 +107,7 @@ public class Keyboard2 extends InputMethodService
|
|||||||
{
|
{
|
||||||
super.onCreate();
|
super.onCreate();
|
||||||
SharedPreferences prefs = DirectBootAwarePreferences.get_shared_preferences(this);
|
SharedPreferences prefs = DirectBootAwarePreferences.get_shared_preferences(this);
|
||||||
_handler = new Handler(getMainLooper());
|
_keyeventhandler = new KeyEventHandler(getMainLooper(), this.new Receiver());
|
||||||
_keyeventhandler = new KeyEventHandler(this.new Receiver());
|
|
||||||
Config.initGlobalConfig(prefs, getResources(), _keyeventhandler);
|
Config.initGlobalConfig(prefs, getResources(), _keyeventhandler);
|
||||||
prefs.registerOnSharedPreferenceChangeListener(this);
|
prefs.registerOnSharedPreferenceChangeListener(this);
|
||||||
_config = Config.globalConfig();
|
_config = Config.globalConfig();
|
||||||
@@ -362,8 +359,6 @@ public class Keyboard2 extends InputMethodService
|
|||||||
{
|
{
|
||||||
super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, candidatesEnd);
|
super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, candidatesEnd);
|
||||||
_keyeventhandler.selection_updated(oldSelStart, newSelStart);
|
_keyeventhandler.selection_updated(oldSelStart, newSelStart);
|
||||||
if ((oldSelStart == oldSelEnd) != (newSelStart == newSelEnd))
|
|
||||||
_keyboardView.set_selection_state(newSelStart != newSelEnd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -482,20 +477,10 @@ public class Keyboard2 extends InputMethodService
|
|||||||
_keyboardView.set_compose_pending(pending);
|
_keyboardView.set_compose_pending(pending);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void selection_state_changed(boolean selection_is_ongoing)
|
|
||||||
{
|
|
||||||
_keyboardView.set_selection_state(selection_is_ongoing);
|
|
||||||
}
|
|
||||||
|
|
||||||
public InputConnection getCurrentInputConnection()
|
public InputConnection getCurrentInputConnection()
|
||||||
{
|
{
|
||||||
return Keyboard2.this.getCurrentInputConnection();
|
return Keyboard2.this.getCurrentInputConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Handler getHandler()
|
|
||||||
{
|
|
||||||
return _handler;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private IBinder getConnectionToken()
|
private IBinder getConnectionToken()
|
||||||
|
@@ -139,13 +139,6 @@ public class Keyboard2View extends View
|
|||||||
set_fake_ptr_latched(_compose_key, _compose_kv, pending, false);
|
set_fake_ptr_latched(_compose_key, _compose_kv, pending, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Called from [Keybard2.onUpdateSelection]. */
|
|
||||||
public void set_selection_state(boolean selection_state)
|
|
||||||
{
|
|
||||||
set_fake_ptr_latched(KeyboardData.Key.EMPTY,
|
|
||||||
KeyValue.getKeyByName("selection_mode"), selection_state, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public KeyValue modifyKey(KeyValue k, Pointers.Modifiers mods)
|
public KeyValue modifyKey(KeyValue k, Pointers.Modifiers mods)
|
||||||
{
|
{
|
||||||
return KeyModifier.modify(k, mods);
|
return KeyModifier.modify(k, mods);
|
||||||
@@ -441,7 +434,8 @@ public class Keyboard2View extends View
|
|||||||
if (kv == null)
|
if (kv == null)
|
||||||
return;
|
return;
|
||||||
float textSize = scaleTextSize(kv, _config.labelTextSize, keyH);
|
float textSize = scaleTextSize(kv, _config.labelTextSize, keyH);
|
||||||
Paint p = tc.label_paint(kv.hasFlagsAny(KeyValue.FLAG_KEY_FONT), labelColor(kv, isKeyDown, false), textSize);
|
Paint p = tc.label_paint(kv.hasFlagsAny(KeyValue.FLAG_KEY_FONT), textSize);
|
||||||
|
p.setColor(labelColor(kv, isKeyDown, false));
|
||||||
canvas.drawText(kv.getString(), x, (keyH - p.ascent() - p.descent()) / 2f + y, p);
|
canvas.drawText(kv.getString(), x, (keyH - p.ascent() - p.descent()) / 2f + y, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -455,7 +449,8 @@ public class Keyboard2View extends View
|
|||||||
if (kv == null)
|
if (kv == null)
|
||||||
return;
|
return;
|
||||||
float textSize = scaleTextSize(kv, _config.sublabelTextSize, keyH);
|
float textSize = scaleTextSize(kv, _config.sublabelTextSize, keyH);
|
||||||
Paint p = tc.sublabel_paint(kv.hasFlagsAny(KeyValue.FLAG_KEY_FONT), labelColor(kv, isKeyDown, true), textSize, a);
|
Paint p = tc.sublabel_paint(kv.hasFlagsAny(KeyValue.FLAG_KEY_FONT), textSize, a);
|
||||||
|
p.setColor(labelColor(kv, isKeyDown, true));
|
||||||
float subPadding = _config.keyPadding;
|
float subPadding = _config.keyPadding;
|
||||||
if (v == Vertical.CENTER)
|
if (v == Vertical.CENTER)
|
||||||
y += (keyH - p.ascent() - p.descent()) / 2f;
|
y += (keyH - p.ascent() - p.descent()) / 2f;
|
||||||
|
@@ -177,9 +177,14 @@ public final class KeyboardData
|
|||||||
|
|
||||||
private static Map<Integer, KeyboardData> _layoutCache = new HashMap<Integer, KeyboardData>();
|
private static Map<Integer, KeyboardData> _layoutCache = new HashMap<Integer, KeyboardData>();
|
||||||
|
|
||||||
public static Row load_row(Resources res, int res_id) throws Exception
|
public static Row load_bottom_row(Resources res) throws Exception
|
||||||
{
|
{
|
||||||
return parse_row(res.getXml(res_id));
|
return parse_row(res.getXml(R.xml.bottom_row));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Row load_number_row(Resources res) throws Exception
|
||||||
|
{
|
||||||
|
return parse_row(res.getXml(R.xml.number_row));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static KeyboardData load_num_pad(Resources res) throws Exception
|
public static KeyboardData load_num_pad(Resources res) throws Exception
|
||||||
@@ -417,8 +422,6 @@ public final class KeyboardData
|
|||||||
indication = i;
|
indication = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
static final Key EMPTY = new Key(new KeyValue[9], null, 0, 1.f, 1.f, null);
|
|
||||||
|
|
||||||
/** Read a key value attribute that have a synonym. Having both synonyms
|
/** Read a key value attribute that have a synonym. Having both synonyms
|
||||||
present at the same time is an error.
|
present at the same time is an error.
|
||||||
Returns [null] if the attributes are not present. */
|
Returns [null] if the attributes are not present. */
|
||||||
|
@@ -11,8 +11,7 @@ public final class LayoutModifier
|
|||||||
{
|
{
|
||||||
static Config globalConfig;
|
static Config globalConfig;
|
||||||
static KeyboardData.Row bottom_row;
|
static KeyboardData.Row bottom_row;
|
||||||
static KeyboardData.Row number_row_no_symbols;
|
static KeyboardData.Row number_row;
|
||||||
static KeyboardData.Row number_row_symbols;
|
|
||||||
static KeyboardData num_pad;
|
static KeyboardData num_pad;
|
||||||
|
|
||||||
/** Update the layout according to the configuration.
|
/** Update the layout according to the configuration.
|
||||||
@@ -45,7 +44,7 @@ public final class LayoutModifier
|
|||||||
}
|
}
|
||||||
else if (globalConfig.add_number_row && !kw.embedded_number_row) // The numpad removes the number row
|
else if (globalConfig.add_number_row && !kw.embedded_number_row) // The numpad removes the number row
|
||||||
{
|
{
|
||||||
added_number_row = modify_number_row(globalConfig.number_row_symbols ? number_row_symbols : number_row_no_symbols, kw);
|
added_number_row = modify_number_row(number_row, kw);
|
||||||
remove_keys.addAll(added_number_row.getKeys(0).keySet());
|
remove_keys.addAll(added_number_row.getKeys(0).keySet());
|
||||||
}
|
}
|
||||||
// Add the bottom row before computing the extra keys
|
// Add the bottom row before computing the extra keys
|
||||||
@@ -205,9 +204,8 @@ public final class LayoutModifier
|
|||||||
globalConfig = globalConfig_;
|
globalConfig = globalConfig_;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
number_row_no_symbols = KeyboardData.load_row(res, R.xml.number_row_no_symbols);
|
number_row = KeyboardData.load_number_row(res);
|
||||||
number_row_symbols = KeyboardData.load_row(res, R.xml.number_row);
|
bottom_row = KeyboardData.load_bottom_row(res);
|
||||||
bottom_row = KeyboardData.load_row(res, R.xml.bottom_row);
|
|
||||||
num_pad = KeyboardData.load_num_pad(res);
|
num_pad = KeyboardData.load_num_pad(res);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
@@ -219,7 +219,7 @@ public final class Pointers implements Handler.Callback
|
|||||||
* [direction] is an int between [0] and [15] that represent 16 sections of a
|
* [direction] is an int between [0] and [15] that represent 16 sections of a
|
||||||
* circle, clockwise, starting at the top.
|
* circle, clockwise, starting at the top.
|
||||||
*/
|
*/
|
||||||
static KeyValue getKeyAtDirection(KeyboardData.Key k, int direction)
|
KeyValue getKeyAtDirection(KeyboardData.Key k, int direction)
|
||||||
{
|
{
|
||||||
return k.keys[DIRECTION_TO_INDEX[direction]];
|
return k.keys[DIRECTION_TO_INDEX[direction]];
|
||||||
}
|
}
|
||||||
@@ -234,24 +234,16 @@ public final class Pointers implements Handler.Callback
|
|||||||
private KeyValue getNearestKeyAtDirection(Pointer ptr, int direction)
|
private KeyValue getNearestKeyAtDirection(Pointer ptr, int direction)
|
||||||
{
|
{
|
||||||
KeyValue k;
|
KeyValue k;
|
||||||
// [i] is [0, -1, +1, ..., -3, +3], scanning 43% of the circle's area,
|
// [i] is [0, -1, 1, -2, 2], scanning a 1/4 of the circle's area, centered
|
||||||
// centered on the initial swipe direction.
|
// on the initial direction.
|
||||||
for (int i = 0; i > -4; i = (~i>>31) - i)
|
for (int i = 0; i > -2; i = (~i>>31) - i)
|
||||||
{
|
{
|
||||||
int d = (direction + i + 16) % 16;
|
int d = (direction + i + 16) % 16;
|
||||||
// Don't make the difference between a key that doesn't exist and a key
|
// Don't make the difference between a key that doesn't exist and a key
|
||||||
// that is removed by [_handler]. Triggers side effects.
|
// that is removed by [_handler]. Triggers side effects.
|
||||||
k = _handler.modifyKey(getKeyAtDirection(ptr.key, d), ptr.modifiers);
|
k = _handler.modifyKey(getKeyAtDirection(ptr.key, d), ptr.modifiers);
|
||||||
if (k != null)
|
if (k != null)
|
||||||
{
|
|
||||||
// When the nearest key is a slider, it is only selected if it's placed
|
|
||||||
// within 18% of the original swipe direction.
|
|
||||||
// This reduces accidental swipes on the slider and allow typing circle
|
|
||||||
// gestures without being interrupted by the slider.
|
|
||||||
if (k.getKind() == KeyValue.Kind.Slider && Math.abs(i) >= 2)
|
|
||||||
continue;
|
|
||||||
return k;
|
return k;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@@ -126,7 +126,6 @@ public class Theme
|
|||||||
final Paint _special_label_paint;
|
final Paint _special_label_paint;
|
||||||
final Paint _sublabel_paint;
|
final Paint _sublabel_paint;
|
||||||
final Paint _special_sublabel_paint;
|
final Paint _special_sublabel_paint;
|
||||||
final int _label_alpha_bits;
|
|
||||||
|
|
||||||
public Key(Theme theme, Config config, float keyWidth, boolean activated)
|
public Key(Theme theme, Config config, float keyWidth, boolean activated)
|
||||||
{
|
{
|
||||||
@@ -150,21 +149,18 @@ public class Theme
|
|||||||
_special_label_paint = init_label_paint(config, _key_font);
|
_special_label_paint = init_label_paint(config, _key_font);
|
||||||
_sublabel_paint = init_label_paint(config, null);
|
_sublabel_paint = init_label_paint(config, null);
|
||||||
_special_sublabel_paint = init_label_paint(config, _key_font);
|
_special_sublabel_paint = init_label_paint(config, _key_font);
|
||||||
_label_alpha_bits = (config.labelBrightness & 0xFF) << 24;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Paint label_paint(boolean special_font, int color, float text_size)
|
public Paint label_paint(boolean special_font, float text_size)
|
||||||
{
|
{
|
||||||
Paint p = special_font ? _special_label_paint : _label_paint;
|
Paint p = special_font ? _special_label_paint : _label_paint;
|
||||||
p.setColor((color & 0x00FFFFFF) | _label_alpha_bits);
|
|
||||||
p.setTextSize(text_size);
|
p.setTextSize(text_size);
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Paint sublabel_paint(boolean special_font, int color, float text_size, Paint.Align align)
|
public Paint sublabel_paint(boolean special_font, float text_size, Paint.Align align)
|
||||||
{
|
{
|
||||||
Paint p = special_font ? _special_sublabel_paint : _sublabel_paint;
|
Paint p = special_font ? _special_sublabel_paint : _sublabel_paint;
|
||||||
p.setColor((color & 0x00FFFFFF) | _label_alpha_bits);
|
|
||||||
p.setTextSize(text_size);
|
p.setTextSize(text_size);
|
||||||
p.setTextAlign(align);
|
p.setTextAlign(align);
|
||||||
return p;
|
return p;
|
||||||
@@ -185,6 +181,7 @@ public class Theme
|
|||||||
{
|
{
|
||||||
Paint p = new Paint(Paint.ANTI_ALIAS_FLAG);
|
Paint p = new Paint(Paint.ANTI_ALIAS_FLAG);
|
||||||
p.setTextAlign(Paint.Align.CENTER);
|
p.setTextAlign(Paint.Align.CENTER);
|
||||||
|
p.setAlpha(config.labelBrightness);
|
||||||
if (font != null)
|
if (font != null)
|
||||||
p.setTypeface(font);
|
p.setTypeface(font);
|
||||||
return p;
|
return p;
|
||||||
|
@@ -3,7 +3,6 @@ package juloo.keyboard2.prefs;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.res.Resources;
|
import android.content.res.Resources;
|
||||||
import android.os.Build.VERSION;
|
|
||||||
import android.preference.CheckBoxPreference;
|
import android.preference.CheckBoxPreference;
|
||||||
import android.preference.PreferenceCategory;
|
import android.preference.PreferenceCategory;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
@@ -306,38 +305,70 @@ public class ExtraKeysPreference extends PreferenceCategory
|
|||||||
+ KeyValue.getKeyByName(key_name).getString();
|
+ KeyValue.getKeyByName(key_name).getString();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Place an extra key next to the key specified by the first argument, on
|
|
||||||
bottom-right preferably or on the bottom-left. If the specified key is not
|
|
||||||
on the layout, place on the specified row and column. */
|
|
||||||
static KeyboardData.PreferredPos mk_preferred_pos(String next_to_key, int row, int col, boolean prefer_bottom_right)
|
|
||||||
{
|
|
||||||
KeyValue next_to = (next_to_key == null) ? null : KeyValue.getKeyByName(next_to_key);
|
|
||||||
int d1, d2; // Preferred direction and fallback direction
|
|
||||||
if (prefer_bottom_right) { d1 = 4; d2 = 3; } else { d1 = 3; d2 = 4; }
|
|
||||||
return new KeyboardData.PreferredPos(next_to,
|
|
||||||
new KeyboardData.KeyPos[]{
|
|
||||||
new KeyboardData.KeyPos(row, col, d1),
|
|
||||||
new KeyboardData.KeyPos(row, col, d2),
|
|
||||||
new KeyboardData.KeyPos(row, -1, d1),
|
|
||||||
new KeyboardData.KeyPos(row, -1, d2),
|
|
||||||
new KeyboardData.KeyPos(-1, -1, -1),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
static KeyboardData.PreferredPos key_preferred_pos(String key_name)
|
static KeyboardData.PreferredPos key_preferred_pos(String key_name)
|
||||||
{
|
{
|
||||||
switch (key_name)
|
switch (key_name)
|
||||||
{
|
{
|
||||||
case "cut": return mk_preferred_pos("x", 2, 2, true);
|
case "cut":
|
||||||
case "copy": return mk_preferred_pos("c", 2, 3, true);
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("x"),
|
||||||
case "paste": return mk_preferred_pos("v", 2, 4, true);
|
new KeyboardData.KeyPos[]{
|
||||||
case "undo": return mk_preferred_pos("z", 2, 1, true);
|
new KeyboardData.KeyPos(2, 2, 8),
|
||||||
case "selectAll": return mk_preferred_pos("a", 1, 0, true);
|
new KeyboardData.KeyPos(2, -1, 8),
|
||||||
case "redo": return mk_preferred_pos("y", 0, 5, true);
|
new KeyboardData.KeyPos(-1, -1, 8),
|
||||||
case "f11_placeholder": return mk_preferred_pos("9", 0, 8, false);
|
});
|
||||||
case "f12_placeholder": return mk_preferred_pos("0", 0, 9, false);
|
case "copy":
|
||||||
case "delete_word": return mk_preferred_pos("backspace", -1, -1, false);
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("c"),
|
||||||
case "forward_delete_word": return mk_preferred_pos("backspace", -1, -1, true);
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(2, 3, 8),
|
||||||
|
new KeyboardData.KeyPos(2, -1, 8),
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 8),
|
||||||
|
});
|
||||||
|
case "paste":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("v"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(2, 4, 8),
|
||||||
|
new KeyboardData.KeyPos(2, -1, 8),
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 8),
|
||||||
|
});
|
||||||
|
case "undo":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("z"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(2, 1, 8),
|
||||||
|
new KeyboardData.KeyPos(2, -1, 8),
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 8),
|
||||||
|
});
|
||||||
|
case "redo":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("y"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(0, -1, 8),
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 8),
|
||||||
|
});
|
||||||
|
case "f11_placeholder":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("9"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(0, 8, 3),
|
||||||
|
new KeyboardData.KeyPos(0, 8, 4),
|
||||||
|
new KeyboardData.KeyPos(0, -1, 3),
|
||||||
|
new KeyboardData.KeyPos(0, -1, 4),
|
||||||
|
});
|
||||||
|
case "f12_placeholder":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("0"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(0, 9, 3),
|
||||||
|
new KeyboardData.KeyPos(0, 9, 4),
|
||||||
|
new KeyboardData.KeyPos(0, -1, 3),
|
||||||
|
new KeyboardData.KeyPos(0, -1, 4),
|
||||||
|
});
|
||||||
|
case "delete_word":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("backspace"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 3),
|
||||||
|
});
|
||||||
|
case "forward_delete_word":
|
||||||
|
return new KeyboardData.PreferredPos(KeyValue.getKeyByName("backspace"),
|
||||||
|
new KeyboardData.KeyPos[]{
|
||||||
|
new KeyboardData.KeyPos(-1, -1, 4),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
return KeyboardData.PreferredPos.DEFAULT;
|
return KeyboardData.PreferredPos.DEFAULT;
|
||||||
}
|
}
|
||||||
@@ -394,8 +425,7 @@ public class ExtraKeysPreference extends PreferenceCategory
|
|||||||
setKey(pref_key_of_key_name(key_name));
|
setKey(pref_key_of_key_name(key_name));
|
||||||
setDefaultValue(default_checked);
|
setDefaultValue(default_checked);
|
||||||
setTitle(title);
|
setTitle(title);
|
||||||
if (VERSION.SDK_INT >= 26)
|
setSingleLineTitle(false);
|
||||||
setSingleLineTitle(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
<key key0="w" key1="loc accent_grave" key2=" ́" key3="~" />
|
<key key0="w" key1="loc accent_grave" key2=" ́" key3="~" />
|
||||||
<key key0="f" key1="`" key2="-" key3="+" />
|
<key key0="f" key1="`" key2="-" key3="+" />
|
||||||
<key key0="p" key2="=" key3="%"/>
|
<key key0="p" key2="=" key3="%"/>
|
||||||
<key key0="g" key1="|" key2="/" key3="\\"/>
|
<key key0="g" key1="!" key2="/" key3="\\"/>
|
||||||
<key key0="j" key1="loc accent_caron" key2="loc accent_trema" />
|
<key key0="j" key1="loc accent_caron" key2="loc accent_trema" />
|
||||||
<key key0="l"/>
|
<key key0="l"/>
|
||||||
<key key0="u" key1="loc accent_double_aigu" key2="loc accent_ring" />
|
<key key0="u" key1="loc accent_double_aigu" key2="loc accent_ring" />
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
<key key0="v" key1="[" key2="]"/>
|
<key key0="v" key1="[" key2="]"/>
|
||||||
<key key0="b" key1="(" key2=")"/>
|
<key key0="b" key1="(" key2=")"/>
|
||||||
<key key0="k" key1=";" key2=":"/>
|
<key key0="k" key1=";" key2=":"/>
|
||||||
<key key0="m" key1="!" key2="\?" />
|
<key key0="m" key1="|" key2="\?" />
|
||||||
<key key0="backspace" key1="delete" shift="0.25" width="1.25"/>
|
<key key0="backspace" key1="delete" shift="0.25" width="1.25"/>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<key key0="y" key2="6" key3="&"/>
|
<key key0="y" key2="6" key3="&"/>
|
||||||
<key key0="u" key2="7" key3="'"/>
|
<key key0="u" key2="7" key3="'"/>
|
||||||
<key key0="i" key2="8" key3="(" key4=")"/>
|
<key key0="i" key2="8" key3="(" key4=")"/>
|
||||||
<key key0="o" key1="=" key2="9" key3="-" key4="accent-macron"/>
|
<key key0="o" key1="=" key2="9" key3="-"/>
|
||||||
<key key0="p" key1="~" key2="0" key3="^"/>
|
<key key0="p" key1="~" key2="0" key3="^"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
|
@@ -39,7 +39,7 @@ def parse_strings_file(file):
|
|||||||
def write_updated_strings(out, strings):
|
def write_updated_strings(out, strings):
|
||||||
out.write('<?xml version="1.0" encoding="utf-8"?>\n<resources>\n')
|
out.write('<?xml version="1.0" encoding="utf-8"?>\n<resources>\n')
|
||||||
for key, string, comment in strings:
|
for key, string, comment in strings:
|
||||||
out.write(" ")
|
out.write(" ")
|
||||||
if comment: out.write("<!-- ")
|
if comment: out.write("<!-- ")
|
||||||
out.write(ET.tostring(string, "unicode").strip())
|
out.write(ET.tostring(string, "unicode").strip())
|
||||||
if comment: out.write(" -->")
|
if comment: out.write(" -->")
|
||||||
@@ -74,11 +74,7 @@ def sync_metadata(value_dir, strings):
|
|||||||
os.makedirs(meta_dir)
|
os.makedirs(meta_dir)
|
||||||
txt_file = os.path.join(meta_dir, fname)
|
txt_file = os.path.join(meta_dir, fname)
|
||||||
with open(txt_file, "w", encoding="utf-8") as out:
|
with open(txt_file, "w", encoding="utf-8") as out:
|
||||||
out.write(string.text
|
out.write(string.text.removeprefix('"').removesuffix('"'))
|
||||||
.replace("\\n", "\n")
|
|
||||||
.replace("\\'", "'")
|
|
||||||
.removeprefix('"')
|
|
||||||
.removesuffix('"'))
|
|
||||||
out.write("\n")
|
out.write("\n")
|
||||||
sync_meta_file("title.txt", ("app_name_release", None))
|
sync_meta_file("title.txt", ("app_name_release", None))
|
||||||
sync_meta_file("short_description.txt", ("short_description", None))
|
sync_meta_file("short_description.txt", ("short_description", None))
|
||||||
|
Reference in New Issue
Block a user