[panel] Fix typo in previous clock patch
We shouldn't be displaying hours as 24 in am/pm case
This commit is contained in:
parent
c21e692652
commit
c89ee2f8f2
@ -560,7 +560,7 @@ Panel.prototype = {
|
||||
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")));
|
||||
this._clock.set_text(displayDate.toLocaleFormat(_("%a %l:%M %p")));
|
||||
}
|
||||
Mainloop.timeout_add(msecRemaining, Lang.bind(this, this._updateClock));
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user