From 9c489aacf8a7227e5d18b40b01289ae78967b96e Mon Sep 17 00:00:00 2001 From: Denis Titovets Date: Sat, 28 Feb 2026 16:58:07 +0300 Subject: [PATCH] Use better text structure for `ScreenshotSaved` notification (#36701) reads a bit better when filename isn't in main text also added "click to view" text by analogy with `LogsExportFinished` | master | pr | |-|-| | image | image | --- osu.Game/Localisation/NotificationsStrings.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/osu.Game/Localisation/NotificationsStrings.cs b/osu.Game/Localisation/NotificationsStrings.cs index 835dfef08e..a8dac2d25c 100644 --- a/osu.Game/Localisation/NotificationsStrings.cs +++ b/osu.Game/Localisation/NotificationsStrings.cs @@ -236,9 +236,11 @@ Click to see what's new!", version); public static LocalisableString ElevatedPrivileges(LocalisableString user) => new TranslatableString(getKey(@"elevated_privileges"), @"Running osu! as {0} does not improve performance, may break integrations and poses a security risk. Please run the game as a normal user.", user); /// - /// "Screenshot {0} saved!" + /// "Screenshot saved! Click to view. + /// {0}" /// - public static LocalisableString ScreenshotSaved(string filename) => new TranslatableString(getKey(@"screenshot_saved"), @"Screenshot {0} saved!", filename); + public static LocalisableString ScreenshotSaved(string filename) => new TranslatableString(getKey(@"screenshot_saved"), @"Screenshot saved! Click to view. +{0}", filename); /// /// "The multiplayer server will be right back..."