提交 3b853c77 编写于 作者: C Cyrus Najmabadi

Capitalize loc string.

上级 344f0625
......@@ -40,49 +40,49 @@ internal static class RegexCharClass
new Dictionary<string, (string, string)>
{
// Others
{ "Cc", (regex_other_control, "") },
{ "Cf", (regex_other_format, "") },
{ "Cn", (regex_other_not_assigned, "") },
{ "Co", (regex_other_private_use, "") },
{ "Cs", (regex_other_surrogate, "") },
{ "C", (regex_all_control_characters_short, regex_all_control_characters_long) },
{ "Cc", (Regex_other_control, "") },
{ "Cf", (Regex_other_format, "") },
{ "Cn", (Regex_other_not_assigned, "") },
{ "Co", (Regex_other_private_use, "") },
{ "Cs", (Regex_other_surrogate, "") },
{ "C", (Regex_all_control_characters_short, Regex_all_control_characters_long) },
// Letters
{ "Ll", (regex_letter_lowercase, "") },
{ "Lm", (regex_letter_modifier, "") },
{ "Lo", (regex_letter_other, "") },
{ "Lt", (regex_letter_titlecase, "") },
{ "Lu", (regex_letter_uppercase, "") },
{ "L", (regex_all_letter_characters_short, regex_all_letter_characters_long) },
{ "Ll", (Regex_letter_lowercase, "") },
{ "Lm", (Regex_letter_modifier, "") },
{ "Lo", (Regex_letter_other, "") },
{ "Lt", (Regex_letter_titlecase, "") },
{ "Lu", (Regex_letter_uppercase, "") },
{ "L", (Regex_all_letter_characters_short, Regex_all_letter_characters_long) },
// Marks
{ "Mc", (regex_mark_spacing_combining, "") },
{ "Me", (regex_mark_enclosing, "") },
{ "Mn", (regex_mark_nonspacing, "") },
{ "M", (regex_all_diacritic_marks_short, regex_all_diacritic_marks_long) },
{ "Mc", (Regex_mark_spacing_combining, "") },
{ "Me", (Regex_mark_enclosing, "") },
{ "Mn", (Regex_mark_nonspacing, "") },
{ "M", (Regex_all_diacritic_marks_short, Regex_all_diacritic_marks_long) },
// Numbers
{ "Nd", (regex_number_decimal_digit, "") },
{ "Nl", (regex_number_letter, "") },
{ "No", (regex_number_other, "") },
{ "N", (regex_all_numbers_short, regex_all_numbers_long) },
{ "Nd", (Regex_number_decimal_digit, "") },
{ "Nl", (Regex_number_letter, "") },
{ "No", (Regex_number_other, "") },
{ "N", (Regex_all_numbers_short, Regex_all_numbers_long) },
// Punctuation
{ "Pc", (regex_punctuation_connector, "") },
{ "Pd", (regex_punctuation_dash, "") },
{ "Pe", (regex_punctuation_close, "") },
{ "Po", (regex_punctuation_other, "") },
{ "Ps", (regex_punctuation_open, "") },
{ "Pf", (regex_punctuation_final_quote, "") },
{ "Pi", (regex_punctuation_initial_quote, "") },
{ "P", (regex_all_punctuation_characters_short, regex_all_punctuation_characters_long) },
{ "Pc", (Regex_punctuation_connector, "") },
{ "Pd", (Regex_punctuation_dash, "") },
{ "Pe", (Regex_punctuation_close, "") },
{ "Po", (Regex_punctuation_other, "") },
{ "Ps", (Regex_punctuation_open, "") },
{ "Pf", (Regex_punctuation_final_quote, "") },
{ "Pi", (Regex_punctuation_initial_quote, "") },
{ "P", (Regex_all_punctuation_characters_short, Regex_all_punctuation_characters_long) },
// Symbols
{ "Sc", (regex_symbol_currency, "") },
{ "Sk", (regex_symbol_modifier, "") },
{ "Sm", (regex_symbol_math, "") },
{ "So", (regex_symbol_other, "") },
{ "S", (regex_all_symbols_short, regex_all_symbols_long) },
{ "Sc", (Regex_symbol_currency, "") },
{ "Sk", (Regex_symbol_modifier, "") },
{ "Sm", (Regex_symbol_math, "") },
{ "So", (Regex_symbol_other, "") },
{ "S", (Regex_all_symbols_short, Regex_all_symbols_long) },
// Separators
{ "Zl", (regex_separator_line, "") },
{ "Zp", (regex_separator_paragraph, "") },
{ "Zs", (regex_separator_space, "") },
{ "Z", (regex_all_separator_characters_short, regex_all_separator_characters_long) },
{ "Zl", (Regex_separator_line, "") },
{ "Zp", (Regex_separator_paragraph, "") },
{ "Zs", (Regex_separator_space, "") },
{ "Z", (Regex_all_separator_characters_short, Regex_all_separator_characters_long) },
{ "IsAlphabeticPresentationForms", ("", "") },
{ "IsArabic", ("", "") },
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册