diff options
| author | TheKodeToad <TheKodeToad@proton.me> | 2023-06-20 11:05:26 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 11:05:26 +0100 | 
| commit | 3c648ff9fdbed9ed84774b45a3a7a99ccad3792d (patch) | |
| tree | a97780690cb88c1c95b1493c6dd6fa31c6b56b87 /launcher | |
| parent | af6bf11793fb463fe62c99695e56ff6599612d05 (diff) | |
| parent | f769b0b4c63888ac95416a4cc834aad2395f9b74 (diff) | |
| download | PrismLauncher-3c648ff9fdbed9ed84774b45a3a7a99ccad3792d.tar.gz PrismLauncher-3c648ff9fdbed9ed84774b45a3a7a99ccad3792d.tar.bz2 PrismLauncher-3c648ff9fdbed9ed84774b45a3a7a99ccad3792d.zip | |
Merge pull request #1233 from p2js/ui-consistency-fix
Remove inconsistent/unneeded question marks in UI
Diffstat (limited to 'launcher')
| -rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 6 | ||||
| -rw-r--r-- | launcher/ui/pages/global/LauncherPage.ui | 8 | ||||
| -rw-r--r-- | launcher/ui/pages/global/MinecraftPage.ui | 2 | ||||
| -rw-r--r-- | launcher/ui/pages/instance/InstanceSettingsPage.ui | 8 | 
4 files changed, 12 insertions, 12 deletions
| diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index 9e2fd111..c2794147 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -333,13 +333,13 @@ QVariant AccountList::data(const QModelIndex &index, int role) const              case MigrationColumn: {                  if(account->isMSA() || account->isOffline()) { -                    return tr("N/A", "Can Migrate?"); +                    return tr("N/A", "Can Migrate");                  }                  if (account->canMigrate()) { -                    return tr("Yes", "Can Migrate?"); +                    return tr("Yes", "Can Migrate");                  }                  else { -                    return tr("No", "Can Migrate?"); +                    return tr("No", "Can Migrate");                  }              } diff --git a/launcher/ui/pages/global/LauncherPage.ui b/launcher/ui/pages/global/LauncherPage.ui index 55bd3eea..d9116bfc 100644 --- a/launcher/ui/pages/global/LauncherPage.ui +++ b/launcher/ui/pages/global/LauncherPage.ui @@ -172,7 +172,7 @@               <string>Disable using metadata provided by mod providers (like Modrinth or Curseforge) for mods.</string>              </property>              <property name="text"> -             <string>Disable using metadata for mods?</string> +             <string>Disable using metadata for mods</string>              </property>             </widget>            </item> @@ -307,21 +307,21 @@            <item>             <widget class="QCheckBox" name="showConsoleCheck">              <property name="text"> -             <string>Show console while the game is &running?</string> +             <string>Show console while the game is &running</string>              </property>             </widget>            </item>            <item>             <widget class="QCheckBox" name="autoCloseConsoleCheck">              <property name="text"> -             <string>&Automatically close console when the game quits?</string> +             <string>&Automatically close console when the game quits</string>              </property>             </widget>            </item>            <item>             <widget class="QCheckBox" name="showConsoleErrorCheck">              <property name="text"> -             <string>Show console when the game &crashes?</string> +             <string>Show console when the game &crashes</string>              </property>             </widget>            </item> diff --git a/launcher/ui/pages/global/MinecraftPage.ui b/launcher/ui/pages/global/MinecraftPage.ui index 103881b5..8f5de725 100644 --- a/launcher/ui/pages/global/MinecraftPage.ui +++ b/launcher/ui/pages/global/MinecraftPage.ui @@ -51,7 +51,7 @@            <item>             <widget class="QCheckBox" name="maximizedCheckBox">              <property name="text"> -             <string>Start Minecraft &maximized?</string> +             <string>Start Minecraft &maximized</string>              </property>             </widget>            </item> diff --git a/launcher/ui/pages/instance/InstanceSettingsPage.ui b/launcher/ui/pages/instance/InstanceSettingsPage.ui index 19d6dc02..8427965d 100644 --- a/launcher/ui/pages/instance/InstanceSettingsPage.ui +++ b/launcher/ui/pages/instance/InstanceSettingsPage.ui @@ -269,7 +269,7 @@            <item>             <widget class="QCheckBox" name="maximizedCheckBox">              <property name="text"> -             <string>Start Minecraft maximized?</string> +             <string>Start Minecraft maximized</string>              </property>             </widget>            </item> @@ -341,21 +341,21 @@            <item>             <widget class="QCheckBox" name="showConsoleCheck">              <property name="text"> -             <string>Show console while the game is running?</string> +             <string>Show console while the game is running</string>              </property>             </widget>            </item>            <item>             <widget class="QCheckBox" name="autoCloseConsoleCheck">              <property name="text"> -             <string>Automatically close console when the game quits?</string> +             <string>Automatically close console when the game quits</string>              </property>             </widget>            </item>            <item>             <widget class="QCheckBox" name="showConsoleErrorCheck">              <property name="text"> -             <string>Show console when the game crashes?</string> +             <string>Show console when the game crashes</string>              </property>             </widget>            </item> | 
