summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/aboutdialog.py
blob: 9974a13de0fd50c145265f7e2f9dff01c2d9395f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007 Marcos Mobley ('markybob') <markybob@gmail.com>
#
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
# the additional special exception to link portions of this program with the OpenSSL library.
# See LICENSE for more details.
#

from __future__ import unicode_literals

from gi.repository import Gtk

import deluge.component as component
from deluge.common import get_version, open_url_in_browser, windows_check
from deluge.ui.client import client

from .common import get_deluge_icon, get_pixbuf


class AboutDialog(object):
    def __init__(self):
        self.about = Gtk.AboutDialog()
        self.about.set_transient_for(component.get('MainWindow').window)
        self.about.set_position(Gtk.WindowPosition.CENTER)
        self.about.set_name(_('Deluge'))
        self.about.set_program_name(_('Deluge'))
        if windows_check():

            def url_hook(dialog, url):
                """Url hook for Windows OS which has no default browser."""
                open_url_in_browser(url)
                return True

            self.about.connect('activate-link', url_hook)

        version = get_version()

        self.about.set_copyright(
            _('Copyright %(year_start)s-%(year_end)s Deluge Team')
            % {'year_start': 2007, 'year_end': 2019}
        )
        self.about.set_comments(
            _('A peer-to-peer file sharing program\nutilizing the BitTorrent protocol.')
            + '\n\n'
            + _('Client:')
            + ' %s\n' % version
        )
        self.about.set_version(version)
        self.about.set_authors(
            [
                _('Current Developers:'),
                'Andrew Resch',
                'Damien Churchill',
                'John Garland',
                'Calum Lind',
                '',
                'libtorrent (libtorrent.org):',
                'Arvid Norberg',
                '',
                _('Past Developers or Contributors:'),
                'Zach Tibbitts',
                'Alon Zakai',
                'Marcos Mobley',
                'Alex Dedul',
                'Sadrul Habib Chowdhury',
                'Ido Abramovich',
                'Martijn Voncken',
            ]
        )
        self.about.set_artists(['Andrew Wedderburn', 'Andrew Resch'])
        self.about.set_translator_credits(
            '\n'.join(
                [
                    'Aaron Wang Shi',
                    'abbigss',
                    'ABCdatos',
                    'Abcx',
                    'Actam',
                    'Adam',
                    'adaminikisi',
                    'adi_oporanu',
                    'Adrian Goll',
                    'afby',
                    'Ahmades',
                    'Ahmad Farghal',
                    'Ahmad Gharbeia أحمد غربية',
                    'akira',
                    'Aki Sivula',
                    'Alan Pepelko',
                    'Alberto',
                    'Alberto Ferrer',
                    'alcatr4z',
                    'AlckO',
                    'Aleksej Korgenkov',
                    'Alessio Treglia',
                    'Alexander Ilyashov',
                    'Alexander Matveev',
                    'Alexander Saltykov',
                    'Alexander Taubenkorb',
                    'Alexander Telenga',
                    'Alexander Yurtsev',
                    'Alexandre Martani',
                    'Alexandre Rosenfeld',
                    'Alexandre Sapata Carbonell',
                    'Alexey Osipov',
                    'Alin Claudiu Radut',
                    'allah',
                    'AlSim',
                    'Alvaro Carrillanca P.',
                    'A.Matveev',
                    'Andras Hipsag',
                    'András Kárász',
                    'Andrea Ratto',
                    'Andreas Johansson',
                    'Andreas Str',
                    'André F. Oliveira',
                    'AndreiF',
                    'andrewh',
                    'Angel Guzman Maeso',
                    'Aníbal Deboni Neto',
                    'animarval',
                    'Antonio Cono',
                    'antoniojreyes',
                    'Anton Shestakov',
                    'Anton Yakutovich',
                    'antou',
                    'Arkadiusz Kalinowski',
                    'Artin',
                    'artir',
                    'Astur',
                    'Athanasios Lefteris',
                    'Athmane MOKRAOUI (ButterflyOfFire)',
                    'Augusta Carla Klug',
                    'Avoledo Marco',
                    'axaard',
                    'AxelRafn',
                    'Axezium',
                    'Ayont',
                    'b3rx',
                    'Bae Taegil',
                    'Bajusz Tamás',
                    "Balaam's Miracle",
                    'Ballestein',
                    'Bent Ole Fosse',
                    'berto89',
                    'bigx',
                    'Bjorn Inge Berg',
                    'blackbird',
                    'Blackeyed',
                    'blackmx',
                    'BlueSky',
                    'Blutheo',
                    'bmhm',
                    'bob00work',
                    'boenki',
                    'Bogdan Bădic-Spătariu',
                    'bonpu',
                    'Boone',
                    'boss01',
                    'Branislav Jovanović',
                    'bronze',
                    'brownie',
                    'Brus46',
                    'bumper',
                    'butely',
                    'BXCracer',
                    'c0nfidencal',
                    'Can Kaya',
                    'Carlos Alexandro Becker',
                    'cassianoleal',
                    'Cédric.h',
                    'César Rubén',
                    'chaoswizard',
                    'Chen Tao',
                    'chicha',
                    'Chien Cheng Wei',
                    'Christian Kopac',
                    'Christian Widell',
                    'Christoffer Brodd-Reijer',
                    'christooss',
                    'CityAceE',
                    'Clopy',
                    'Clusty',
                    'cnu',
                    'Commandant',
                    'Constantinos Koniaris',
                    'Coolmax',
                    'cosmix',
                    'Costin Chirvasuta',
                    'CoVaLiDiTy',
                    'cow_2001',
                    'Crispin Kirchner',
                    'crom',
                    'Cruster',
                    'Cybolic',
                    'Dan Bishop',
                    'Danek',
                    'Dani',
                    'Daniel Demarco',
                    'Daniel Ferreira',
                    'Daniel Frank',
                    'Daniel Holm',
                    'Daniel Høyer Iversen',
                    'Daniel Marynicz',
                    'Daniel Nylander',
                    'Daniel Patriche',
                    'Daniel Schildt',
                    'Daniil Sorokin',
                    'Dante Díaz',
                    'Daria Michalska',
                    'DarkenCZ',
                    'Darren',
                    'Daspah',
                    'David Eurenius',
                    'davidhjelm',
                    'David Machakhelidze',
                    'Dawid Dziurdzia',
                    'Daya Adianto ',
                    'dcruz',
                    'Deady',
                    'Dereck Wonnacott',
                    'Devgru',
                    'Devid Antonio Filoni' 'DevilDogTG',
                    'di0rz`',
                    'Dialecti Valsamou',
                    'Diego Medeiros',
                    'Dkzoffy',
                    'Dmitrij D. Czarkoff',
                    'Dmitriy Geels',
                    'Dmitry Olyenyov',
                    'Dominik Kozaczko',
                    'Dominik Lübben',
                    'doomster',
                    'Dorota Król',
                    'Doyen Philippe',
                    'Dread Knight',
                    'DreamSonic',
                    'duan',
                    'Duong Thanh An',
                    'DvoglavaZver',
                    'dwori',
                    'dylansmrjones',
                    'Ebuntor',
                    'Edgar Alejandro Jarquin Flores',
                    'Eetu',
                    'ekerazha',
                    'Elias Julkunen',
                    'elparia',
                    'Emberke',
                    'Emiliano Goday Caneda',
                    'EndelWar',
                    'eng.essam',
                    'enubuntu',
                    'ercangun',
                    'Erdal Ronahi',
                    'ergin üresin',
                    'Eric',
                    'Éric Lassauge',
                    'Erlend Finvåg',
                    'Errdil',
                    'ethan shalev',
                    'Evgeni Spasov',
                    'ezekielnin',
                    'Fabian Ordelmans',
                    'Fabio Mazanatti',
                    'Fábio Nogueira',
                    'FaCuZ',
                    'Felipe Lerena',
                    'Fernando Pereira',
                    'fjetland',
                    'Florian Schäfer',
                    'FoBoS',
                    'Folke',
                    'Force',
                    'fosk',
                    'fragarray',
                    'freddeg',
                    'Frédéric Perrin',
                    'Fredrik Kilegran',
                    'FreeAtMind',
                    'Fulvio Ciucci',
                    'Gabor Kelemen',
                    'Galatsanos Panagiotis',
                    'Gaussian',
                    'gdevitis',
                    'Georg Brzyk',
                    'George Dumitrescu',
                    'Georgi Arabadjiev',
                    'Georg Sieber',
                    'Gerd Radecke',
                    'Germán Heusdens',
                    'Gianni Vialetto',
                    'Gigih Aji Ibrahim',
                    'Giorgio Wicklein',
                    'Giovanni Rapagnani',
                    'Giuseppe',
                    'gl',
                    'glen',
                    'granjerox',
                    'Green Fish',
                    'greentea',
                    'Greyhound',
                    'G. U.',
                    'Guillaume BENOIT',
                    'Guillaume Pelletier',
                    'Gustavo Henrique Klug',
                    'gutocarvalho',
                    'Guybrush88',
                    'Hans Rødtang',
                    'HardDisk',
                    'Hargas Gábor',
                    'Heitor Thury Barreiros Barbosa',
                    'helios91940',
                    'helix84',
                    'Helton Rodrigues',
                    'Hendrik Luup',
                    'Henrique Ferreiro',
                    'Henry Goury-Laffont',
                    'Hezy Amiel',
                    'hidro',
                    'hoball',
                    'hokten',
                    'Holmsss',
                    'hristo.num',
                    'Hubert Życiński',
                    'Hyo',
                    'Iarwain',
                    'ibe',
                    'ibear',
                    'Id2ndR',
                    'Igor Zubarev',
                    'IKON (Ion)',
                    'imen',
                    'Ionuț Jula',
                    'Isabelle STEVANT',
                    'István Nyitrai',
                    'Ivan Petrovic',
                    'Ivan Prignano',
                    'IvaSerge',
                    'jackmc',
                    'Jacks0nxD',
                    'Jack Shen',
                    'Jacky Yeung',
                    'Jacques Stadler',
                    'Janek Thomaschewski',
                    'Jan Kaláb',
                    'Jan Niklas Hasse',
                    'Jasper Groenewegen',
                    'Javi Rodríguez',
                    'Jayasimha (ಜಯಸಿಂಹ)',
                    'jeannich',
                    'Jeff Bailes',
                    'Jesse Zilstorff',
                    'Joan Duran',
                    'João Santos',
                    'Joar Bagge',
                    'Joe Anderson',
                    'Joel Calado',
                    'Johan Linde',
                    'John Garland',
                    'Jojan',
                    'jollyr0ger',
                    'Jonas Bo Grimsgaard',
                    'Jonas Granqvist',
                    'Jonas Slivka',
                    'Jonathan Zeppettini',
                    'Jørgen',
                    'Jørgen Tellnes',
                    'josé',
                    'José Geraldo Gouvêa',
                    'José Iván León Islas',
                    'José Lou C.',
                    'Jose Sun',
                    'Jr.',
                    'Jukka Kauppinen',
                    'Julián Alarcón',
                    'julietgolf',
                    'Jusic',
                    'Justzupi',
                    'Kaarel',
                    'Kai Thomsen',
                    'Kalman Tarnay',
                    'Kamil Páral',
                    'Kane_F',
                    'kaotiks@gmail.com',
                    'Kateikyoushii',
                    'kaxhinaz',
                    'Kazuhiro NISHIYAMA',
                    'Kerberos',
                    'Keresztes Ákos',
                    'kevintyk',
                    'kiersie',
                    'Kimbo^',
                    'Kim Lübbe',
                    'kitzOgen',
                    'Kjetil Rydland',
                    'kluon',
                    'kmikz',
                    'Knedlyk',
                    'koleoptero',
                    'Kőrösi Krisztián',
                    'Kouta',
                    'Krakatos',
                    'Krešo Kunjas',
                    'kripken',
                    'Kristaps',
                    'Kristian Øllegaard',
                    'Kristoffer Egil Bonarjee',
                    'Krzysztof Janowski',
                    'Krzysztof Zawada',
                    'Larry Wei Liu',
                    'laughterwym',
                    'Laur Mõtus',
                    'lazka',
                    'leandrud',
                    'lê bình',
                    'Le Coz Florent',
                    'Leo',
                    'liorda',
                    'LKRaider',
                    'LoLo_SaG',
                    'Long Tran',
                    'Lorenz',
                    'Low Kian Seong',
                    'Luca Andrea Rossi',
                    'Luca Ferretti',
                    'Lucky LIX',
                    'Luis Gomes',
                    'Luis Reis',
                    'Łukasz Wyszyński',
                    'luojie-dune',
                    'maaark',
                    'Maciej Chojnacki',
                    'Maciej Meller',
                    'Mads Peter Rommedahl',
                    'Major Kong',
                    'Malaki',
                    'malde',
                    'Malte Lenz',
                    'Mantas Kriaučiūnas',
                    'Mara Sorella',
                    'Marcin',
                    'Marcin Falkiewicz',
                    'marcobra',
                    'Marco da Silva',
                    'Marco de Moulin',
                    'Marco Rodrigues',
                    'Marcos',
                    'Marcos Escalier',
                    'Marcos Mobley',
                    'Marcus Ekstrom',
                    'Marek Dębowski',
                    'Mário Buči',
                    'Mario Munda',
                    'Marius Andersen',
                    'Marius Hudea',
                    'Marius Mihai',
                    'Mariusz Cielecki',
                    'Mark Krapivner',
                    'marko-markovic',
                    'Markus Brummer',
                    'Markus Sutter',
                    'Martin',
                    'Martin Dybdal',
                    'Martin Iglesias',
                    'Martin Lettner',
                    'Martin Pihl',
                    'Masoud Kalali',
                    'mat02',
                    'Matej Urbančič',
                    'Mathias-K',
                    'Mathieu Arès',
                    'Mathieu D. (MatToufoutu)',
                    'Mathijs',
                    'Matrik',
                    'Matteo Renzulli',
                    'Matteo Settenvini',
                    'Matthew Gadd',
                    'Matthias Benkard',
                    'Matthias Mailänder',
                    'Mattias Ohlsson',
                    'Mauro de Carvalho',
                    'Max Molchanov',
                    'Me',
                    'MercuryCC',
                    'Mert Bozkurt',
                    'Mert Dirik',
                    'MFX',
                    'mhietar',
                    'mibtha',
                    'Michael Budde',
                    'Michael Kaliszka',
                    'Michalis Makaronides',
                    'Michał Tokarczyk',
                    'Miguel Pires da Rosa',
                    'Mihai Capotă',
                    'Miika Metsälä',
                    'Mikael Fernblad',
                    'Mike Sierra',
                    'mikhalek',
                    'Milan Prvulović',
                    'Milo Casagrande',
                    'Mindaugas',
                    'Miroslav Matejaš',
                    'misel',
                    'mithras',
                    'Mitja Pagon',
                    'M.Kitchen',
                    'Mohamed Magdy',
                    'moonkey',
                    'MrBlonde',
                    'muczy',
                    'Münir Ekinci',
                    'Mustafa Temizel',
                    'mvoncken',
                    'Mytonn',
                    'NagyMarton',
                    'neaion',
                    'Neil Lin',
                    'Nemo',
                    'Nerijus Arlauskas',
                    'Nicklas Larsson',
                    'Nicolaj Wyke',
                    'Nicola Piovesan',
                    'Nicolas Sabatier',
                    'Nicolas Velin',
                    'Nightfall',
                    'NiKoB',
                    'Nikolai M. Riabov',
                    'Niko_Thien',
                    'niska',
                    'Nithir',
                    'noisemonkey',
                    'nomemohes',
                    'nosense',
                    'null',
                    'Nuno Estêvão',
                    'Nuno Santos',
                    'nxxs',
                    'nyo',
                    'obo',
                    'Ojan',
                    'Olav Andreas Lindekleiv',
                    'oldbeggar',
                    'Olivier FAURAX',
                    'orphe',
                    'osantana',
                    'Osman Tosun',
                    'OssiR',
                    'otypoks',
                    'ounn',
                    'Oz123',
                    'Özgür BASKIN',
                    'Pablo Carmona A.',
                    'Pablo Ledesma',
                    'Pablo Navarro Castillo',
                    'Paco Molinero',
                    'Pål-Eivind Johnsen',
                    'pano',
                    'Paolo Naldini',
                    'Paracelsus',
                    'Patryk13_03',
                    'Patryk Skorupa',
                    'PattogoTehen',
                    'Paul Lange',
                    'Pavcio',
                    'Paweł Wysocki',
                    'Pedro Brites Moita',
                    'Pedro Clemente Pereira Neto',
                    'Pekka "PEXI" Niemistö',
                    'Penegal',
                    'Penzo',
                    'perdido',
                    'Peter Kotrcka',
                    'Peter Skov',
                    'Peter Van den Bosch',
                    'Petter Eklund',
                    'Petter Viklund',
                    'phatsphere',
                    'Phenomen',
                    'Philipi',
                    'Philippides Homer',
                    'phoenix',
                    'pidi',
                    'Pierre Quillery',
                    'Pierre Rudloff',
                    'Pierre Slamich',
                    'Pietrao',
                    'Piotr Strębski',
                    'Piotr Wicijowski',
                    'Pittmann Tamás',
                    'Playmolas',
                    'Prescott',
                    'Prescott_SK',
                    'pronull',
                    'Przemysław Kulczycki',
                    'Pumy',
                    'pushpika',
                    'PY',
                    'qubicllj',
                    'r21vo',
                    'Rafał Barański',
                    'rainofchaos',
                    'Rajbir',
                    'ras0ir',
                    'Rat',
                    'rd1381',
                    'Renato',
                    'Rene Hennig',
                    'Rene Pärts',
                    'Ricardo Duarte',
                    'Richard',
                    'Robert Hrovat',
                    'Roberth Sjonøy',
                    'Robert Lundmark',
                    'Robin Jakobsson',
                    'Robin Kåveland',
                    'Rodrigo Donado',
                    'Roel Groeneveld',
                    'rohmaru',
                    'Rolf Christensen',
                    'Rolf Leggewie',
                    'Roni Kantis',
                    'Ronmi',
                    'Rostislav Raykov',
                    'royto',
                    'RuiAmaro',
                    'Rui Araújo',
                    'Rui Moura',
                    'Rune Svendsen',
                    'Rusna',
                    'Rytis',
                    'Sabirov Mikhail',
                    'salseeg',
                    'Sami Koskinen',
                    'Samir van de Sand',
                    'Samuel Arroyo Acuña',
                    'Samuel R. C. Vale',
                    'Sanel',
                    'Santi',
                    'Santi Martínez Cantelli',
                    'Sardan',
                    'Sargate Kanogan',
                    'Sarmad Jari',
                    'Saša Bodiroža',
                    'sat0shi',
                    'Saulius Pranckevičius',
                    'Savvas Radevic',
                    'Sebastian Krauß',
                    'Sebastián Porta',
                    'Sedir',
                    'Sefa Denizoğlu',
                    'sekolands',
                    'Selim Suerkan',
                    'semsomi',
                    'Sergii Golovatiuk',
                    'setarcos',
                    'Sheki',
                    'Shironeko',
                    'Shlomil',
                    'silfiriel',
                    'Simone Tolotti',
                    'Simone Vendemia',
                    'sirkubador',
                    'Sławomir Więch',
                    'slip',
                    'slyon',
                    'smoke',
                    'Sonja',
                    'spectral',
                    'spin_555',
                    'spitf1r3',
                    'Spiziuz',
                    'Spyros Theodoritsis',
                    'SqUe',
                    'Squigly',
                    'srtck',
                    'Stefan Horning',
                    'Stefano Maggiolo',
                    'Stefano Roberto Soleti',
                    'steinberger',
                    'Stéphane Travostino',
                    'Stephan Klein',
                    'Steven De Winter',
                    'Stevie',
                    'Stian24',
                    'stylius',
                    'Sukarn Maini',
                    'Sunjae Park',
                    'Susana Pereira',
                    'szymon siglowy',
                    'takercena',
                    'TAS',
                    'Taygeto',
                    'temy4',
                    'texxxxxx',
                    'thamood',
                    'Thanos Chatziathanassiou',
                    'Tharawut Paripaiboon',
                    'Theodoor',
                    'Théophane Anestis',
                    'Thor Marius K. Høgås',
                    'Tiago Silva',
                    'Tiago Sousa',
                    'Tikkel',
                    'tim__b',
                    'Tim Bordemann',
                    'Tim Fuchs',
                    'Tim Kornhammar',
                    'Timo',
                    'Timo Jyrinki',
                    'Timothy Babych',
                    'TitkosRejtozo',
                    'Tom',
                    'Tomas Gustavsson',
                    'Tomas Valentukevičius',
                    'Tomasz Dominikowski',
                    'Tomislav Plavčić',
                    'Tom Mannerhagen',
                    'Tommy Mikkelsen',
                    'Tom Verdaat',
                    'Tony Manco',
                    'Tor Erling H. Opsahl',
                    'Toudi',
                    'tqm_z',
                    'Trapanator',
                    'Tribaal',
                    'Triton',
                    'TuniX12',
                    'Tuomo Sipola',
                    'turbojugend_gr',
                    'Turtle.net',
                    'twilight',
                    'tymmej',
                    'Ulrik',
                    'Umarzuki Mochlis',
                    'unikob',
                    'Vadim Gusev',
                    'Vagi',
                    'Valentin Bora',
                    'Valmantas Palikša',
                    'VASKITTU',
                    'Vassilis Skoullis',
                    'vetal17',
                    'vicedo',
                    'viki',
                    'villads hamann',
                    'Vincent Garibal',
                    'Vincent Ortalda',
                    'vinchi007',
                    'Vinícius de Figueiredo Silva',
                    'Vinzenz Vietzke',
                    'virtoo',
                    'virtual_spirit',
                    'Vitor Caike',
                    'Vitor Lamas Gatti',
                    'Vladimir Lazic',
                    'Vladimir Sharshov',
                    'Wanderlust',
                    'Wander Nauta',
                    'Ward De Ridder',
                    'WebCrusader',
                    'webdr',
                    'Wentao Tang',
                    'wilana',
                    'Wilfredo Ernesto Guerrero Campos',
                    'Wim Champagne',
                    'World Sucks',
                    'Xabi Ezpeleta',
                    'Xavi de Moner',
                    'XavierToo',
                    'XChesser',
                    'Xiaodong Xu',
                    'xyb',
                    'Yaron',
                    'Yasen Pramatarov',
                    'YesPoX',
                    'Yuren Ju',
                    'Yves MATHIEU',
                    'zekopeko',
                    'zhuqin',
                    'Zissan',
                    'Γιάννης Κατσαμπίρης',
                    'Артём Попов',
                    'Миша',
                    'Шаймарданов Максим',
                    '蔡查理',
                ]
            )
        )
        self.about.set_wrap_license(True)
        self.about.set_license(
            _(
                'This program is free software; you can redistribute it and/or '
                'modify it under the terms of the GNU General Public License as '
                'published by the Free Software Foundation; either version 3 of '
                'the License, or (at your option) any later version. \n\n'
                'This program '
                'is distributed in the hope that it will be useful, but WITHOUT '
                'ANY WARRANTY; without even the implied warranty of '
                'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU '
                'General Public License for more details. \n\n'
                'You should have received '
                'a copy of the GNU General Public License along with this program; '
                'if not, see <http://www.gnu.org/licenses>. \n\n'
                'In addition, as a '
                'special exception, the copyright holders give permission to link '
                'the code of portions of this program with the OpenSSL library. '
                'You must obey the GNU General Public License in all respects for '
                'all of the code used other than OpenSSL. \n\n'
                'If you modify file(s) '
                'with this exception, you may extend this exception to your '
                'version of the file(s), but you are not obligated to do so. If '
                'you do not wish to do so, delete this exception statement from '
                'your version. If you delete this exception statement from all '
                'source files in the program, then also delete it here.'
            )
        )
        self.about.set_website('http://deluge-torrent.org')
        self.about.set_website_label('deluge-torrent.org')

        self.about.set_icon(get_deluge_icon())
        self.about.set_logo(get_pixbuf('deluge-about.png'))

        if client.connected():
            if not client.is_standalone():
                self.about.set_comments(
                    self.about.get_comments() + _('Server:') + ' %coreversion%\n'
                )

            self.about.set_comments(
                self.about.get_comments() + '\n' + _('libtorrent:') + ' %ltversion%\n'
            )

            def on_lt_version(result):
                c = self.about.get_comments()
                c = c.replace('%ltversion%', result)
                self.about.set_comments(c)

            def on_info(result):
                c = self.about.get_comments()
                c = c.replace('%coreversion%', result)
                self.about.set_comments(c)
                client.core.get_libtorrent_version().addCallback(on_lt_version)

            if not client.is_standalone():
                client.daemon.info().addCallback(on_info)
            else:
                client.core.get_libtorrent_version().addCallback(on_lt_version)

    def run(self):
        self.about.show_all()
        self.about.run()
        self.about.destroy()