- fix: english typos. (thanks for sangiye0@github)
This commit is contained in:
parent
4bebf8da65
commit
21b4494f3c
1
NEWS.md
1
NEWS.md
|
@ -3,6 +3,7 @@ Red Panda C++ Version 2.24
|
||||||
- fix: members of elements of stl maps are not correctly suggested.
|
- fix: members of elements of stl maps are not correctly suggested.
|
||||||
- fix: memory view's cell size is too wide in linux.
|
- fix: memory view's cell size is too wide in linux.
|
||||||
- fix: Code completion doesn't work if "min id length to show completion" is not 1.
|
- fix: Code completion doesn't work if "min id length to show completion" is not 1.
|
||||||
|
- fix: english typos. (thanks for sangiye0@github)
|
||||||
|
|
||||||
Red Panda C++ Version 2.23
|
Red Panda C++ Version 2.23
|
||||||
|
|
||||||
|
|
|
@ -429,7 +429,7 @@ bool Editor::saveAs(const QString &name, bool fromProject){
|
||||||
|
|
||||||
if (pMainWindow->editorList()->getOpenedEditorByFilename(newName)) {
|
if (pMainWindow->editorList()->getOpenedEditorByFilename(newName)) {
|
||||||
QMessageBox::critical(pMainWindow,tr("Error"),
|
QMessageBox::critical(pMainWindow,tr("Error"),
|
||||||
tr("File %1 already openned!").arg(newName));
|
tr("File %1 already opened!").arg(newName));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Update project information
|
// Update project information
|
||||||
|
|
|
@ -5526,7 +5526,7 @@ void MainWindow::closeEvent(QCloseEvent *event) {
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
} /*else {
|
} /*else {
|
||||||
//if don't save last open files, close project before editors, to save project openned editors;
|
//if don't save last open files, close project before editors, to save project opened editors;
|
||||||
|
|
||||||
}*/
|
}*/
|
||||||
if (mProject) {
|
if (mProject) {
|
||||||
|
|
|
@ -2751,7 +2751,7 @@ bool ProjectModel::setData(const QModelIndex &index, const QVariant &value, int
|
||||||
}
|
}
|
||||||
// Target filename does not exist anymore. Do a rename
|
// Target filename does not exist anymore. Do a rename
|
||||||
// change name in project file first (no actual file renaming on disk)
|
// change name in project file first (no actual file renaming on disk)
|
||||||
//save old file, if it is openned;
|
//save old file, if it is opened;
|
||||||
// remove old file from monitor list
|
// remove old file from monitor list
|
||||||
mProject->fileSystemWatcher()->removePath(oldName);
|
mProject->fileSystemWatcher()->removePath(oldName);
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="rbAllOpennedFiles">
|
<widget class="QRadioButton" name="rbAllOpennedFiles">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>All files openned</string>
|
<string>All files opened</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="rbOpenInMultiApplication">
|
<widget class="QRadioButton" name="rbOpenInMultiApplication">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Independant Red Panda C++ applications</string>
|
<string>Independent Red Panda C++ applications</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -71,7 +71,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>6</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
|
@ -738,7 +738,7 @@
|
||||||
<item row="7" column="0">
|
<item row="7" column="0">
|
||||||
<widget class="QCheckBox" name="chkKeepOneLineStatements">
|
<widget class="QCheckBox" name="chkKeepOneLineStatements">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Don't break multimple statements residing on one line</string>
|
<string>Don't break multiple statements residing on one line</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -890,7 +890,7 @@
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
<buttongroups>
|
<buttongroups>
|
||||||
<buttongroup name="pointerBtnGroup"/>
|
|
||||||
<buttongroup name="referenceBtnGroup"/>
|
<buttongroup name="referenceBtnGroup"/>
|
||||||
|
<buttongroup name="pointerBtnGroup"/>
|
||||||
</buttongroups>
|
</buttongroups>
|
||||||
</ui>
|
</ui>
|
||||||
|
|
|
@ -140,7 +140,7 @@ PSettingsDialog SettingsDialog::optionDialog()
|
||||||
dialog->setWindowTitle(tr("Options"));
|
dialog->setWindowTitle(tr("Options"));
|
||||||
|
|
||||||
SettingsWidget* widget;
|
SettingsWidget* widget;
|
||||||
widget = new EnvironmentAppearenceWidget(tr("Appearence"),tr("Environment"));
|
widget = new EnvironmentAppearenceWidget(tr("Appearance"),tr("Environment"));
|
||||||
dialog->addWidget(widget);
|
dialog->addWidget(widget);
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name":"Contract",
|
"name":"Contrast",
|
||||||
"name_zh_CN": "高对比度主题",
|
"name_zh_CN": "高对比度主题",
|
||||||
"useQtFusionStyle": true,
|
"useQtFusionStyle": true,
|
||||||
"isDark": true,
|
"isDark": true,
|
||||||
|
|
|
@ -1035,7 +1035,7 @@
|
||||||
<translation>Salvar como</translation>
|
<translation>Salvar como</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File %1 already openned!</source>
|
<source>File %1 already opened!</source>
|
||||||
<translation>Arquivo %1 já aberto!</translation>
|
<translation>Arquivo %1 já aberto!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -1122,7 +1122,7 @@
|
||||||
<translation>Arquivo atual</translation>
|
<translation>Arquivo atual</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>All files openned</source>
|
<source>All files opened</source>
|
||||||
<translation>Todos os arquivos abertos</translation>
|
<translation>Todos os arquivos abertos</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -1834,7 +1834,7 @@
|
||||||
<translation>Basta marcar ou desmarcar quais tipos de arquivos o Red Panda C++ irá registrar como aplicativos padrões para abrí-los ...</translation>
|
<translation>Basta marcar ou desmarcar quais tipos de arquivos o Red Panda C++ irá registrar como aplicativos padrões para abrí-los ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Independant Red Panda C++ applications</source>
|
<source>Independent Red Panda C++ applications</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -2539,7 +2539,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Don't break multimple statements residing on one line</source>
|
<source>Don't break multiple statements residing on one line</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -7466,7 +7466,7 @@
|
||||||
<translation>Conjunto de problemas</translation>
|
<translation>Conjunto de problemas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Appearence</source>
|
<source>Appearance</source>
|
||||||
<translation>Aparência</translation>
|
<translation>Aparência</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
|
@ -1518,7 +1518,7 @@ Are you really want to continue?</oldsource>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../editor.cpp" line="434"/>
|
<location filename="../editor.cpp" line="434"/>
|
||||||
<source>File %1 already openned!</source>
|
<source>File %1 already opened!</source>
|
||||||
<translation>文件%1已经被打开!</translation>
|
<translation>文件%1已经被打开!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -1632,7 +1632,7 @@ Are you really want to continue?</oldsource>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../settingsdialog/editorautosavewidget.ui" line="100"/>
|
<location filename="../settingsdialog/editorautosavewidget.ui" line="100"/>
|
||||||
<source>All files openned</source>
|
<source>All files opened</source>
|
||||||
<translation>所有打开的文件</translation>
|
<translation>所有打开的文件</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -2520,7 +2520,7 @@ Are you really want to continue?</oldsource>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../settingsdialog/environmentfileassociationwidget.ui" line="26"/>
|
<location filename="../settingsdialog/environmentfileassociationwidget.ui" line="26"/>
|
||||||
<source>Independant Red Panda C++ applications</source>
|
<source>Independent Red Panda C++ applications</source>
|
||||||
<translation>独立的小熊猫C++程序进程</translation>
|
<translation>独立的小熊猫C++程序进程</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -3427,7 +3427,7 @@ Are you really want to continue?</oldsource>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../settingsdialog/formattergeneralwidget.ui" line="741"/>
|
<location filename="../settingsdialog/formattergeneralwidget.ui" line="741"/>
|
||||||
<source>Don't break multimple statements residing on one line</source>
|
<source>Don't break multiple statements residing on one line</source>
|
||||||
<translation>不对同一行上的多条语句断行</translation>
|
<translation>不对同一行上的多条语句断行</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -10365,7 +10365,7 @@ Are you really want to continue?</oldsource>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../settingsdialog/settingsdialog.cpp" line="143"/>
|
<location filename="../settingsdialog/settingsdialog.cpp" line="143"/>
|
||||||
<source>Appearence</source>
|
<source>Appearance</source>
|
||||||
<translation>外观</translation>
|
<translation>外观</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
|
@ -888,7 +888,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File %1 already openned!</source>
|
<source>File %1 already opened!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -975,7 +975,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>All files openned</source>
|
<source>All files opened</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -1651,7 +1651,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Independant Red Panda C++ applications</source>
|
<source>Independent Red Panda C++ applications</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -2324,7 +2324,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Don't break multimple statements residing on one line</source>
|
<source>Don't break multiple statements residing on one line</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -6820,7 +6820,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Appearence</source>
|
<source>Appearance</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Loading…
Reference in New Issue