cosmetic fixes + a couple of new special characters
This commit is contained in:
parent
a25cdf8bf1
commit
8de39b4faa
4 changed files with 9 additions and 8 deletions
|
|
@ -12,23 +12,23 @@ public class Characters {
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> PunctuationArabic = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> PunctuationArabic = new ArrayList<>(Arrays.asList(
|
||||||
"،", ".", "-", "(", ")", "[", "]", "&", "~", "`", "\"", "'", "؛", ":", "!", "؟"
|
"،", ".", "-", "(", ")", "[", "]", "&", "§", "~", "`", "\"", "'", "؛", ":", "!", "؟"
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> PunctuationEnglish = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> PunctuationEnglish = new ArrayList<>(Arrays.asList(
|
||||||
",", ".", "-", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "\"", "!", "?"
|
",", ".", "-", "(", ")", "[", "]", "&", "§", "~", "`", "'", ";", ":", "\"", "!", "?"
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> PunctuationFrench = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> PunctuationFrench = new ArrayList<>(Arrays.asList(
|
||||||
",", ".", "-", "«", "»", "(", ")", "[", "]", "&", "~", "`", "\"", "'", ";", ":", "!", "?"
|
",", ".", "-", "«", "»", "(", ")", "[", "]", "&", "§", "~", "\"", "`", "'", ";", ":", "!", "?"
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> PunctuationGerman = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> PunctuationGerman = new ArrayList<>(Arrays.asList(
|
||||||
",", ".", "-", "„", "“", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "!", "?"
|
",", ".", "-", "„", "“", "(", ")", "[", "]", "&", "§", "~", "\"", "`", "'", ";", ":", "!", "?"
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> Currency = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> Currency = new ArrayList<>(Arrays.asList(
|
||||||
"$", "€", "₹", "₿", "₺", "₱", "¥", "₽", "£"
|
"$", "€", "₹", "₿", "₩", "¢", "₺", "₱", "¥", "₽", "£"
|
||||||
));
|
));
|
||||||
|
|
||||||
final public static ArrayList<String> Special = new ArrayList<>(Arrays.asList(
|
final public static ArrayList<String> Special = new ArrayList<>(Arrays.asList(
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ public class ItemKeyPadDebounceTime extends ItemDropDown {
|
||||||
LinkedHashMap<Integer, String> dropDownOptions = new LinkedHashMap<>();
|
LinkedHashMap<Integer, String> dropDownOptions = new LinkedHashMap<>();
|
||||||
dropDownOptions.put(0, context.getString(R.string.pref_hack_key_pad_debounce_off));
|
dropDownOptions.put(0, context.getString(R.string.pref_hack_key_pad_debounce_off));
|
||||||
|
|
||||||
int[] values = new int[] { 33, 50, 100, 150, 250, 350 };
|
int[] values = new int[] { 20, 30, 50, 75, 100, 150, 250, 350 };
|
||||||
for (int value : values) {
|
for (int value : values) {
|
||||||
dropDownOptions.put(value, value + " ms");
|
dropDownOptions.put(value, value + " ms");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<string name="add_word_add">Добави</string>
|
<string name="add_word_add">Добави</string>
|
||||||
<string name="add_word_no_selection">Преместете показалеца върху дума, за да я добавите към речника.</string>
|
<string name="add_word_no_selection">Преместете показалеца върху дума, за да я добавите към речника.</string>
|
||||||
<string name="add_word_blank">Не може да се въведе празна дума.</string>
|
<string name="add_word_blank">Не може да се въведе празна дума.</string>
|
||||||
<string name="add_word_exist">Думата „%1$s“ е вече речника.</string>
|
<string name="add_word_exist">Думата „%1$s“ вече съществува в речника.</string>
|
||||||
<string name="add_word_success">„%1$s“ е добавена.</string>
|
<string name="add_word_success">„%1$s“ е добавена.</string>
|
||||||
<string name="add_word_title">Добавяне на дума</string>
|
<string name="add_word_title">Добавяне на дума</string>
|
||||||
<string name="pref_category_about">За приложението</string>
|
<string name="pref_category_about">За приложението</string>
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:key="pref_hack_google_chat"
|
app:key="pref_hack_google_chat"
|
||||||
app:layout="@layout/pref_switch"
|
app:layout="@layout/pref_switch"
|
||||||
app:title="@string/pref_hack_google_chat"/>
|
app:title="@string/pref_hack_google_chat"
|
||||||
|
app:summary="(BETA)"/>
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue