dateMenu: Better align strings with the HIG

Turn the button labels to title case, make the strings shorter, make the
weather string consistent with the world clocks string.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3254>
This commit is contained in:
Monster
2024-03-28 19:47:10 +01:00
committed by Marge Bot
parent b3580919e3
commit 779dfb6600

View File

@ -410,7 +410,7 @@ class WorldClocksSection extends St.Button {
let layout = this._grid.layout_manager;
const title = this._locations.length === 0
? _('Add world clocks…')
? _('Add World Clocks…')
: _('World Clocks');
const header = new St.Label({
style_class: 'world-clocks-header',
@ -711,9 +711,9 @@ class WeatherSection extends St.Button {
}
if (info.network_error())
this._setStatusLabel(_('Go online for weather information'));
this._setStatusLabel(_('Go Online for Weather Information'));
else
this._setStatusLabel(_('Weather information is currently unavailable'));
this._setStatusLabel(_('Weather Information Unavailable'));
}
_sync() {
@ -725,7 +725,7 @@ class WeatherSection extends St.Button {
if (this._weatherClient.hasLocation)
this._titleLabel.text = _('Weather');
else
this._titleLabel.text = _('Select weather location…');
this._titleLabel.text = _('Select Weather Location…');
if (this._weatherClient.hasLocation)
this._titleLabel.remove_style_class_name('no-location');