aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mercurial
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2024-02-21 10:15:28 +0100
committerEike Ziller <[email protected]>2024-02-21 10:06:41 +0000
commita130343ab55b9edb4303edabf46b1b87340712f7 (patch)
treefacab6aa9c45dd57e753b1591793e80b0cdac2fc /src/plugins/mercurial
parent370fb4d550dafd8ededf4b2ecde23d3f48cbcb46 (diff)
Fix i18n issues
Fix some missing Tr::, and some namespace usages that confused lupdate. Change-Id: Ib5a411fc53a28a6b807600db50aacc68955ca5dc Reviewed-by: hjk <[email protected]> Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/plugins/mercurial')
-rw-r--r--src/plugins/mercurial/mercurialplugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/mercurial/mercurialplugin.cpp b/src/plugins/mercurial/mercurialplugin.cpp
index 76c8f2ba8c8..a9ab891c023 100644
--- a/src/plugins/mercurial/mercurialplugin.cpp
+++ b/src/plugins/mercurial/mercurialplugin.cpp
@@ -146,7 +146,7 @@ public:
VcsEditorFactory logEditorFactory {{
LogOutput,
Constants::FILELOG_ID,
- VcsBase::Tr::tr("Mercurial File Log Editor"),
+ ::VcsBase::Tr::tr("Mercurial File Log Editor"),
Constants::LOGAPP,
[] { return new MercurialEditorWidget; },
std::bind(&MercurialPluginPrivate::vcsDescribe, this, _1, _2)
@@ -155,7 +155,7 @@ public:
VcsEditorFactory annotateEditorFactory {{
AnnotateOutput,
Constants::ANNOTATELOG_ID,
- VcsBase::Tr::tr("Mercurial Annotation Editor"),
+ ::VcsBase::Tr::tr("Mercurial Annotation Editor"),
Constants::ANNOTATEAPP,
[] { return new MercurialEditorWidget; },
std::bind(&MercurialPluginPrivate::vcsDescribe, this, _1, _2)
@@ -164,7 +164,7 @@ public:
VcsEditorFactory diffEditorFactory {{
DiffOutput,
Constants::DIFFLOG_ID,
- VcsBase::Tr::tr("Mercurial Diff Editor"),
+ ::VcsBase::Tr::tr("Mercurial Diff Editor"),
Constants::DIFFAPP,
[] { return new MercurialEditorWidget; },
std::bind(&MercurialPluginPrivate::vcsDescribe, this, _1, _2)
@@ -181,7 +181,7 @@ MercurialPluginPrivate::MercurialPluginPrivate()
setupVcsSubmitEditor(this, {
Constants::COMMITMIMETYPE,
Constants::COMMIT_ID,
- VcsBase::Tr::tr("Mercurial Commit Log Editor"),
+ ::VcsBase::Tr::tr("Mercurial Commit Log Editor"),
VcsBaseSubmitEditorParameters::DiffFiles,
[] { return new CommitEditor; }
});