From 6ade196e642ef0ab228ebff8680e78b67df962ff Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 May 2025 15:54:59 -0400 Subject: [PATCH] Note in the Dalamud version text if Astra will download it The same text change we did for Wine in the previous commit. --- launcher/src/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 48488ed..15902fa 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -230,7 +230,7 @@ QString Profile::dalamudVersionText() const { QString text; if (m_dalamudVersion.isEmpty()) { - text += i18n("Dalamud is not installed."); + text += i18n("Dalamud will be installed when you launch the game."); } else { text += QStringLiteral("Dalamud (%1)").arg(m_dalamudVersion); }