Translations: Add missing "::" prefixes to QT_TRANSLATE_NOOP

Change-Id: I7589a2d4003394e38e58c095b510f8eff33263b8
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Alessandro Portale
2023-02-07 16:47:34 +01:00
parent 8a8b50e8b5
commit 2356f28647
18 changed files with 107 additions and 107 deletions

View File

@@ -27,11 +27,11 @@ QRgb DebugMessagesModel::color(int index) const
}
static const char *messageTypes[] = {
QT_TRANSLATE_NOOP("QmlProfiler", "Debug Message"),
QT_TRANSLATE_NOOP("QmlProfiler", "Warning Message"),
QT_TRANSLATE_NOOP("QmlProfiler", "Critical Message"),
QT_TRANSLATE_NOOP("QmlProfiler", "Fatal Message"),
QT_TRANSLATE_NOOP("QmlProfiler", "Info Message"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Debug Message"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Warning Message"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Critical Message"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Fatal Message"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Info Message"),
};
QString DebugMessagesModel::messageType(uint i)