mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-07-31 17:50:16 +02:00
51cc132e5d
Related to #808
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);
|
|
} |