diff options
author | Konstantin Ritt <ritt.ks@gmail.com> | 2012-11-02 06:32:32 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-10 02:10:56 (GMT) |
commit | 8c67684ababc2a81f9cdd552eea90ab8accfc6b0 (patch) | |
tree | f21bac6918d2c579b078188c3b171b3b228e80bc /tests | |
parent | fbf8ae9f390c2d482bb5dadf654942aae171f3df (diff) | |
download | Qt-8c67684ababc2a81f9cdd552eea90ab8accfc6b0.zip Qt-8c67684ababc2a81f9cdd552eea90ab8accfc6b0.tar.gz Qt-8c67684ababc2a81f9cdd552eea90ab8accfc6b0.tar.bz2 |
Update Qlocale data with CLDR 1.9.1
this is the same data we have in Qt 5 right now.
Change-Id: Ic4cea4fdde2001432f33b0cb658508756cc9e8d3
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Reviewed-by: Denis Dzyubenko <denis@ddenis.info>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qlocale/test/test.pro | 2 | ||||
-rw-r--r-- | tests/auto/qlocale/tst_qlocale.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qlocale/test/test.pro b/tests/auto/qlocale/test/test.pro index 174eade..0c541de 100644 --- a/tests/auto/qlocale/test/test.pro +++ b/tests/auto/qlocale/test/test.pro @@ -1,7 +1,7 @@ CONFIG += testcase TARGET = ../tst_qlocale -QT = core network testlib +QT = core testlib embedded: QT += gui SOURCES += ../tst_qlocale.cpp diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index ae46509..88bc8c0 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -1752,7 +1752,7 @@ void tst_QLocale::dayName_data() QTest::newRow("C narrow") << QString("C") << QString("7") << 7 << QLocale::NarrowFormat; QTest::newRow("ru_RU long") << QString("ru_RU") << QString::fromUtf8("\320\262\320\276\321\201\320\272\321\200\320\265\321\201\320\265\320\275\321\214\320\265") << 7 << QLocale::LongFormat; - QTest::newRow("ru_RU short") << QString("ru_RU") << QString::fromUtf8("\320\222\321\201") << 7 << QLocale::ShortFormat; + QTest::newRow("ru_RU short") << QString("ru_RU") << QString::fromUtf8("\320\262\321\201") << 7 << QLocale::ShortFormat; QTest::newRow("ru_RU narrow") << QString("ru_RU") << QString::fromUtf8("\320\222") << 7 << QLocale::NarrowFormat; } |