Improved comment

This commit is contained in:
Artem Grinev 2020-11-10 01:40:08 +03:00
parent d5e678157d
commit da5fb2d3e1

View File

@ -27,11 +27,12 @@
#include <unicode/translit.h> #include <unicode/translit.h>
#include <unicode/unistr.h> #include <unicode/unistr.h>
//Did my best choosing compound ID //Needed for ICU to apply some transliteration ruleset.
//Still needs to be adjusted to fit the needs of the most of users
static const char TRANSLITERATOR_ID[] = "Russian-Latin/BGN;" static const char TRANSLITERATOR_ID[] = "Russian-Latin/BGN;"
"Greek-Latin/UNGEGN;" "Greek-Latin/UNGEGN;"
"Any-Latin;" "Any-Latin;"
"Latin-ASCII"; "Latin-ASCII";
#endif #endif
static const QRegExp USERNAME_RX( "^[a-z_][a-z0-9_-]*[$]?$" ); static const QRegExp USERNAME_RX( "^[a-z_][a-z0-9_-]*[$]?$" );