Beside usage similar to that of English, the colon has other functions. Several

compatibility forms for Chinese and Japanese typography are encoded in Unicode.
(grafted from 065a26d8b5779ca5c8c2486509352c8c48190a33)

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-12-29 14:37:46 +02:00
parent fd0ce82913
commit b7829428c9

View file

@ -215,7 +215,18 @@ void TST_TSLocaleTranslation::TestPunctuation()
{
testFail = true;
if (locale == QLatin1String("el_GR") && cSource == QLatin1Char('?') && cTranslation == QLatin1Char(';'))
if (locale == QLatin1String("el_GR")
// Greek question mark
// https://en.wikipedia.org/wiki/Question_mark#Greek_question_mark
&& (cSource == QLatin1Char('?') && cTranslation == QLatin1Char(';')))
{
testFail = false;
}
else if (locale == QLatin1String("zh_CN")
// Beside usage similar to that of English, the colon has other functions. Several compatibility
// forms for Chinese and Japanese typography are encoded in Unicode.
// https://en.wikipedia.org/wiki/Colon_(punctuation)#Usage_in_other_languages
&& (cSource == QLatin1Char(':') && cTranslation == QString("")))
{
testFail = false;
}