Fix capitalization of refactoring actions

Consistently use book style for refactoring actions (which appear as
items in drop downs and menus).

Change-Id: I31cfd40dfc5d4d14a5949072168682a12cf566ac
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Eike Ziller
2024-05-14 14:09:10 +02:00
parent 902dda5b27
commit 18e817ce3c
7 changed files with 9 additions and 9 deletions

View File

@@ -22427,7 +22427,7 @@ Doppelklicken Sie einen Eintrag um ihn zu ändern.</translation>
<translation>#include %1 hinzufügen</translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation>Vorwärtsdeklaration für %1 hinzufügen</translation>
</message>
<message>

View File

@@ -22450,7 +22450,7 @@ devraient être gérés par le même processus clangd, ajoutez-les ici.</transla
<translation>Convertir en Camel Case</translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation>Ajouter la déclaration préalable pour %1</translation>
</message>
<message>

View File

@@ -14319,7 +14319,7 @@ to version control (%2)
<translation>#include %1 </translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation>%1 </translation>
</message>
<message>

View File

@@ -21537,7 +21537,7 @@ managed by the same clangd process, add them here.</source>
<translation>Skonwertuj do pliku binarnego</translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@@ -11815,7 +11815,7 @@ Flags: %3</source>
<translation>Добавить #include %1</translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation>Добавление предъобъявления %1</translation>
</message>
<message>

View File

@@ -12511,7 +12511,7 @@ Flags: %3</source>
<translation type="unfinished">#include %1</translation>
</message>
<message>
<source>Add forward declaration for %1</source>
<source>Add Forward Declaration for %1</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@@ -1903,7 +1903,7 @@ AddForwardDeclForUndefinedIdentifierOp::AddForwardDeclForUndefinedIdentifierOp(
int symbolPos)
: CppQuickFixOperation(interface, priority), m_className(fqClassName), m_symbolPos(symbolPos)
{
setDescription(Tr::tr("Add forward declaration for %1").arg(m_className));
setDescription(Tr::tr("Add Forward Declaration for %1").arg(m_className));
}
void AddForwardDeclForUndefinedIdentifierOp::perform()
@@ -9910,7 +9910,7 @@ public:
ConvertToMetaMethodCallOp(const CppQuickFixInterface &interface, CallAST *callAst)
: CppQuickFixOperation(interface), m_callAst(callAst)
{
setDescription(Tr::tr("Convert function call to Qt meta-method invocation"));
setDescription(Tr::tr("Convert Function Call to Qt Meta-Method Invocation"));
}
private:
@@ -10048,7 +10048,7 @@ public:
: CppQuickFixOperation(interface)
, m_state(std::make_shared<State>())
{
setDescription(Tr::tr("Move class to a dedicated set of source files"));
setDescription(Tr::tr("Move Class to a Dedicated Set of Source Files"));
m_state->originalFilePath = interface.currentFile()->filePath();
m_state->classAst = classAst;
m_state->namespacePath = namespacePath;