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

@@ -22,19 +22,19 @@
namespace QmlProfiler {
static const char *ProfileFeatureNames[] = {
QT_TRANSLATE_NOOP("QmlProfiler", "JavaScript"),
QT_TRANSLATE_NOOP("QmlProfiler", "Memory Usage"),
QT_TRANSLATE_NOOP("QmlProfiler", "Pixmap Cache"),
QT_TRANSLATE_NOOP("QmlProfiler", "Scene Graph"),
QT_TRANSLATE_NOOP("QmlProfiler", "Animations"),
QT_TRANSLATE_NOOP("QmlProfiler", "Painting"),
QT_TRANSLATE_NOOP("QmlProfiler", "Compiling"),
QT_TRANSLATE_NOOP("QmlProfiler", "Creating"),
QT_TRANSLATE_NOOP("QmlProfiler", "Binding"),
QT_TRANSLATE_NOOP("QmlProfiler", "Handling Signal"),
QT_TRANSLATE_NOOP("QmlProfiler", "Input Events"),
QT_TRANSLATE_NOOP("QmlProfiler", "Debug Messages"),
QT_TRANSLATE_NOOP("QmlProfiler", "Quick3D")
QT_TRANSLATE_NOOP("::QmlProfiler", "JavaScript"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Memory Usage"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Pixmap Cache"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Scene Graph"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Animations"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Painting"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Compiling"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Creating"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Binding"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Handling Signal"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Input Events"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Debug Messages"),
QT_TRANSLATE_NOOP("::QmlProfiler", "Quick3D")
};
Q_STATIC_ASSERT(sizeof(ProfileFeatureNames) == sizeof(char *) * MaximumProfileFeature);