[gnome-clocks/bilelmoussaoui/timer/i18n] Timer: correctly translate the defaut timer name
- From: Bilal Elmoussaoui <bilelmoussaoui src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-clocks/bilelmoussaoui/timer/i18n] Timer: correctly translate the defaut timer name
- Date: Wed, 26 Feb 2020 17:31:51 +0000 (UTC)
commit 3248636f2ad29c351263e1cac916be5369bcab9e
Author: Bilal Elmoussaoui <bil elmoussaoui gmail com>
Date: Sat Feb 22 20:17:24 2020 +0100
Timer: correctly translate the defaut timer name
Fixes #68 #63
src/timer.vala | 27 +++------------------------
1 file changed, 3 insertions(+), 24 deletions(-)
---
diff --git a/src/timer.vala b/src/timer.vala
index 523029b..a465034 100644
--- a/src/timer.vala
+++ b/src/timer.vala
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2013 Paolo Borelli <pborelli gnome org>
* Copyright (C) 2020 Bilal Elmoussaoui <bilal elmoussaoui gnome org>
- *
+ *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -330,7 +330,7 @@ public class Row : Gtk.ListBoxRow {
start_stack.visible_child_name = "start";
name_stack.visible_child_name = "edit";
- update_name_label ();
+ timer_name.label = item.name;
update_countdown (item.hours, item.minutes, item.seconds);
}
@@ -345,7 +345,7 @@ public class Row : Gtk.ListBoxRow {
start_stack.visible_child_name = "pause";
name_stack.visible_child_name = "display";
- update_name_label ();
+ timer_name.label = item.name;
}
private void ring () {
@@ -369,27 +369,6 @@ public class Row : Gtk.ListBoxRow {
countdown_label.set_text ("%02i ∶ %02i ∶ %02i".printf (h, m, s));
}
- private void update_name_label () {
- if (item.name != null && item.name != "") {
- timer_name.label = item.name;
- } else {
- if (item.seconds != 0 && item.minutes == 0 && item.hours == 0) {
- timer_name.label = _("%i second timer".printf (item.seconds));
- } else if (item.seconds == 0 && item.minutes != 0 && item.hours == 0) {
- timer_name.label = _("%i minute timer".printf (item.minutes));
- } else if (item.seconds == 0 && item.minutes == 0 && item.hours != 0) {
- timer_name.label = _("%i hour timer".printf (item.hours));
- } else if (item.seconds != 0 && item.minutes != 0 && item.hours == 0) {
- timer_name.label = _("%i minute %i second timer".printf (item.minutes, item.seconds));
- } else if (item.seconds == 0 && item.minutes != 0 && item.hours != 0) {
- timer_name.label = _("%i hour %i minute timer".printf (item.hours, item.minutes));
- } else if (item.seconds != 0 && item.minutes == 0 && item.hours != 0) {
- timer_name.label = _("%i hour %i second timer".printf (item.hours, item.seconds));
- } else if (item.seconds != 0 && item.minutes != 0 && item.hours != 0) {
- timer_name.label = _("%i hour %i minute %i second timer".printf (item.hours, item.minutes,
item.seconds));
- }
- }
- }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]