[panel] Detect clock AM/PM from locale

Look at whether a localized time string from JS includes am/pm to
determine whether we should show it in the UI.
This commit is contained in:
res 2010-02-11 14:01:19 -05:00 committed by Colin Walters
parent 071efd826c
commit c21e692652

View File

@ -553,8 +553,15 @@ Panel.prototype = {
displayDate.setMinutes(displayDate.getMinutes() + 1);
msecRemaining += 60000;
}
/* Translators: This is a time format. */
this._clock.set_text(displayDate.toLocaleFormat(_("%a %l:%M %p")));
/* If there is no am or pm, time format is 24h */
let isTime24h = displayDate.toLocaleFormat("x%p") == "x";
if (isTime24h) {
/* Translators: This is a time format. */
this._clock.set_text(displayDate.toLocaleFormat(_("%a %R")));
} else {
/* Translators: This is a time format. */
this._clock.set_text(displayDate.toLocaleFormat(_("%a %k:%M %p")));
}
Mainloop.timeout_add(msecRemaining, Lang.bind(this, this._updateClock));
return false;
},