diff options
Diffstat (limited to 'tracker-test')
-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"); } }; |