fix: Fixed typo in the use of the project name

This commit is contained in:
Petr Mironychev
2025-03-27 00:34:10 +01:00
parent 7d06ab04dc
commit d58ff90458
10 changed files with 15 additions and 15 deletions

View File

@ -100,7 +100,7 @@ public:
ActionBuilder requestAction(this, Constants::QODE_ASSIST_REQUEST_SUGGESTION);
requestAction.setToolTip(
Tr::tr("Generate Qode Assist suggestion at the current cursor position."));
Tr::tr("Generate QodeAssist suggestion at the current cursor position."));
requestAction.setText(Tr::tr("Request QodeAssist Suggestion"));
requestAction.setIcon(QCODEASSIST_ICON.icon());
const QKeySequence defaultShortcut = QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_Q);
@ -110,7 +110,7 @@ public:
if (m_qodeAssistClient && m_qodeAssistClient->reachable()) {
m_qodeAssistClient->requestCompletions(editor);
} else
qWarning() << "The Qode Assist is not ready. Please check your connection and "
qWarning() << "The QodeAssist is not ready. Please check your connection and "
"settings.";
}
});