[gnome-shell] telepathyClient: Add our own translations for timestamps



commit aa1405e4eaa01c01ddf7e48d53066cf075af11d9
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Mon Aug 1 18:25:59 2011 -0400

    telepathyClient: Add our own translations for timestamps
    
    As an effort to prevent a string freeze to land timestamps on 3.0, we reused
    translations for the calendar. Now that the string freeze is long gone, make
    some proper strings.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640271

 js/ui/telepathyClient.js |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js
index fb2d834..311d02e 100644
--- a/js/ui/telepathyClient.js
+++ b/js/ui/telepathyClient.js
@@ -738,18 +738,18 @@ ChatNotification.prototype = {
              If applicable, replace %X with a strftime format valid for your
              locale, without seconds. */
             // xgettext:no-c-format
-            format = _("Sent at %X on %A");
-
-        // FIXME: The next two are stolen from calendar.js with the comment to avoid
-        // a string-freeze break. They should be replaced with better strings
-        // with 'Sent at', appropriate context and appropriate translator comment.
+            format = _("Sent at <b>%X</b> on <b>%A</b>");
 
         } else if (date.getYear() == now.getYear()) {
-            /* Translators: Shown on calendar heading when selected day occurs on current year */
-            format = C_("calendar heading", "%A, %B %d");
+            /* Translators: this is a time format in the style of "Wednesday, May 25",
+             shown when you get a chat message in the same year. */
+            // xgettext:no-c-format
+            format = _("Sent on <b>%A</b>, <b>%B %d</b>");
         } else {
-            /* Translators: Shown on calendar heading when selected day occurs on different year */
-            format = C_("calendar heading", "%A, %B %d, %Y");
+            /* Translators: this is a time format in the style of "Wednesday, May 25, 2012",
+             shown when you get a chat message in a different year. */
+            // xgettext:no-c-format
+            format = _("Sent on <b>%A</b>, <b>%B %d</b>, %Y");
         }
 
         return date.toLocaleFormat(format);



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