NOISSUE Remove tr(...) where unnecessary.
This commit is contained in:
parent
07608ebc4c
commit
0c06ab364c
@ -34,7 +34,7 @@ public:
|
|||||||
{
|
{
|
||||||
values.append(new VersionPage(onesix.get()));
|
values.append(new VersionPage(onesix.get()));
|
||||||
auto modsPage = new ModFolderPage(onesix.get(), onesix->loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods");
|
auto modsPage = new ModFolderPage(onesix.get(), onesix->loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods");
|
||||||
modsPage->setFilter(tr("%1 (*.zip *.jar *.litemod)"));
|
modsPage->setFilter("%1 (*.zip *.jar *.litemod)");
|
||||||
values.append(modsPage);
|
values.append(modsPage);
|
||||||
values.append(new CoreModFolderPage(onesix.get(), onesix->coreModList(), "coremods", "coremods", tr("Core mods"), "Core-mods"));
|
values.append(new CoreModFolderPage(onesix.get(), onesix->coreModList(), "coremods", "coremods", tr("Core mods"), "Core-mods"));
|
||||||
values.append(new ResourcePackPage(onesix.get()));
|
values.append(new ResourcePackPage(onesix.get()));
|
||||||
@ -51,7 +51,7 @@ public:
|
|||||||
//values.append(new LegacyUpgradePage(this));
|
//values.append(new LegacyUpgradePage(this));
|
||||||
values.append(new LegacyJarModPage(legacy.get()));
|
values.append(new LegacyJarModPage(legacy.get()));
|
||||||
auto modsPage = new ModFolderPage(legacy.get(), legacy->loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods");
|
auto modsPage = new ModFolderPage(legacy.get(), legacy->loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods");
|
||||||
modsPage->setFilter(tr("%1 (*.zip *.jar *.litemod)"));
|
modsPage->setFilter("%1 (*.zip *.jar *.litemod)");
|
||||||
values.append(modsPage);
|
values.append(modsPage);
|
||||||
values.append(new ModFolderPage(legacy.get(), legacy->coreModList(), "coremods", "coremods", tr("Core mods"), "Loader-mods"));
|
values.append(new ModFolderPage(legacy.get(), legacy->coreModList(), "coremods", "coremods", tr("Core mods"), "Loader-mods"));
|
||||||
values.append(new TexturePackPage(legacy.get()));
|
values.append(new TexturePackPage(legacy.get()));
|
||||||
|
@ -43,7 +43,7 @@ void JavaCommon::TestCheck::javaArgsWereBad(JavaCheckResult result)
|
|||||||
QString text;
|
QString text;
|
||||||
htmlError.replace('\n', "<br />");
|
htmlError.replace('\n', "<br />");
|
||||||
text += tr("The specified java binary didn't work with the arguments you provided:<br />");
|
text += tr("The specified java binary didn't work with the arguments you provided:<br />");
|
||||||
text += tr("<font color=\"red\">%1</font>").arg(htmlError);
|
text += QString("<font color=\"red\">%1</font>").arg(htmlError);
|
||||||
CustomMessageBox::selectable(m_parent, tr("Java test failure"), text, QMessageBox::Warning)
|
CustomMessageBox::selectable(m_parent, tr("Java test failure"), text, QMessageBox::Warning)
|
||||||
->show();
|
->show();
|
||||||
}
|
}
|
||||||
|
@ -295,7 +295,7 @@ public:
|
|||||||
|
|
||||||
void retranslateUi(QMainWindow *MainWindow)
|
void retranslateUi(QMainWindow *MainWindow)
|
||||||
{
|
{
|
||||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MultiMC 5", 0));
|
MainWindow->setWindowTitle("MultiMC 5");
|
||||||
actionAddInstance->setText(QApplication::translate("MainWindow", "Add Instance", 0));
|
actionAddInstance->setText(QApplication::translate("MainWindow", "Add Instance", 0));
|
||||||
actionAddInstance->setToolTip(QApplication::translate("MainWindow", "Add a new instance.", 0));
|
actionAddInstance->setToolTip(QApplication::translate("MainWindow", "Add a new instance.", 0));
|
||||||
actionAddInstance->setStatusTip(QApplication::translate("MainWindow", "Add a new instance.", 0));
|
actionAddInstance->setStatusTip(QApplication::translate("MainWindow", "Add a new instance.", 0));
|
||||||
@ -638,7 +638,7 @@ void MainWindow::showInstanceContextMenu(const QPoint &pos)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QAction *actionVoid = new QAction(tr("MultiMC"), this);
|
QAction *actionVoid = new QAction("MultiMC", this);
|
||||||
actionVoid->setEnabled(false);
|
actionVoid->setEnabled(false);
|
||||||
|
|
||||||
QAction *actionCreateInstance = new QAction(tr("Create instance"), this);
|
QAction *actionCreateInstance = new QAction(tr("Create instance"), this);
|
||||||
|
@ -180,7 +180,7 @@
|
|||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><html><head/><body><p><a href="http://github.com/MultiMC/MultiMC5"><span style=" text-decoration: underline; color:#0000ff;">http://github.com/MultiMC/MultiMC5</span></a></p></body></html></string>
|
<string notr="true"><html><head/><body><p><a href="http://github.com/MultiMC/MultiMC5"><span style=" text-decoration: underline; color:#0000ff;">http://github.com/MultiMC/MultiMC5</span></a></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>Qt::AlignCenter</set>
|
<set>Qt::AlignCenter</set>
|
||||||
|
@ -43,7 +43,7 @@ ModFolderPage::ModFolderPage(BaseInstance *inst, std::shared_ptr<ModList> mods,
|
|||||||
m_displayName = displayName;
|
m_displayName = displayName;
|
||||||
m_iconName = iconName;
|
m_iconName = iconName;
|
||||||
m_helpName = helpPage;
|
m_helpName = helpPage;
|
||||||
m_filter = tr("%1 (*.zip *.jar)");
|
m_filter = "%1 (*.zip *.jar)";
|
||||||
ui->modTreeView->setModel(m_mods.get());
|
ui->modTreeView->setModel(m_mods.get());
|
||||||
ui->modTreeView->installEventFilter(this);
|
ui->modTreeView->installEventFilter(this);
|
||||||
auto smodel = ui->modTreeView->selectionModel();
|
auto smodel = ui->modTreeView->selectionModel();
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="jprofilerLink">
|
<widget class="QLabel" name="jprofilerLink">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><html><head/><body><p><a href="http://www.ej-technologies.com/products/jprofiler/overview.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.ej-technologies.com/products/jprofiler/overview.html</span></a></p></body></html></string>
|
<string notr="true"><html><head/><body><p><a href="http://www.ej-technologies.com/products/jprofiler/overview.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.ej-technologies.com/products/jprofiler/overview.html</span></a></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -100,7 +100,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="jvisualvmLink">
|
<widget class="QLabel" name="jvisualvmLink">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><html><head/><body><p><a href="http://visualvm.java.net/"><span style=" text-decoration: underline; color:#0000ff;">http://visualvm.java.net/</span></a></p></body></html></string>
|
<string notr="true"><html><head/><body><p><a href="http://visualvm.java.net/"><span style=" text-decoration: underline; color:#0000ff;">http://visualvm.java.net/</span></a></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -137,7 +137,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="mceditLink">
|
<widget class="QLabel" name="mceditLink">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><html><head/><body><p><a href="http://www.mcedit.net/"><span style=" text-decoration: underline; color:#0000ff;">http://www.mcedit.net/</span></a></p></body></html></string>
|
<string notr="true"><html><head/><body><p><a href="http://www.mcedit.net/"><span style=" text-decoration: underline; color:#0000ff;">http://www.mcedit.net/</span></a></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -41,7 +41,7 @@ public:
|
|||||||
|
|
||||||
QString displayName() const override
|
QString displayName() const override
|
||||||
{
|
{
|
||||||
return tr("MultiMC");
|
return "MultiMC";
|
||||||
}
|
}
|
||||||
QIcon icon() const override
|
QIcon icon() const override
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user