Consistent case style
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
@@ -46,7 +46,7 @@ class InstancePageProvider : protected QObject, public BasePageProvider {
|
||||
// values.append(new GameOptionsPage(onesix.get()));
|
||||
values.append(new ScreenshotsPage(FS::PathCombine(onesix->gameRoot(), "screenshots")));
|
||||
values.append(new InstanceSettingsPage(onesix));
|
||||
values.append(new OtherLogsPage("logs", tr("Other logs"), "Other-Logs", inst));
|
||||
values.append(new OtherLogsPage("logs", tr("Other Logs"), "Other-Logs", inst));
|
||||
return values;
|
||||
}
|
||||
|
||||
|
||||
@@ -239,7 +239,7 @@
|
||||
<iconset theme="news"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>More news...</string>
|
||||
<string>More News...</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Open the development blog to read more news about %1.</string>
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
<string>Uses your system's default proxy settings.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use S&ystem Settings</string>
|
||||
<string>Use s&ystem settings</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">proxyGroup</string>
|
||||
|
||||
@@ -28,7 +28,7 @@ class DataPackPage : public ExternalResourcesPage {
|
||||
public:
|
||||
explicit DataPackPage(BaseInstance* instance, std::shared_ptr<DataPackFolderModel> model, QWidget* parent = nullptr);
|
||||
|
||||
QString displayName() const override { return QObject::tr("Data packs"); }
|
||||
QString displayName() const override { return QObject::tr("Data Packs"); }
|
||||
QIcon icon() const override { return APPLICATION->getThemedIcon("datapacks"); }
|
||||
QString id() const override { return "datapacks"; }
|
||||
QString helpPage() const override { return "Data-packs"; }
|
||||
|
||||
@@ -213,7 +213,7 @@ bool ManagedPackPage::runUpdateTask(InstanceTask* task)
|
||||
|
||||
void ManagedPackPage::suggestVersion()
|
||||
{
|
||||
ui->updateButton->setText(tr("Update pack"));
|
||||
ui->updateButton->setText(tr("Update Pack"));
|
||||
ui->updateButton->setDisabled(false);
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Pack information</string>
|
||||
<string>Pack Information</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_2">
|
||||
<item row="0" column="0">
|
||||
@@ -42,7 +42,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="packNameLabel">
|
||||
<property name="text">
|
||||
<string>Pack name:</string>
|
||||
<string>Pack Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -162,7 +162,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Update from file</string>
|
||||
<string>Update From File</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -82,7 +82,7 @@ class CoreModFolderPage : public ModFolderPage {
|
||||
explicit CoreModFolderPage(BaseInstance* inst, std::shared_ptr<ModFolderModel> mods, QWidget* parent = 0);
|
||||
virtual ~CoreModFolderPage() = default;
|
||||
|
||||
virtual QString displayName() const override { return tr("Core mods"); }
|
||||
virtual QString displayName() const override { return tr("Core Mods"); }
|
||||
virtual QIcon icon() const override { return APPLICATION->getThemedIcon("coremods"); }
|
||||
virtual QString id() const override { return "coremods"; }
|
||||
virtual QString helpPage() const override { return "Core-mods"; }
|
||||
|
||||
@@ -50,7 +50,7 @@ class ResourcePackPage : public ExternalResourcesPage {
|
||||
public:
|
||||
explicit ResourcePackPage(MinecraftInstance* instance, std::shared_ptr<ResourcePackFolderModel> model, QWidget* parent = 0);
|
||||
|
||||
QString displayName() const override { return tr("Resource packs"); }
|
||||
QString displayName() const override { return tr("Resource Packs"); }
|
||||
QIcon icon() const override { return APPLICATION->getThemedIcon("resourcepacks"); }
|
||||
QString id() const override { return "resourcepacks"; }
|
||||
QString helpPage() const override { return "Resource-packs"; }
|
||||
|
||||
@@ -47,7 +47,7 @@ class ShaderPackPage : public ExternalResourcesPage {
|
||||
explicit ShaderPackPage(MinecraftInstance* instance, std::shared_ptr<ShaderPackFolderModel> model, QWidget* parent = nullptr);
|
||||
~ShaderPackPage() override = default;
|
||||
|
||||
QString displayName() const override { return tr("Shader packs"); }
|
||||
QString displayName() const override { return tr("Shader Packs"); }
|
||||
QIcon icon() const override { return APPLICATION->getThemedIcon("shaderpacks"); }
|
||||
QString id() const override { return "shaderpacks"; }
|
||||
QString helpPage() const override { return "shader-packs"; }
|
||||
|
||||
Reference in New Issue
Block a user