forked from qt-creator/qt-creator
VcsBase: Convert to Tr::tr
To reduce the amount of duplicated strings for translators to handle. The problem is not very prominent in vcsbase, but that's where we are moving everywhere else. Change-Id: Icb11fad3bccfea8a1408420e729566a75adccb66 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -105,21 +105,21 @@ const char CMD_ID_STATUS[] = "ClearCase.Status";
|
||||
const VcsBaseEditorParameters logEditorParameters {
|
||||
LogOutput,
|
||||
"ClearCase File Log Editor", // id
|
||||
QT_TRANSLATE_NOOP("VCS", "ClearCase File Log Editor"), // display_name
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "ClearCase File Log Editor"), // display_name
|
||||
"text/vnd.qtcreator.clearcase.log"
|
||||
};
|
||||
|
||||
const VcsBaseEditorParameters annotateEditorParameters {
|
||||
AnnotateOutput,
|
||||
"ClearCase Annotation Editor", // id
|
||||
QT_TRANSLATE_NOOP("VCS", "ClearCase Annotation Editor"), // display_name
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "ClearCase Annotation Editor"), // display_name
|
||||
"text/vnd.qtcreator.clearcase.annotation"
|
||||
};
|
||||
|
||||
const VcsBaseEditorParameters diffEditorParameters {
|
||||
DiffOutput,
|
||||
"ClearCase Diff Editor", // id
|
||||
QT_TRANSLATE_NOOP("VCS", "ClearCase Diff Editor"), // display_name
|
||||
QT_TRANSLATE_NOOP("::VcsBase", "ClearCase Diff Editor"), // display_name
|
||||
"text/x-patch"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user