Skip to content

Commit

Permalink
Merge pull request #189 from phidebian/phi-zero-padded
Browse files Browse the repository at this point in the history
Use the term 'zero padded' instead of 'padded'.
  • Loading branch information
mattrose authored Nov 19, 2022
2 parents a83ee32 + e8c366a commit 4e5e790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terminatorlib/prefseditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class PrefsEditor:
'broadcast_group' : _('Broadcast key presses to group'),
'broadcast_all' : _('Broadcast key events to all'),
'insert_number' : _('Insert terminal number'),
'insert_padded' : _('Insert padded terminal number'),
'insert_padded' : _('Insert zero padded terminal number'),
'edit_window_title': _('Edit window title'),
'edit_terminal_title': _('Edit terminal title'),
'edit_tab_title' : _('Edit tab title'),
Expand Down
2 changes: 1 addition & 1 deletion terminatorlib/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ def populate_group_menu(self):
item.connect('activate', lambda x: self.emit('enumerate', False))
menu.append(item)

item = Gtk.MenuItem.new_with_mnemonic(_('Insert _padded terminal number'))
item = Gtk.MenuItem.new_with_mnemonic(_('Insert zero _padded terminal number'))
item.connect('activate', lambda x: self.emit('enumerate', True))
menu.append(item)

Expand Down

0 comments on commit 4e5e790

Please sign in to comment.