diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-01 07:45:17 +0200 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2023-09-07 09:52:49 +0200 |
commit | 6bfe258614752a42b25e0f5e0f8a323d36a6c026 (patch) | |
tree | be7bae28c8c0266d2679d62cc177e4118400f4b6 /src | |
parent | 65b94310688a20688de7f70bc9177b46db976401 (diff) | |
download | arctica-greeter-6bfe258614752a42b25e0f5e0f8a323d36a6c026.tar.gz arctica-greeter-6bfe258614752a42b25e0f5e0f8a323d36a6c026.tar.bz2 arctica-greeter-6bfe258614752a42b25e0f5e0f8a323d36a6c026.zip |
src/shutdown-dialog.vala: Rephrase shutdown dialog's new timeout message(s) slightly.
Diffstat (limited to 'src')
-rw-r--r-- | src/shutdown-dialog.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shutdown-dialog.vala b/src/shutdown-dialog.vala index 6bac067..aeae991 100644 --- a/src/shutdown-dialog.vala +++ b/src/shutdown-dialog.vala @@ -292,7 +292,7 @@ public class ShutdownDialog : Gtk.Fixed if (DEFAULT_ACTION_SUPPLEMENTAL_TIME == default_action_time_supplemental) { /* Fun begins here, actually trigger option. */ - var text = _("Selecting default action now."); + var text = _("Executing selected action now."); default_action_label.set_markup ("<span font=\"%s %d\" fgcolor=\"%s\">%s</span>".printf (font_family, font_size_base+1, AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), text)); /* @@ -325,7 +325,7 @@ public class ShutdownDialog : Gtk.Fixed } else { - var text = ngettext ("Selecting default action in one second …", "Selecting default action in %u seconds …", default_action_time_remaining).printf (default_action_time_remaining); + var text = ngettext ("Waiting one more second before executing selected action …", "Waiting %u seconds before executing selected action …", default_action_time_remaining).printf (default_action_time_remaining); default_action_label.set_markup ("<span font=\"%s %d\" fgcolor=\"%s\">%s</span>".printf (font_family, font_size_base+1, AGSettings.get_string (AGSettings.KEY_TOGGLEBOX_FONT_FGCOLOR), text)); --default_action_time_remaining; |