From 17261e8f0fe7b5b4a1b9d53c00e88259a50cb0b3 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 10 Feb 2015 14:52:58 +0100 Subject: [PATCH 1/4] Indicate that the key is to use to navigate in the application This makes is explicit how to leave or navigate in the program from the front page. It changes one string for the translators. Fixes https://bugzilla.redhat.com/1191112 --- src/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.cpp b/src/display.cpp index 123620aa..b6c92000 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -127,7 +127,7 @@ void show_tab(unsigned int tab) if (c && strlen(c) > 0) mvwprintw(bottom_line, 0,0, c); else - mvwprintw(bottom_line, 0,0," %s | ",_("Exit")); + mvwprintw(bottom_line, 0,0, _(" Exit | Navigate |")); current_tab = tab; From 041d1d4735b0fdf58d37712e14c2c0e2003b93b4 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 10 Feb 2015 18:47:48 +0100 Subject: [PATCH 2/4] Mention that shift+Tab can also be used to navigate through the UI As per https://bugzilla.redhat.com/1191112#c2 --- src/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.cpp b/src/display.cpp index b6c92000..c0515207 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -127,7 +127,7 @@ void show_tab(unsigned int tab) if (c && strlen(c) > 0) mvwprintw(bottom_line, 0,0, c); else - mvwprintw(bottom_line, 0,0, _(" Exit | Navigate |")); + mvwprintw(bottom_line, 0,0, _(" Exit | / Navigate |")); current_tab = tab; From b67d2adb08e8e0af6dc8e362aabfe49f683f2f86 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Wed, 11 Feb 2015 15:02:25 +0100 Subject: [PATCH 3/4] Improve string for translators --- src/display.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/display.cpp b/src/display.cpp index c0515207..d2d28fe0 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -127,7 +127,9 @@ void show_tab(unsigned int tab) if (c && strlen(c) > 0) mvwprintw(bottom_line, 0,0, c); else - mvwprintw(bottom_line, 0,0, _(" Exit | / Navigate |")); + mvwprintw(bottom_line, 0,0, + " %s | / %s |", + _("Exit"), _("Navigate"))); current_tab = tab; From eda1f57cf5382c3e52fe2c535e44c1d2af54d3ad Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 26 Feb 2015 20:07:30 +0100 Subject: [PATCH 4/4] Remove a one-too-many bracket Fix the compilation --- src/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.cpp b/src/display.cpp index d2d28fe0..d7c7e290 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -129,7 +129,7 @@ void show_tab(unsigned int tab) else mvwprintw(bottom_line, 0,0, " %s | / %s |", - _("Exit"), _("Navigate"))); + _("Exit"), _("Navigate")); current_tab = tab;