diff --git a/TaikoWebUI/Localization/LocalizationResource.Designer.cs b/TaikoWebUI/Localization/LocalizationResource.Designer.cs index bc8c12e..8672791 100644 --- a/TaikoWebUI/Localization/LocalizationResource.Designer.cs +++ b/TaikoWebUI/Localization/LocalizationResource.Designer.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -18,7 +19,7 @@ namespace TaikoWebUI.Localization { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class LocalizationResource { @@ -58,5 +59,14 @@ namespace TaikoWebUI.Localization { resourceCulture = value; } } + + /// + /// Looks up a localized string similar to MM/dd/yyyy h:mm:ss tt. + /// + internal static string DateFormat { + get { + return ResourceManager.GetString("DateFormat", resourceCulture); + } + } } } diff --git a/TaikoWebUI/Localization/LocalizationResource.en-US.resx b/TaikoWebUI/Localization/LocalizationResource.en-US.resx index 84552e6..d3c3563 100644 --- a/TaikoWebUI/Localization/LocalizationResource.en-US.resx +++ b/TaikoWebUI/Localization/LocalizationResource.en-US.resx @@ -381,4 +381,7 @@ This will remove the user's current password and user will have to register again. + + MM/dd/yyyy h:mm:ss tt + \ No newline at end of file diff --git a/TaikoWebUI/Localization/LocalizationResource.ja.resx b/TaikoWebUI/Localization/LocalizationResource.ja.resx index cc573a7..454f6fe 100644 --- a/TaikoWebUI/Localization/LocalizationResource.ja.resx +++ b/TaikoWebUI/Localization/LocalizationResource.ja.resx @@ -375,4 +375,7 @@ 音符位置調整 + + yyyy/MM/dd H:mm:ss + \ No newline at end of file diff --git a/TaikoWebUI/Localization/LocalizationResource.resx b/TaikoWebUI/Localization/LocalizationResource.resx index 4ba99c0..3f8bac8 100644 --- a/TaikoWebUI/Localization/LocalizationResource.resx +++ b/TaikoWebUI/Localization/LocalizationResource.resx @@ -1,21 +1,123 @@  - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MM/dd/yyyy h:mm:ss tt + \ No newline at end of file diff --git a/TaikoWebUI/Localization/LocalizationResource.zh-Hans.resx b/TaikoWebUI/Localization/LocalizationResource.zh-Hans.resx index 1b321f3..8929006 100644 --- a/TaikoWebUI/Localization/LocalizationResource.zh-Hans.resx +++ b/TaikoWebUI/Localization/LocalizationResource.zh-Hans.resx @@ -375,4 +375,7 @@ 音符位置调整 + + yyyy/M/d ah:mm:ss + \ No newline at end of file diff --git a/TaikoWebUI/Localization/LocalizationResource.zh-Hant.resx b/TaikoWebUI/Localization/LocalizationResource.zh-Hant.resx index 3eb3fdb..32dd3c2 100644 --- a/TaikoWebUI/Localization/LocalizationResource.zh-Hant.resx +++ b/TaikoWebUI/Localization/LocalizationResource.zh-Hant.resx @@ -375,4 +375,7 @@ 音符位置調整 + + yyyy/M/d tt ah:mm:ss + \ No newline at end of file diff --git a/TaikoWebUI/Pages/Components/Song/PlayHistoryCard.razor b/TaikoWebUI/Pages/Components/Song/PlayHistoryCard.razor index 40bf748..7ec466b 100644 --- a/TaikoWebUI/Pages/Components/Song/PlayHistoryCard.razor +++ b/TaikoWebUI/Pages/Components/Song/PlayHistoryCard.razor @@ -23,25 +23,25 @@ @Localizer["Max Combo"] - @context.PlayTime - - @context.Difficulty - - - @(ScoreUtils.GetCrownText(context.Crown)) - - - @(ScoreUtils.GetRankText(context.ScoreRank)) - - @context.Score - @context.GoodCount - @context.OkCount - @context.MissCount - @context.DrumrollCount - @context.ComboCount - - - + @context.PlayTime.ToString(Localizer["DateFormat"]) + + @context.Difficulty + + + @(ScoreUtils.GetCrownText(context.Crown)) + + + @(ScoreUtils.GetRankText(context.ScoreRank)) + + @context.Score + @context.GoodCount + @context.OkCount + @context.MissCount + @context.DrumrollCount + @context.ComboCount + + + } else {