Capitalize the first letter for "Read only"

This commit is contained in:
PF 2023-03-06 22:25:27 -04:00 committed by GitHub
parent 380be99c9f
commit 599b9b8bf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class TerminalPopupMenu(object):
menu.append(item)
menu.append(Gtk.SeparatorMenuItem())
item = self.menu_item(Gtk.CheckMenuItem, 'toggle_readonly', '_read only')
item = self.menu_item(Gtk.CheckMenuItem, 'toggle_readonly', '_Read only')
item.set_active(not(terminal.vte.get_input_enabled()))
item.connect('toggled', lambda x: terminal.do_readonly_toggle())
menu.append(item)