From 77de611ec7d35239b40e728168f801e2e2d17cdf Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Fri, 12 Aug 2011 12:48:32 -0400 Subject: [PATCH] dateMenu: Fix some tabs vs spaces --- js/ui/dateMenu.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/ui/dateMenu.js b/js/ui/dateMenu.js index a8824dc26..d288947bd 100644 --- a/js/ui/dateMenu.js +++ b/js/ui/dateMenu.js @@ -157,12 +157,12 @@ DateMenuButton.prototype = { switch (format) { case '24h': if (showDate) - /* Translators: This is the time format with date used + /* Translators: This is the time format with date used in 24-hour mode. */ clockFormat = showSeconds ? _("%a %b %e, %R:%S") : _("%a %b %e, %R"); else - /* Translators: This is the time format without date used + /* Translators: This is the time format without date used in 24-hour mode. */ clockFormat = showSeconds ? _("%a %R:%S") : _("%a %R"); @@ -170,12 +170,12 @@ DateMenuButton.prototype = { case '12h': default: if (showDate) - /* Translators: This is a time format with date used + /* Translators: This is a time format with date used for AM/PM. */ clockFormat = showSeconds ? _("%a %b %e, %l:%M:%S %p") : _("%a %b %e, %l:%M %p"); else - /* Translators: This is a time format without date used + /* Translators: This is a time format without date used for AM/PM. */ clockFormat = showSeconds ? _("%a %l:%M:%S %p") : _("%a %l:%M %p");