diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-28 10:34:07 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-28 10:34:07 +0100 |
commit | 164e50e92590639113e311f1c533d475ef6d5b16 (patch) | |
tree | 02a3159565d8d2b008561ffaf454016cf6288147 | |
parent | 6187e16e33794925b57d602c62f37592e8dc8f70 (diff) |
tracker/test: rename only
-rw-r--r-- | tracker-test/lang/nl_NL.ts | 2 | ||||
-rw-r--r-- | tracker-test/lang/ru_RU.ts | 2 | ||||
-rw-r--r-- | tracker-test/lang/stub.ts | 2 | ||||
-rw-r--r-- | tracker-test/lang/zh_CN.ts | 2 | ||||
-rw-r--r-- | tracker-test/test.h | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/tracker-test/lang/nl_NL.ts b/tracker-test/lang/nl_NL.ts index e531e6cd..b4150273 100644 --- a/tracker-test/lang/nl_NL.ts +++ b/tracker-test/lang/nl_NL.ts @@ -4,7 +4,7 @@ <context> <name>test_metadata</name> <message> - <source>Testing - sine wave</source> + <source>Test tracker</source> <translation type="unfinished"></translation> </message> </context> diff --git a/tracker-test/lang/ru_RU.ts b/tracker-test/lang/ru_RU.ts index fd23967b..c69b3728 100644 --- a/tracker-test/lang/ru_RU.ts +++ b/tracker-test/lang/ru_RU.ts @@ -4,7 +4,7 @@ <context> <name>test_metadata</name> <message> - <source>Testing - sine wave</source> + <source>Test tracker</source> <translation type="unfinished"></translation> </message> </context> diff --git a/tracker-test/lang/stub.ts b/tracker-test/lang/stub.ts index ab8b4027..78f647f5 100644 --- a/tracker-test/lang/stub.ts +++ b/tracker-test/lang/stub.ts @@ -4,7 +4,7 @@ <context> <name>test_metadata</name> <message> - <source>Testing - sine wave</source> + <source>Test tracker</source> <translation type="unfinished"></translation> </message> </context> diff --git a/tracker-test/lang/zh_CN.ts b/tracker-test/lang/zh_CN.ts index ab8b4027..78f647f5 100644 --- a/tracker-test/lang/zh_CN.ts +++ b/tracker-test/lang/zh_CN.ts @@ -4,7 +4,7 @@ <context> <name>test_metadata</name> <message> - <source>Testing - sine wave</source> + <source>Test tracker</source> <translation type="unfinished"></translation> </message> </context> diff --git a/tracker-test/test.h b/tracker-test/test.h index 6b4357cb..049e45a8 100644 --- a/tracker-test/test.h +++ b/tracker-test/test.h @@ -38,7 +38,7 @@ class test_metadata : public Metadata { Q_OBJECT - QString name() { return tr("Testing - sine wave"); } - QIcon icon() { return QIcon(":/images/opentrack.png"); } + QString name() override { return tr("Test tracker"); } + QIcon icon() override { return QIcon(":/images/opentrack.png"); } }; |