From 3eca286a08c221332fef4b0a8c2004399b62fc00 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 21 Oct 2012 15:42:49 +0100 Subject: [PATCH] Yet More updates --- openlp/core/ui/aboutdialog.py | 20 +++++++++++++++----- openlp/core/ui/aboutform.py | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 006857d84..660eb88ce 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -135,16 +135,20 @@ class Ui_AboutDialog(object): u'en_GB': [u'Tim "TRB143" Bentley', u'Jonathan "gushie" Corwin'], u'en_ZA': [u'Raoul "superfly" Snyman', u'Johan "nuvolari" Mynhardt'], - u'es': [u'Josue Zuniga',u'Christian Gonzalez'], + u'el': [u'Alexander Siozos'], + u'es': [u'Josu\xe9 Z\xfa\xf1iga',u'Christian Gonzalez'], u'et': [u'Mattias "mahfiaz" P\xf5ldaru'], - u'fr': [u'Stephan\xe9 "stbrunner" Brunner'], + u'fr': [u'Stephan\xe9 "stbrunner" Brunner', u'Jeremie'], u'hu': [u'Gyuris Gell\xe9rt'], u'ja': [u'Kunio "Kunio" Nakamaru', u'Chris Haris'], u'nb': [u'Atle "pendlaren" Weibell', u'Frode "frodus" Woldsund'], u'nl': [u'Arjen "typovar" van Voorst'], - u'pt_BR': [u'Rafael "rafaellerm" Lerm', u'Gustavo Bim', - u'Simon "samscudder" Scudder'], - u'ru': [u'Sergey "ratz" Ratz'] + u'pt_BR': [u'David Mederiros',u'Rafael "rafaellerm" Lerm', + u'Eduardo Levi Chaves', + u'Gustavo Bim', u'Rog\xeanio Bel\xe9m', u'Samuel' + u'Simon "samscudder" Scudder', u'Van Der Fran'], + u'ru': [u'Sergey "ratz" Ratz'], + u'sv': [u'Eric "luen" Ludin'] } documentors = [u'Wesley "wrst" Stout', u'John "jseagull1" Cegalis (lead)'] @@ -173,6 +177,8 @@ class Ui_AboutDialog(object): ' %s\n' ' German (de)\n' ' %s\n' + ' Greek (el)\n' + ' %s\n' ' English, United Kingdom (en_GB)\n' ' %s\n' ' English, South Africa (en_ZA)\n' @@ -195,6 +201,8 @@ class Ui_AboutDialog(object): ' %s\n' ' Russian (ru)\n' ' %s\n' + ' Swedish (sv)\n' + ' %s\n' '\n' 'Documentation\n' ' %s\n' @@ -221,6 +229,7 @@ class Ui_AboutDialog(object): u'\n '.join(translators[u'cs']), u'\n '.join(translators[u'da']), u'\n '.join(translators[u'de']), + u'\n '.join(translators[u'el']), u'\n '.join(translators[u'en_GB']), u'\n '.join(translators[u'en_ZA']), u'\n '.join(translators[u'es']), @@ -232,6 +241,7 @@ class Ui_AboutDialog(object): u'\n '.join(translators[u'nl']), u'\n '.join(translators[u'pt_BR']), u'\n '.join(translators[u'ru']), + u'\n '.join(translators[u'sv']), u'\n '.join(documentors))) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.creditsTab), diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index c11ff7fb6..747e6cec5 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -63,5 +63,5 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): Launch a web browser and go to the contribute page on the site. """ import webbrowser - url = u'http://openlp.org/en/documentation/introduction/contributing' + url = u'http://openlp.org/development/contribute' webbrowser.open_new(url)