Change a few occurrences of "prism" to "fjord"

This commit is contained in:
Evan Goode 2024-10-26 16:45:14 -04:00
parent c15afbda4a
commit b496316241
3 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@
<key>NSMicrophoneUsageDescription</key>
<string>A Minecraft mod wants to access your microphone.</string>
<key>NSDownloadsFolderUsageDescription</key>
<string>Prism uses access to your Downloads folder to help you more quickly add mods that can't be automatically downloaded to your instance. You can change where Prism scans for downloaded mods in Settings or the prompt that appears.</string>
<string>Fjord uses access to your Downloads folder to help you more quickly add mods that can't be automatically downloaded to your instance. You can change where Fjord scans for downloaded mods in Settings or the prompt that appears.</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
@ -55,7 +55,7 @@
<string>mrpack</string>
</array>
<key>CFBundleTypeName</key>
<string>Prism Launcher instance</string>
<string>Fjord Launcher instance</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>TEXT</string>
@ -81,10 +81,10 @@
</dict>
<dict>
<key>CFBundleURLName</key>
<string>Prismlauncher</string>
<string>FjordLauncher</string>
<key>CFBundleURLSchemes</key>
<array>
<string>prismlauncher</string>
<string>fjordlauncher</string>
</array>
</dict>
</array>

View File

@ -74,7 +74,7 @@ FileLinkApp::FileLinkApp(int& argc, char** argv) : QCoreApplication(argc, argv),
// Commandline parsing
QCommandLineParser parser;
parser.setApplicationDescription(QObject::tr("a batch MKLINK program for windows to be used with prismlauncher"));
parser.setApplicationDescription(QObject::tr("a batch MKLINK program for windows to be used with fjordlauncher"));
parser.addOptions({ { { "s", "server" }, "Join the specified server on launch", "pipe name" },
{ { "H", "hard" }, "use hard links instead of symbolic", "true/false" } });

View File

@ -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 Fjord Launcher should manage Java automatically or manually."));
m_java_widget->retranslate();
}