diff --git a/debian/changelog b/debian/changelog index b358cacf..e7c31dac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -68,6 +68,7 @@ byobu (4.47) unreleased; urgency=low - deprecate window management from byobu-config; hard to get this right for both screen and tmux; and I don't perceive that this is any longer one of byobu's main features (?) + - standardize title formatting -- Dustin Kirkland Tue, 08 Nov 2011 19:16:15 -0600 diff --git a/usr/bin/byobu-config b/usr/bin/byobu-config index d7751211..ffe1eb62 100755 --- a/usr/bin/byobu-config +++ b/usr/bin/byobu-config @@ -89,7 +89,6 @@ def menu(snackScreen, size, isInstalled): else: installtext=_("Byobu currently does not launch at login (toggle on)") - li = Listbox(height = 9, width = 60, returnExit = 1) li.append(_("Help -- Quick Start Guide"), 1) li.append(_("Toggle status notifications"), 2) @@ -204,7 +203,7 @@ def togglestatus(snackScreen, size): r.append(item[1],count,selected=item[0]) count=count+1 bb = ButtonBar(snackScreen, ((_("Apply"), "apply"), (_("Cancel"), "cancel", ESC)), compact = 1) - g = GridForm(snackScreen, _("Toggle status notifications:"), 2, 4 ) + g = GridForm(snackScreen, _("Toggle status notifications"), 2, 4 ) g.add(rl, 0, 0, anchorLeft=1, anchorTop=1, padding=(4,0,0,1)) g.add(r, 1, 0) g.add(bb, 1, 1, padding=(4,1,0,0)) @@ -276,7 +275,7 @@ def chgesc(snackScreen, size): escl=Label(_("Escape key: ctrl-")) bb = ButtonBar(snackScreen, ((_("Apply"), "apply"), (_("Cancel"), "cancel", ESC)), compact = 1) - g = GridForm(snackScreen, _("Change escape sequence:"), 2, 4 ) + g = GridForm(snackScreen, _("Change escape sequence"), 2, 4 ) g.add(escl, 0, 0, anchorLeft=1, padding=(1,0,0,1)) g.add(esc, 1, 0, anchorLeft=1) g.add(bb, 1, 1)