forked from qt-creator/qt-creator
Translations: Change translation context prefix from "::" to "QtC::"
lupdate would be confused by translation contexts starting with :: Change-Id: Ie95e73436fd3cafc80a8e89f908efadc747e644c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -90,7 +90,7 @@ const char CMD_ID_REPOSITORYUPDATE[] = "CVS.RepositoryUpdate";
|
||||
|
||||
const char CVS_SUBMIT_MIMETYPE[] = "text/vnd.qtcreator.cvs.submit";
|
||||
const char CVSCOMMITEDITOR_ID[] = "CVS Commit Editor";
|
||||
const char CVSCOMMITEDITOR_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("::VcsBase", "CVS Commit Editor");
|
||||
const char CVSCOMMITEDITOR_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("QtC::VcsBase", "CVS Commit Editor");
|
||||
|
||||
const VcsBaseSubmitEditorParameters submitParameters {
|
||||
CVS_SUBMIT_MIMETYPE,
|
||||
@@ -102,28 +102,28 @@ const VcsBaseSubmitEditorParameters submitParameters {
|
||||
const VcsBaseEditorParameters commandLogEditorParameters {
|
||||
OtherContent,
|
||||
"CVS Command Log Editor", // id
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "CVS Command Log Editor"), // display name
|
||||
QT_TRANSLATE_NOOP("QtC::VcsBase", "CVS Command Log Editor"), // display name
|
||||
"text/vnd.qtcreator.cvs.commandlog"
|
||||
};
|
||||
|
||||
const VcsBaseEditorParameters logEditorParameters {
|
||||
LogOutput,
|
||||
"CVS File Log Editor", // id
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "CVS File Log Editor"), // display name
|
||||
QT_TRANSLATE_NOOP("QtC::VcsBase", "CVS File Log Editor"), // display name
|
||||
"text/vnd.qtcreator.cvs.log"
|
||||
};
|
||||
|
||||
const VcsBaseEditorParameters annotateEditorParameters {
|
||||
AnnotateOutput,
|
||||
"CVS Annotation Editor", // id
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "CVS Annotation Editor"), // display name
|
||||
QT_TRANSLATE_NOOP("QtC::VcsBase", "CVS Annotation Editor"), // display name
|
||||
"text/vnd.qtcreator.cvs.annotation"
|
||||
};
|
||||
|
||||
const VcsBaseEditorParameters diffEditorParameters {
|
||||
DiffOutput,
|
||||
"CVS Diff Editor", // id
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "CVS Diff Editor"), // display name
|
||||
QT_TRANSLATE_NOOP("QtC::VcsBase", "CVS Diff Editor"), // display name
|
||||
"text/x-patch"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user