removed update
Pull request / build (pull_request) Successful in 52s

This commit is contained in:
2026-08-13 14:58:26 +05:00
parent 460ce52017
commit dd0bbdea42
30 changed files with 183 additions and 2333 deletions
@@ -79,14 +79,15 @@ public sealed class StringsTests
}
/// <summary>
/// The version of an update is put into the string by the app, so the place
/// for it has to be there in both languages.
/// The version is put into the title by the app, so the place for it has to
/// be there in both languages: the title is the only place it is shown, and a
/// translation without the placeholder would quietly drop it.
/// </summary>
[Fact]
public void The_string_about_an_available_update_has_room_for_the_version()
public void The_title_of_the_window_has_room_for_the_version()
{
Assert.Contains("{0}", Resources.GetString("UpdateAvailable", English), StringComparison.Ordinal);
Assert.Contains("{0}", Resources.GetString("UpdateAvailable", Russian), StringComparison.Ordinal);
Assert.Contains("{0}", Resources.GetString("SettingsTitle", English), StringComparison.Ordinal);
Assert.Contains("{0}", Resources.GetString("SettingsTitle", Russian), StringComparison.Ordinal);
}
public static TheoryData<string> EnumKeys()