From fa4c481aed67532254d6779c7222e0016e2743e3 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Mon, 17 Feb 2014 20:44:27 +0100 Subject: [PATCH] telepathyClient: Use ratio char for timestamps --- js/ui/components/telepathyClient.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/ui/components/telepathyClient.js b/js/ui/components/telepathyClient.js index a78fbafd5..831e4da0c 100644 --- a/js/ui/components/telepathyClient.js +++ b/js/ui/components/telepathyClient.js @@ -944,28 +944,28 @@ const ChatNotification = new Lang.Class({ // Show only the hour if date is on today if(daysAgo < 1){ - format = _("%H:%M"); + format = _("%H\u2236%M"); } // Show the word "Yesterday" and time if date is on yesterday else if(daysAgo <2){ /* Translators: this is the word "Yesterday" followed by a time string. i.e. "Yesterday, 14:30"*/ // xgettext:no-c-format - format = _("Yesterday, %H:%M"); + format = _("Yesterday, %H\u2236%M"); } // Show a week day and time if date is in the last week else if (daysAgo < 7) { /* Translators: this is the week day name followed by a time string. i.e. "Monday, 14:30*/ // xgettext:no-c-format - format = _("%A, %H:%M"); + format = _("%A, %H\u2236%M"); } else if (date.getYear() == now.getYear()) { /* Translators: this is the month name and day number followed by a time string. i.e. "May 25, 14:30"*/ // xgettext:no-c-format - format = _("%B %d, %H:%M"); + format = _("%B %d, %H\u2236%M"); } else { /* Translators: this is the month name, day number, year number followed by a time string. i.e. "May 25 2012, 14:30"*/ // xgettext:no-c-format - format = _("%B %d %Y, %H:%M"); + format = _("%B %d %Y, %H\u2236%M"); } return date.toLocaleFormat(format);