[gnome-maps/wip/mlundblad/more-localized-digits: 2/2] transitPlan: Use locale-specific digits for times



commit 15819ae994fb7b2ac0c80a1ef671437709ed2ec8
Author: Marcus Lundblad <ml update uu se>
Date:   Mon Apr 6 21:42:59 2020 +0200

    transitPlan: Use locale-specific digits for times

 src/transitPlan.js | 28 +++++++++++++++++++---------
 1 file changed, 19 insertions(+), 9 deletions(-)
---
diff --git a/src/transitPlan.js b/src/transitPlan.js
index d4331a9f..96ba2416 100644
--- a/src/transitPlan.js
+++ b/src/transitPlan.js
@@ -28,6 +28,7 @@ const GLib = imports.gi.GLib;
 const GObject = imports.gi.GObject;
 
 const HVT = imports.hvt;
+const Utils = imports.utils;
 
 // in org.gnome.desktop.interface
 const CLOCK_FORMAT_KEY = 'clock-format';
@@ -73,14 +74,18 @@ var RouteType = {
 /* extra time to add to the first itinerary leg when it's a walking leg */
 const WALK_SLACK = 120;
 
+const _timeFormat = new Intl.DateTimeFormat([], { hour:     '2-digit',
+                                                  minute:   '2-digit',
+                                                  hour12:   clockFormat === '12h',
+                                                  timeZone: 'UTC'});
+
 function _printTimeWithTZOffset(time, offset) {
-    let utcTimeWithOffset = (time + offset) / 1000;
-    let date = GLib.DateTime.new_from_unix_utc(utcTimeWithOffset);
+    let utcTimeWithOffset = time + offset;
+    let date = new Date();
 
-    if (clockFormat === '24h')
-        return date.format('%R');
-    else
-        return date.format('%r');
+    date.setTime(utcTimeWithOffset);
+
+    return _timeFormat.format(date);
 }
 
 var DEFAULT_ROUTE_COLOR = '4c4c4c';
@@ -337,13 +342,16 @@ class Itinerary extends GObject.Object {
         let mins = this.duration / 60;
 
         if (mins < 60) {
+            let minStr = Utils.formatLocaleInteger(mins);
+
             /* translators: this is an indication for a trip duration of
              * less than an hour, with only the minutes part, using plural forms
              * as appropriate
              */
-            return ngettext("%d minute", "%d minutes", mins).format(mins);
+            return ngettext("%s minute", "%s minutes", mins).format(minStr);
         } else {
             let hours = Math.floor(mins / 60);
+            let hourStr = Utils.formatLocaleInteger(hours);
 
             mins = mins % 60;
 
@@ -352,13 +360,15 @@ class Itinerary extends GObject.Object {
                  * where the duration is an exact number of hours (i.e. no
                  * minutes part), using plural forms as appropriate
                  */
-                return ngettext("%d hour", "%d hours", hours).format(hours);
+                return ngettext("%s hour", "%s hours", hours).format(hourStr);
             } else {
+                let minStr = Utils.formatLocaleIntegerMinimumTwoDigits(mins);
+
                 /* translators: this is an indication for a trip duration
                  * where the duration contains an hour and minute part, it's
                  * pluralized on the hours part
                  */
-                return ngettext("%d:%02d hour", "%d:%02d hours", hours).format(hours, mins);
+                return ngettext("%s:%s hour", "%s:%s hours", hours).format(hourStr, minStr);
             }
         }
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]