Remove unnecessary translations
The names and emails, and only translate "Copyright" from the copyright sentence.
This commit is contained in:
parent
0070908415
commit
4955bc9351
|
@ -66,8 +66,8 @@ _ = gettext.gettext
|
||||||
|
|
||||||
APP_NAME = 'Diffuse'
|
APP_NAME = 'Diffuse'
|
||||||
VERSION = '0.5.0'
|
VERSION = '0.5.0'
|
||||||
COPYRIGHT = _('''Copyright © 2006-2019 Derrick Moser
|
COPYRIGHT = '''{copyright} © 2006-2019 Derrick Moser
|
||||||
Copyright © 2015-2020 Romain Failliot''')
|
{copyright} © 2015-2020 Romain Failliot'''.format(copyright=_("Copyright"))
|
||||||
WEBSITE = 'https://github.com/MightyCreak/diffuse'
|
WEBSITE = 'https://github.com/MightyCreak/diffuse'
|
||||||
|
|
||||||
# process help options
|
# process help options
|
||||||
|
@ -6810,8 +6810,8 @@ class AboutDialog(Gtk.AboutDialog):
|
||||||
self.set_comments(_('Diffuse is a graphical tool for merging and comparing text files.'))
|
self.set_comments(_('Diffuse is a graphical tool for merging and comparing text files.'))
|
||||||
self.set_copyright(COPYRIGHT)
|
self.set_copyright(COPYRIGHT)
|
||||||
self.set_website(WEBSITE)
|
self.set_website(WEBSITE)
|
||||||
self.set_authors([ _('Derrick Moser <derrick_moser@yahoo.com>'),
|
self.set_authors([ 'Derrick Moser <derrick_moser@yahoo.com>',
|
||||||
_('Romain Failliot <romain.failliot@foolstep.com>') ])
|
'Romain Failliot <romain.failliot@foolstep.com>' ])
|
||||||
self.set_translator_credits(_('translator-credits'))
|
self.set_translator_credits(_('translator-credits'))
|
||||||
ss = [ APP_NAME + ' ' + VERSION + '\n',
|
ss = [ APP_NAME + ' ' + VERSION + '\n',
|
||||||
COPYRIGHT + '\n\n',
|
COPYRIGHT + '\n\n',
|
||||||
|
|
Loading…
Reference in New Issue