1
0
Fork 0

cosmetic fixes + a couple of new special characters

This commit is contained in:
sspanak 2024-02-23 10:07:30 +02:00 committed by Dimo Karaivanov
parent a25cdf8bf1
commit 8de39b4faa
4 changed files with 9 additions and 8 deletions

View file

@ -12,23 +12,23 @@ public class Characters {
));
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> PunctuationFrench = 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> Special = new ArrayList<>(Arrays.asList(

View file

@ -22,7 +22,7 @@ public class ItemKeyPadDebounceTime extends ItemDropDown {
LinkedHashMap<Integer, String> dropDownOptions = new LinkedHashMap<>();
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) {
dropDownOptions.put(value, value + " ms");
}

View file

@ -8,7 +8,7 @@
<string name="add_word_add">Добави</string>
<string name="add_word_no_selection">Преместете показалеца върху дума, за да я добавите към речника.</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_title">Добавяне на дума</string>
<string name="pref_category_about">За приложението</string>

View file

@ -28,7 +28,8 @@
app:defaultValue="false"
app:key="pref_hack_google_chat"
app:layout="@layout/pref_switch"
app:title="@string/pref_hack_google_chat"/>
app:title="@string/pref_hack_google_chat"
app:summary="(BETA)"/>
<SwitchPreferenceCompat
app:defaultValue="false"