mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-10 20:02:31 +00:00
10 lines
340 B
C#
10 lines
340 B
C#
using System.Globalization;
|
|
|
|
namespace DiscordChatExporter.Gui.Utils;
|
|
|
|
internal static class Internationalization
|
|
{
|
|
public static bool Is24Hours =>
|
|
string.IsNullOrWhiteSpace(CultureInfo.CurrentCulture.DateTimeFormat.AMDesignator) &&
|
|
string.IsNullOrWhiteSpace(CultureInfo.CurrentCulture.DateTimeFormat.PMDesignator);
|
|
} |