diff options
author | fiaxh <git@lightrise.org> | 2021-03-19 23:09:56 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-03-21 12:41:39 +0100 |
commit | 0f46facecd558786631c2ad4cf66d27331f16a86 (patch) | |
tree | 74ba0d120dabbaf55e204cca5355022f3c3ba60e /main/src/ui/util/helper.vala | |
parent | cdb4d77259e6c361aaca64a483a43d7441f4803d (diff) | |
download | dino-0f46facecd558786631c2ad4cf66d27331f16a86.tar.gz dino-0f46facecd558786631c2ad4cf66d27331f16a86.zip |
Add UI for audio/video calls
Diffstat (limited to 'main/src/ui/util/helper.vala')
-rw-r--r-- | main/src/ui/util/helper.vala | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala index b6c9cb5a..d3ca063b 100644 --- a/main/src/ui/util/helper.vala +++ b/main/src/ui/util/helper.vala @@ -194,6 +194,15 @@ public static bool is_24h_format() { return is24h == 1; } +public static string format_time(DateTime datetime, string format_24h, string format_12h) { + string format = Util.is_24h_format() ? format_24h : format_12h; + if (!get_charset(null)) { + // No UTF-8 support, use simple colon for time instead + format = format.replace("∶", ":"); + } + return datetime.format(format); +} + public static Regex get_url_regex() { if (URL_REGEX == null) { URL_REGEX = /\b(((http|ftp)s?:\/\/|(ircs?|xmpp|mailto|sms|smsto|mms|tel|geo|openpgp4fpr|im|news|nntp|sip|ssh|bitcoin|sftp|magnet|vnc|urn):)\S+)/; |