forked from qt-creator/qt-creator
Typos spotted while translating
This commit is contained in:
@@ -1028,7 +1028,7 @@ private:
|
|||||||
, m_option(option)
|
, m_option(option)
|
||||||
, m_context(context)
|
, m_context(context)
|
||||||
{
|
{
|
||||||
setDescription(QApplication::translate("CppTools::QuickFix", "Mark as translateable"));
|
setDescription(QApplication::translate("CppTools::QuickFix", "Mark as translatable"));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void performChanges(CppRefactoringFile *currentFile, CppRefactoringChanges *)
|
virtual void performChanges(CppRefactoringFile *currentFile, CppRefactoringChanges *)
|
||||||
|
@@ -240,7 +240,7 @@ DebuggerSettings *DebuggerSettings::instance()
|
|||||||
item->setCheckable(true);
|
item->setCheckable(true);
|
||||||
item->setDefaultValue(true);
|
item->setDefaultValue(true);
|
||||||
item->setToolTip(tr("This switches the Locals&Watchers view to "
|
item->setToolTip(tr("This switches the Locals&Watchers view to "
|
||||||
"automatically derefence pointers. This saves a level in the "
|
"automatically dereference pointers. This saves a level in the "
|
||||||
"tree view, but also loses data for the now-missing intermediate "
|
"tree view, but also loses data for the now-missing intermediate "
|
||||||
"level."));
|
"level."));
|
||||||
instance->insertItem(AutoDerefPointers, item);
|
instance->insertItem(AutoDerefPointers, item);
|
||||||
|
@@ -3346,7 +3346,7 @@ bool FakeVimHandler::Private::handleExWriteCommand(const ExCommand &cmd)
|
|||||||
file3.open(QIODevice::ReadOnly);
|
file3.open(QIODevice::ReadOnly);
|
||||||
QByteArray ba = file3.readAll();
|
QByteArray ba = file3.readAll();
|
||||||
showBlackMessage(FakeVimHandler::tr("\"%1\" %2 %3L, %4C written")
|
showBlackMessage(FakeVimHandler::tr("\"%1\" %2 %3L, %4C written")
|
||||||
.arg(fileName).arg(exists ? " " : " [New] ")
|
.arg(fileName).arg(exists ? " " : tr(" [New] "))
|
||||||
.arg(ba.count('\n')).arg(ba.size()));
|
.arg(ba.count('\n')).arg(ba.size()));
|
||||||
//if (quitAll)
|
//if (quitAll)
|
||||||
// passUnknownExCommand(forced ? "qa!" : "qa");
|
// passUnknownExCommand(forced ? "qa!" : "qa");
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
- Make texts translateable
|
- Make texts translatable
|
||||||
- Do not use QErrorMessage, Creator standard error instead?
|
- Do not use QErrorMessage, Creator standard error instead?
|
||||||
Commands:
|
Commands:
|
||||||
- P2:
|
- P2:
|
||||||
|
Reference in New Issue
Block a user