diff --git a/launcher/VersionProxyModel.cpp b/launcher/VersionProxyModel.cpp
index 552900d35..12a82f73d 100644
--- a/launcher/VersionProxyModel.cpp
+++ b/launcher/VersionProxyModel.cpp
@@ -140,9 +140,9 @@ QVariant VersionProxyModel::headerData(int section, Qt::Orientation orientation,
case Path:
return tr("Filesystem path to this version");
case JavaName:
- return tr("The alternative name of the java version");
+ return tr("The alternative name of the Java version");
case JavaMajor:
- return tr("The java major version");
+ return tr("The Java major version");
case Time:
return tr("Release date of this version");
}
diff --git a/launcher/java/download/ArchiveDownloadTask.cpp b/launcher/java/download/ArchiveDownloadTask.cpp
index 6d6ab0cef..bb7cc568d 100644
--- a/launcher/java/download/ArchiveDownloadTask.cpp
+++ b/launcher/java/download/ArchiveDownloadTask.cpp
@@ -65,7 +65,7 @@ void ArchiveDownloadTask::executeTask()
void ArchiveDownloadTask::extractJava(QString input)
{
- setStatus(tr("Extracting java"));
+ setStatus(tr("Extracting Java"));
if (input.endsWith("tar")) {
setStatus(tr("Extracting Java (Progress is not reported for tar archives)"));
QFile in(input);
diff --git a/launcher/ui/MainWindow.ui b/launcher/ui/MainWindow.ui
index 89e536b01..f20c34206 100644
--- a/launcher/ui/MainWindow.ui
+++ b/launcher/ui/MainWindow.ui
@@ -798,7 +798,7 @@
Java
- Open the java folder in a file browser. Only available if the built-in Java downloader is used.
+ Open the Java folder in a file browser. Only available if the built-in Java downloader is used.
diff --git a/launcher/ui/java/InstallJavaDialog.cpp b/launcher/ui/java/InstallJavaDialog.cpp
index f01edc5e5..0ece3220b 100644
--- a/launcher/ui/java/InstallJavaDialog.cpp
+++ b/launcher/ui/java/InstallJavaDialog.cpp
@@ -57,13 +57,13 @@ class InstallJavaPage : public QWidget, public BasePage {
majorVersionSelect = new VersionSelectWidget(this);
majorVersionSelect->selectCurrent();
- majorVersionSelect->setEmptyString(tr("No java versions are currently available in the meta."));
- majorVersionSelect->setEmptyErrorString(tr("Couldn't load or download the java version lists!"));
+ majorVersionSelect->setEmptyString(tr("No Java versions are currently available in the meta."));
+ majorVersionSelect->setEmptyErrorString(tr("Couldn't load or download the Java version lists!"));
horizontalLayout->addWidget(majorVersionSelect, 1);
javaVersionSelect = new VersionSelectWidget(this);
- javaVersionSelect->setEmptyString(tr("No java versions are currently available for your OS."));
- javaVersionSelect->setEmptyErrorString(tr("Couldn't load or download the java version lists!"));
+ javaVersionSelect->setEmptyString(tr("No Java versions are currently available for your OS."));
+ javaVersionSelect->setEmptyErrorString(tr("Couldn't load or download the Java version lists!"));
horizontalLayout->addWidget(javaVersionSelect, 4);
connect(majorVersionSelect, &VersionSelectWidget::selectedVersionChanged, this, &InstallJavaPage::setSelectedVersion);
connect(majorVersionSelect, &VersionSelectWidget::selectedVersionChanged, this, &InstallJavaPage::selectionChanged);
diff --git a/launcher/ui/pages/global/JavaPage.cpp b/launcher/ui/pages/global/JavaPage.cpp
index 6699b00c0..0ae296815 100644
--- a/launcher/ui/pages/global/JavaPage.cpp
+++ b/launcher/ui/pages/global/JavaPage.cpp
@@ -67,8 +67,8 @@ JavaPage::JavaPage(QWidget* parent) : QWidget(parent), ui(new Ui::JavaPage)
ui->managedJavaList->initialize(new JavaInstallList(this, true));
ui->managedJavaList->setResizeOn(2);
ui->managedJavaList->selectCurrent();
- ui->managedJavaList->setEmptyString(tr("No managed java versions are installed"));
- ui->managedJavaList->setEmptyErrorString(tr("Couldn't load the managed java list!"));
+ ui->managedJavaList->setEmptyString(tr("No managed Java versions are installed"));
+ ui->managedJavaList->setEmptyErrorString(tr("Couldn't load the managed Java list!"));
connect(ui->autodetectJavaCheckBox, &QCheckBox::stateChanged, this, [this] {
ui->autodownloadCheckBox->setEnabled(ui->autodetectJavaCheckBox->isChecked());
if (!ui->autodetectJavaCheckBox->isChecked())
diff --git a/launcher/ui/setupwizard/AutoJavaWizardPage.ui b/launcher/ui/setupwizard/AutoJavaWizardPage.ui
index bd72cf695..a862524b0 100644
--- a/launcher/ui/setupwizard/AutoJavaWizardPage.ui
+++ b/launcher/ui/setupwizard/AutoJavaWizardPage.ui
@@ -30,7 +30,7 @@
-
- We've added a feature to automatically download the correct Java version for each version of Minecraft(this can be changed in the Java Settings). Would you like to enable or disable this feature?
+ We've added a feature to automatically download the correct Java version for each version of Minecraft (this can be changed in the Java Settings). Would you like to enable or disable this feature?
true
diff --git a/launcher/ui/setupwizard/JavaWizardPage.cpp b/launcher/ui/setupwizard/JavaWizardPage.cpp
index 47718d6da..8caae173c 100644
--- a/launcher/ui/setupwizard/JavaWizardPage.cpp
+++ b/launcher/ui/setupwizard/JavaWizardPage.cpp
@@ -83,6 +83,6 @@ void JavaWizardPage::retranslate()
{
setTitle(tr("Java"));
setSubTitle(
- tr("Please select how much memory to allocate to instances and if Prism Launcher should manage java automatically or manually."));
+ tr("Please select how much memory to allocate to instances and if Prism Launcher should manage Java automatically or manually."));
m_java_widget->retranslate();
}