From 164f4d993adf30f4e2a6c4b95f072252875aa85f Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Thu, 03 Sep 2009 15:02:50 +0000 Subject: Better naming of 'remove' and 'add' tab --- diff --git a/terminal.py b/terminal.py index 1fe5df1..d00be08 100644 --- a/terminal.py +++ b/terminal.py @@ -150,14 +150,14 @@ class TerminalActivity(activity.Activity): def _create_tab_toolbar(self): tab_toolbar = gtk.Toolbar() new_tab_button = ToolButton('tab-add') - new_tab_button.set_tooltip(_("Open New Tab")) + new_tab_button.set_tooltip(_("Add New Tab")) new_tab_button.props.accelerator = 'T' new_tab_button.connect('clicked', self.__open_tab_cb) tab_toolbar.insert(new_tab_button, -1) new_tab_button.show() self._delete_tab_button = ToolButton('tab-remove') - self._delete_tab_button.set_tooltip(_("Close Tab")) + self._delete_tab_button.set_tooltip(_("Remove Tab")) self._delete_tab_button.props.accelerator = 'X' self._delete_tab_button.props.sensitive = False self._delete_tab_button.connect('clicked', self.__close_tab_cb) -- cgit v0.9.1