[gnome-taquin] Show estimated puzzle time.
- From: Arnaud B. <arnaudb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-taquin] Show estimated puzzle time.
- Date: Wed, 4 Dec 2019 10:56:16 +0000 (UTC)
commit be47f1f9df78570cfb6c8178db6a3f5354d79254
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date: Wed Dec 4 11:54:53 2019 +0100
Show estimated puzzle time.
src/taquin-main.vala | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/taquin-main.vala b/src/taquin-main.vala
index 4b7561b..3d60cd3 100644
--- a/src/taquin-main.vala
+++ b/src/taquin-main.vala
@@ -153,14 +153,14 @@ private class Taquin : Gtk.Application, BaseApplication
view = new TaquinView ();
GLib.Menu size_menu = new GLib.Menu ();
- /* Translators: when configuring a new game, entry in the menu of the game size menubutton */
- size_menu.append (_("3 × 3"), "app.change-size('3')");
+ /* Translators: when configuring a new game, entry in the menu of the game size menubutton; the "\t"
is a tabulation; after is indicated an estimated time for solving the puzzle (1 minute) */
+ size_menu.append (_("3 × 3\t1 minute"), "app.change-size('3')");
- /* Translators: when configuring a new game, entry in the menu of the game size menubutton */
- size_menu.append (_("4 × 4"), "app.change-size('4')");
+ /* Translators: when configuring a new game, entry in the menu of the game size menubutton; the "\t"
is a tabulation; after is indicated an estimated time for solving the puzzle (5 minutes) */
+ size_menu.append (_("4 × 4\t5 minutes"), "app.change-size('4')");
- /* Translators: when configuring a new game, entry in the menu of the game size menubutton */
- size_menu.append (_("5 × 5"), "app.change-size('5')");
+ /* Translators: when configuring a new game, entry in the menu of the game size menubutton; the "\t"
is a tabulation; after is indicated an estimated time for solving the puzzle (15 minutes) */
+ size_menu.append (_("5 × 5\t15 minutes"), "app.change-size('5')");
size_menu.freeze ();
GLib.Menu theme_menu = new GLib.Menu ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]