diff --git a/gajim/features_window.py b/gajim/features_window.py index a73de279ccc39b4f4b4d4f411b7ae4bf3abfd85d..cf23c699fd681136dcb1a038f9d02b059effc955 100644 --- a/gajim/features_window.py +++ b/gajim/features_window.py @@ -48,7 +48,7 @@ class FeaturesWindow: _('Bonjour / Zeroconf'): (self.zeroconf_available, _('Serverless chatting with autodetected clients in a local network.'), _('Requires python-avahi.'), - _('Requires pybonjour and bonjour SDK running (https://developer.apple.com/opensource/).')), + _('Requires pybonjour and bonjour SDK running (%(url)s)') % {'url': 'https://developer.apple.com/opensource/).'}), _('Command line'): (self.dbus_available, _('A script to control Gajim via commandline.'), _('Requires python-dbus.'), diff --git a/gajim/gajim.py b/gajim/gajim.py index e7e0a56f3fd6e3e9bde149d5cf6526f2569aba60..33ead45e89e2e3cb79752573d5e50aaf2934b169 100644 --- a/gajim/gajim.py +++ b/gajim/gajim.py @@ -78,7 +78,7 @@ class GajimApplication(Gtk.Application): self.add_main_option('separate', ord('s'), GLib.OptionFlags.NONE, GLib.OptionArg.NONE, _('Separate profile files completely (even ' - 'history DB and plugins)')) + 'history database and plugins)')) self.add_main_option('verbose', ord('v'), GLib.OptionFlags.NONE, GLib.OptionArg.NONE, _('Print XML stanzas and other debug ' diff --git a/gajim/gui_menu_builder.py b/gajim/gui_menu_builder.py index e9daaef2c71245bb6ddbdc8c5d78f3201a7630bc..55cc0a06d69ae738cc1506226fca71c6f6bbbbda 100644 --- a/gajim/gui_menu_builder.py +++ b/gajim/gui_menu_builder.py @@ -609,8 +609,8 @@ 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'), + ('win.send-file-httpupload-', _('Upload File…')), + ('win.send-file-jingle-', _('Send File Dorectly…')), ]), ('win.invite-contacts-', _('Invite Contacts')), ('win.add-to-roster-', _('Add to Roster')),