punctuation fixes
* enabled punctuation combinations in Greek and Arabic * ensured Greek semicolon and question mark are the correct Unicode characters
This commit is contained in:
parent
24c002ef09
commit
07379ac75c
1 changed files with 4 additions and 2 deletions
|
|
@ -22,7 +22,9 @@ public class Characters {
|
|||
));
|
||||
|
||||
final public static ArrayList<Character> CombiningPunctuationHebrew = new ArrayList<>(Arrays.asList(
|
||||
',' , '-', '\'', ':', ';', '!', '?', '.', '"'
|
||||
',' , '-', '\'', ':', ';', '!', '?', '.', '"',
|
||||
'·', ';', // Greek
|
||||
'،', '؛', ':', '!', '؟' // Arabic
|
||||
));
|
||||
|
||||
final public static ArrayList<String> PunctuationArabic = new ArrayList<>(Arrays.asList(
|
||||
|
|
@ -42,7 +44,7 @@ public class Characters {
|
|||
));
|
||||
|
||||
final public static ArrayList<String> PunctuationGreek = new ArrayList<>(Arrays.asList(
|
||||
",", ".", "-", "«", "»", "(", ")", "&", "~", "`", "'", "\"", ";", ":", "!", ";"
|
||||
",", ".", "-", "«", "»", "(", ")", "&", "~", "`", "'", "\"", "·", ":", "!", ";"
|
||||
));
|
||||
|
||||
final public static ArrayList<String> Currency = new ArrayList<>(Arrays.asList(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue