Make file transfer labels sound less technical

This commit is contained in:
Philipp Hörist 2018-02-22 22:45:15 +01:00
parent 994244c910
commit a94276f6e9
3 changed files with 10 additions and 24 deletions

View File

@ -314,20 +314,9 @@ class ChatControl(ChatControlBase):
jingle.get_enabled() or httpupload.get_enabled())
# Set File Transfer Button tooltip
ft_pref = app.config.get_per('accounts', self.account,
'filetransfer_preference')
tooltip_text = None
if httpupload.get_enabled() and jingle.get_enabled():
if ft_pref == 'httpupload':
tooltip_text = _('HTTP File Upload')
else:
tooltip_text = _('Jingle File Transfer')
elif httpupload.get_enabled():
tooltip_text = _('HTTP File Upload')
elif jingle.get_enabled():
tooltip_text = _('Jingle File Transfer')
elif online:
if online and (httpupload.get_enabled() or jingle.get_enabled()):
tooltip_text = _('Send File…')
else:
tooltip_text = _('No File Transfer available')
self.sendfile_button.set_tooltip_text(tooltip_text)

View File

@ -631,13 +631,10 @@ class GroupchatControl(ChatControlBase):
win.lookup_action('send-file-' + self.control_id).set_enabled(
httpupload.get_enabled())
tooltip_text = None
if online:
if httpupload.get_enabled():
tooltip_text = _('HTTP File Upload')
else:
tooltip_text = _('HTTP File Upload not supported '
'by your server')
if online and httpupload.get_enabled():
tooltip_text = _('Send File…')
else:
tooltip_text = _('No File Transfer available')
self.sendfile_button.set_tooltip_text(tooltip_text)
# Actions

View File

@ -608,9 +608,9 @@ Build dynamic Application Menus
def get_singlechat_menu(control_id):
singlechat_menu = [
(_('Send File...'), [
('win.send-file-httpupload-', 'HTTP Upload'),
('win.send-file-jingle-', 'Jingle'),
(_('Send File'), [
('win.send-file-httpupload-', _('Upload File…')),
('win.send-file-jingle-', _('Send File Directly…')),
]),
('win.invite-contacts-', _('Invite Contacts')),
('win.add-to-roster-', _('Add to Roster')),