diff options
author | Daniel Burrows <dburrows@debian.org> | 2005-11-07 22:29:07 +0000 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2005-11-07 22:29:07 +0000 |
commit | 6e3d4093e728c6c6091efe719692b309a907cee4 (patch) | |
tree | b4d8aefcad8bd63eff7a3e14b0863d90fd4fb5df /src/menu_text_layout.cc | |
parent | a8f823dfabdc640799c886f0108a00e7b7e589d4 (diff) | |
download | aptitude-6e3d4093e728c6c6091efe719692b309a907cee4.tar.gz |
[aptitude @ In menu_text_layout.cc, add an extra space at the end of the search prompts to match the usual convention.]
Diffstat (limited to 'src/menu_text_layout.cc')
-rw-r--r-- | src/menu_text_layout.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu_text_layout.cc b/src/menu_text_layout.cc index 928c7322..f8f34fe3 100644 --- a/src/menu_text_layout.cc +++ b/src/menu_text_layout.cc @@ -33,7 +33,7 @@ bool menu_text_layout::find_search_enabled() bool menu_text_layout::find_search() { - prompt_string(_("Search for:"), + prompt_string(_("Search for: "), "", arg(sigc::mem_fun(this, &menu_text_layout::do_find_search)), NULL, @@ -65,7 +65,7 @@ bool menu_text_layout::find_search_back_enabled() bool menu_text_layout::find_search_back() { - prompt_string(_("Search backwards for:"), + prompt_string(_("Search backwards for: "), "", arg(sigc::mem_fun(this, &menu_text_layout::do_find_search_back)), NULL, |