[QuickAccent]Additional chars for hebrew (#23304)

This commit is contained in:
Evyatar-E 2023-01-16 13:46:29 +02:00 committed by GitHub
parent d84a13bb7e
commit 218a739996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -456,12 +456,21 @@ namespace PowerAccent.Core
{
return letter switch
{
LetterKey.VK_A => new string[] { "שׂ", "שׁ" },
LetterKey.VK_A => new string[] { "שׂ", "שׁ", "ְ" },
LetterKey.VK_B => new string[] { "׆" },
LetterKey.VK_E => new string[] { "ָ", "ֳ", "ֻ" },
LetterKey.VK_G => new string[] { "ױ" },
LetterKey.VK_H => new string[] { "ײ" },
LetterKey.VK_U => new string[] { "וֹ", "וּ" },
LetterKey.VK_Y => new string[] { "װ" },
LetterKey.VK_COMMA => new string[] { "”", "״", "־", "", "֫", "ֽ", "ֿ" },
LetterKey.VK_H => new string[] { "ײ", "ײַ", "ׯ", "ִ" },
LetterKey.VK_M => new string[] { "ֵ" },
LetterKey.VK_P => new string[] { "ַ", "ֲ" },
LetterKey.VK_S => new string[] { "ּ" },
LetterKey.VK_T => new string[] { "ﭏ" },
LetterKey.VK_U => new string[] { "וֹ", "וּ", "װ", "ֹ" },
LetterKey.VK_X => new string[] { "ֶ", "ֱ" },
LetterKey.VK_Y => new string[] { "ױ" },
LetterKey.VK_COMMA => new string[] { "”", "", "״", "׳" },
LetterKey.VK_PERIOD => new string[] { "֫", "ֽ", "ֿ" },
LetterKey.VK_MINUS => new string[] { "", "־" },
_ => Array.Empty<string>(),
};
}