Fix button text. Fixes #9005

This commit is contained in:
Yann Leboulanger 2018-03-26 17:45:32 +02:00
parent 99b3aebc99
commit 5353f770a1
1 changed files with 1 additions and 1 deletions

View File

@ -1581,7 +1581,7 @@ class ChatControl(ChatControlBase):
markup += ' (%s)' % file_props.desc
markup += '\n%s: %s' % (_('Size'), helpers.convert_bytes(
file_props.size))
b1 = Gtk.Button(_('_Accept'))
b1 = Gtk.Button(_('Accept'))
b1.connect('clicked', self._on_accept_file_request, file_props)
b2 = Gtk.Button(stock=Gtk.STOCK_CANCEL)
b2.connect('clicked', self._on_cancel_file_request, file_props)