diff options
author | El Mehdi Fekari <mfekari@rim.com> | 2013-02-13 16:52:45 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-02-15 15:32:20 (GMT) |
commit | 6e7d5fa639d5129151098c5a153e0d2b408bf24c (patch) | |
tree | 177f95c1c45bb8336ec13eb6b5a95c9aad3cdb58 /tests | |
parent | c03d47e9277a922886d84a0005e5cf7a75d3398b (diff) | |
download | Qt-6e7d5fa639d5129151098c5a153e0d2b408bf24c.zip Qt-6e7d5fa639d5129151098c5a153e0d2b408bf24c.tar.gz Qt-6e7d5fa639d5129151098c5a153e0d2b408bf24c.tar.bz2 |
QLocale: Update tamil's AM/PM text
Change-Id: I355d24fcaaf2c76b8bdbc51f71f931118f5cb3cd
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qlocale/tst_qlocale.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index 572d7f1..e7bc6f4 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -1825,6 +1825,10 @@ void tst_QLocale::ampm() QLocale id("id_ID"); QCOMPARE(id.amText(), QLatin1String("AM")); QCOMPARE(id.pmText(), QLatin1String("PM")); + + QLocale ta("ta_LK"); + QCOMPARE(ta.amText(), QLatin1String("AM")); + QCOMPARE(ta.pmText(), QLatin1String("PM")); } void tst_QLocale::dateFormat() |