diff options
author | Loetkolben <sirloetkolben@gmail.com> | 2016-03-22 23:28:47 +0100 |
---|---|---|
committer | Loetkolben <sirloetkolben@gmail.com> | 2016-03-23 12:42:38 +0100 |
commit | 0c06ab364c58a09655c62272605eec9ce611f929 (patch) | |
tree | cbc0ee2b57e6e114052eaf5fc4fa5ce907f53674 /application/pages | |
parent | 07608ebc4cdcbbb9e886b69af9aba6043af36612 (diff) | |
download | MultiMC-0c06ab364c58a09655c62272605eec9ce611f929.tar MultiMC-0c06ab364c58a09655c62272605eec9ce611f929.tar.gz MultiMC-0c06ab364c58a09655c62272605eec9ce611f929.tar.lz MultiMC-0c06ab364c58a09655c62272605eec9ce611f929.tar.xz MultiMC-0c06ab364c58a09655c62272605eec9ce611f929.zip |
NOISSUE Remove tr(...) where unnecessary.
Diffstat (limited to 'application/pages')
-rw-r--r-- | application/pages/ModFolderPage.cpp | 2 | ||||
-rw-r--r-- | application/pages/global/ExternalToolsPage.ui | 6 | ||||
-rw-r--r-- | application/pages/global/MultiMCPage.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/application/pages/ModFolderPage.cpp b/application/pages/ModFolderPage.cpp index 3c68b23f..bbe16671 100644 --- a/application/pages/ModFolderPage.cpp +++ b/application/pages/ModFolderPage.cpp @@ -43,7 +43,7 @@ ModFolderPage::ModFolderPage(BaseInstance *inst, std::shared_ptr<ModList> mods, m_displayName = displayName; m_iconName = iconName; m_helpName = helpPage; - m_filter = tr("%1 (*.zip *.jar)"); + m_filter = "%1 (*.zip *.jar)"; ui->modTreeView->setModel(m_mods.get()); ui->modTreeView->installEventFilter(this); auto smodel = ui->modTreeView->selectionModel(); diff --git a/application/pages/global/ExternalToolsPage.ui b/application/pages/global/ExternalToolsPage.ui index df80d99e..cdb33b35 100644 --- a/application/pages/global/ExternalToolsPage.ui +++ b/application/pages/global/ExternalToolsPage.ui @@ -63,7 +63,7 @@ <item> <widget class="QLabel" name="jprofilerLink"> <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> </widget> </item> @@ -100,7 +100,7 @@ <item> <widget class="QLabel" name="jvisualvmLink"> <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> </widget> </item> @@ -137,7 +137,7 @@ <item> <widget class="QLabel" name="mceditLink"> <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> </widget> </item> diff --git a/application/pages/global/MultiMCPage.h b/application/pages/global/MultiMCPage.h index 4ecc2d93..5d4f048e 100644 --- a/application/pages/global/MultiMCPage.h +++ b/application/pages/global/MultiMCPage.h @@ -41,7 +41,7 @@ public: QString displayName() const override { - return tr("MultiMC"); + return "MultiMC"; } QIcon icon() const override { |