Merge lp:~costales/gui-ufw/17.10-pause-btn into lp:gui-ufw

Proposed by costales
Status: Merged
Merged at revision: 3
Proposed branch: lp:~costales/gui-ufw/17.10-pause-btn
Merge into: lp:gui-ufw
Diff against target: 5143 lines (+1443/-1323)
4 files modified
data/ui/gufw.ui (+31/-0)
gufw/gufw/view/gufw.py (+15/-0)
gufw/gufw/view/listening.py (+6/-0)
po/gufw.pot (+1391/-1323)
To merge this branch: bzr merge lp:~costales/gui-ufw/17.10-pause-btn
Reviewer Review Type Date Requested Status
costales Approve
Review via email: mp+310483@code.launchpad.net
To post a comment you must log in.
Revision history for this message
costales (costales) wrote :

Pause button in Listening Report

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'data/ui/gufw.ui'
2--- data/ui/gufw.ui 2016-11-08 19:14:11 +0000
3+++ data/ui/gufw.ui 2016-11-09 19:48:13 +0000
4@@ -782,6 +782,37 @@
5 <property name="can_focus">False</property>
6 <property name="icon_size">1</property>
7 <child>
8+ <object class="GtkToolButton" id="btnReportPause">
9+ <property name="use_action_appearance">False</property>
10+ <property name="visible">True</property>
11+ <property name="can_focus">False</property>
12+ <property name="tooltip_text" translatable="yes">Pause Listening Report</property>
13+ <property name="label" translatable="yes">Pause</property>
14+ <property name="use_underline">True</property>
15+ <property name="icon_name">media-playback-pause</property>
16+ <signal name="clicked" handler="on_btnReportPause_clicked" swapped="no"/>
17+ </object>
18+ <packing>
19+ <property name="expand">False</property>
20+ <property name="homogeneous">True</property>
21+ </packing>
22+ </child>
23+ <child>
24+ <object class="GtkToolButton" id="btnReportPlay">
25+ <property name="use_action_appearance">False</property>
26+ <property name="can_focus">False</property>
27+ <property name="tooltip_text" translatable="yes">See current Listening Report</property>
28+ <property name="label" translatable="yes">Pause</property>
29+ <property name="use_underline">True</property>
30+ <property name="icon_name">media-playback-start</property>
31+ <signal name="clicked" handler="on_btnReportPlay_clicked" swapped="no"/>
32+ </object>
33+ <packing>
34+ <property name="expand">False</property>
35+ <property name="homogeneous">True</property>
36+ </packing>
37+ </child>
38+ <child>
39 <object class="GtkToolButton" id="btnReportRule">
40 <property name="use_action_appearance">False</property>
41 <property name="visible">True</property>
42
43=== modified file 'gufw/gufw/view/gufw.py'
44--- gufw/gufw/view/gufw.py 2016-11-08 19:33:57 +0000
45+++ gufw/gufw/view/gufw.py 2016-11-09 19:48:13 +0000
46@@ -169,6 +169,9 @@
47 self.txt_tag_gray = self.log_txt.create_tag('colored_gray', foreground=self.GRAY)
48 self.txt_tag_black = self.log_txt.create_tag('colored_black', foreground=self.BLACK)
49
50+ self.btn_report_pause = self.builder.get_object('btnReportPause')
51+ self.btn_report_play = self.builder.get_object('btnReportPlay')
52+
53 # Stack init
54 stack = Gtk.Stack()
55 stack.set_transition_type(Gtk.StackTransitionType.SLIDE_LEFT_RIGHT)
56@@ -289,6 +292,8 @@
57
58 if self.fw.get_status():
59 self.print_rules(self.fw.get_rules())
60+
61+ self.btn_report_play.hide()
62
63 # Disable the context menu
64 def context_menu_cb(webview, context_menu, event, hit_test_result, error):
65@@ -517,6 +522,16 @@
66 self.winadd.set_add_from_report(protocol, port, address, app)
67 self.winadd.show_win()
68
69+ def on_btnReportPause_clicked(self, widget, data=None):
70+ self.btn_report_pause.hide()
71+ self.btn_report_play.show()
72+ self.listening.set_pause(True)
73+
74+ def on_btnReportPlay_clicked(self, widget, data=None):
75+ self.btn_report_pause.show()
76+ self.btn_report_play.hide()
77+ self.listening.set_pause(False)
78+
79 def on_switchStatus_active_notify(self, widget, data=None):
80 self.fw.set_status(self.switchStatus.get_active())
81 self.print_rules(self.fw.get_rules())
82
83=== modified file 'gufw/gufw/view/listening.py'
84--- gufw/gufw/view/listening.py 2016-11-08 19:33:57 +0000
85+++ gufw/gufw/view/listening.py 2016-11-09 19:48:13 +0000
86@@ -30,6 +30,7 @@
87 self.gufw = gufw
88 self.previous_report = []
89 self.running_listening = True
90+ self.paused_listening = False
91
92 self._show_report()
93
94@@ -55,7 +56,12 @@
95 def stopping(self):
96 self.running_listening = False
97
98+ def set_pause(self, value):
99+ self.paused_listening = value
100+
101 def _view_report(self, report, previous_report):
102+ if self.paused_listening:
103+ return
104 # Selected?
105 protocol = port = address = app = ''
106 (model, rows) = self.gufw.tv_report.get_selection().get_selected_rows()
107
108=== modified file 'po/gufw.pot'
109--- po/gufw.pot 2016-11-08 19:14:11 +0000
110+++ po/gufw.pot 2016-11-09 19:48:13 +0000
111@@ -8,7 +8,7 @@
112 msgstr ""
113 "Project-Id-Version: PACKAGE VERSION\n"
114 "Report-Msgid-Bugs-To: \n"
115-"POT-Creation-Date: 2016-09-04 12:30+0200\n"
116+"POT-Creation-Date: 2016-11-09 20:46+0100\n"
117 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
118 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
119 "Language-Team: LANGUAGE <LL@li.org>\n"
120@@ -26,3160 +26,3216 @@
121 msgstr ""
122
123 #: ../DEV_extra_translations/extra_translations.py:5
124-msgid "F-22 Lightning 3"
125+msgid "Clonk"
126 msgstr ""
127
128 #: ../DEV_extra_translations/extra_translations.py:6
129-#: ../DEV_extra_translations/extra_translations.py:246
130-msgid "A F-22 Raptor simulation by NovaLogic"
131+msgid "An action/RTS/platform game by RedWolf Design; standard ports"
132 msgstr ""
133
134 #: ../DEV_extra_translations/extra_translations.py:7
135-msgid "Games;Simulation;"
136+msgid "Games;Action;"
137 msgstr ""
138
139 #: ../DEV_extra_translations/extra_translations.py:8
140-msgid "Assault Cube"
141+msgid "Clonk Host"
142 msgstr ""
143
144 #: ../DEV_extra_translations/extra_translations.py:9
145-msgid "A free, multiplayer, first-person shooter game"
146+msgid "An action/RTS/platform game by RedWolf Design; host ports"
147 msgstr ""
148
149 #: ../DEV_extra_translations/extra_translations.py:10
150-msgid "Games;Action;"
151+msgid "Clonk LAN"
152 msgstr ""
153
154 #: ../DEV_extra_translations/extra_translations.py:11
155-msgid "Joint Operations: Typhoon Rising"
156+msgid "An action/RTS/platform game by RedWolf Design; LAN game discovery port"
157 msgstr ""
158
159 #: ../DEV_extra_translations/extra_translations.py:12
160-#: ../DEV_extra_translations/extra_translations.py:503
161-#: ../DEV_extra_translations/extra_translations.py:581
162-#: ../DEV_extra_translations/extra_translations.py:681
163-msgid "A FPS combat game by NovaLogic"
164+msgid "Shogo: Mobile Armour Division"
165 msgstr ""
166
167 #: ../DEV_extra_translations/extra_translations.py:13
168-msgid "Warzone 2100"
169+msgid "A FPS by Monolith Productions"
170 msgstr ""
171
172 #: ../DEV_extra_translations/extra_translations.py:14
173-msgid "A RTS game by Pumpkin Studios"
174+msgid "DirectX 7"
175 msgstr ""
176
177 #: ../DEV_extra_translations/extra_translations.py:15
178-msgid "Games;Strategy;"
179+msgid "Network games using DirectX 7 API"
180 msgstr ""
181
182 #: ../DEV_extra_translations/extra_translations.py:16
183-#: ../DEV_extra_translations/extra_translations.py:300
184-msgid "hddtemp"
185+msgid "Network;"
186 msgstr ""
187
188 #: ../DEV_extra_translations/extra_translations.py:17
189-msgid "Data storage device temperature data server"
190+msgid "DirectX 8"
191 msgstr ""
192
193 #: ../DEV_extra_translations/extra_translations.py:18
194-msgid "System;Monitor;"
195+msgid "Network games using DirectX 8 API"
196 msgstr ""
197
198 #: ../DEV_extra_translations/extra_translations.py:19
199-msgid "Abuse"
200+msgid "Cube 2: Sauerbraten"
201 msgstr ""
202
203 #: ../DEV_extra_translations/extra_translations.py:20
204-msgid "A dark 2D side-scrolling platform game developed by Crack dot Com"
205+msgid "A FPS game based on the Cube engine"
206 msgstr ""
207
208 #: ../DEV_extra_translations/extra_translations.py:21
209-msgid "monopd"
210+msgid "Socks Proxy"
211 msgstr ""
212
213 #: ../DEV_extra_translations/extra_translations.py:22
214-msgid "A game server for Monopoly-like board games"
215+msgid "SOCKS protocol for proxy server support"
216 msgstr ""
217
218 #: ../DEV_extra_translations/extra_translations.py:23
219-msgid "Games;Board;"
220+msgid "Network;Services;"
221 msgstr ""
222
223 #: ../DEV_extra_translations/extra_translations.py:24
224-msgid "UPnP"
225+msgid "Transparent Proxy"
226 msgstr ""
227
228 #: ../DEV_extra_translations/extra_translations.py:25
229-msgid ""
230-"Universal Plug and Play. It is a framework which can be used to make "
231-"networked applications"
232+msgid "Transparent proxy"
233 msgstr ""
234
235 #: ../DEV_extra_translations/extra_translations.py:26
236-msgid "System;General;"
237+msgid "Warsow"
238 msgstr ""
239
240 #: ../DEV_extra_translations/extra_translations.py:27
241-msgid "Camfrog"
242+msgid "A competitive FPS based on the Qfusion 3D/id tech 2 engine"
243 msgstr ""
244
245 #: ../DEV_extra_translations/extra_translations.py:28
246-#: ../DEV_extra_translations/extra_translations.py:456
247-#: ../DEV_extra_translations/extra_translations.py:457
248-msgid "H.323 Call Signaling"
249+msgid "FreeLords"
250 msgstr ""
251
252 #: ../DEV_extra_translations/extra_translations.py:29
253-msgid "Network;Telephony;Video Conference;"
254+msgid "A clone of Warlords"
255 msgstr ""
256
257 #: ../DEV_extra_translations/extra_translations.py:30
258-#: ../DEV_extra_translations/extra_translations.py:788
259-msgid "FTP"
260+msgid "Games;Strategy;"
261 msgstr ""
262
263 #: ../DEV_extra_translations/extra_translations.py:31
264-#: ../DEV_extra_translations/extra_translations.py:789
265-msgid "File Transfer Protocol"
266+msgid "Dropbox LanSync"
267 msgstr ""
268
269 #: ../DEV_extra_translations/extra_translations.py:32
270+msgid "A web-based file hosting service"
271+msgstr ""
272+
273+#: ../DEV_extra_translations/extra_translations.py:33
274 msgid "Network;File Transfer;"
275 msgstr ""
276
277-#: ../DEV_extra_translations/extra_translations.py:33
278-msgid "WINE: Starcraft"
279-msgstr ""
280-
281 #: ../DEV_extra_translations/extra_translations.py:34
282-#: ../DEV_extra_translations/extra_translations.py:723
283-msgid "A strategy game by Blizzard Entertainment"
284+msgid "Heavy Gear II"
285 msgstr ""
286
287 #: ../DEV_extra_translations/extra_translations.py:35
288-msgid "Kerberos v5 KDC"
289+msgid ""
290+"A mech FPS based on the Dream Pod 9 universe from Activision and Loki "
291+"Software"
292 msgstr ""
293
294 #: ../DEV_extra_translations/extra_translations.py:36
295-msgid "Kerberos v5 KDC server"
296+msgid "WINE: Starcraft"
297 msgstr ""
298
299 #: ../DEV_extra_translations/extra_translations.py:37
300-msgid "Network;"
301+#: ../DEV_extra_translations/extra_translations.py:756
302+msgid "A strategy game by Blizzard Entertainment"
303 msgstr ""
304
305 #: ../DEV_extra_translations/extra_translations.py:38
306-msgid "Kerberos v5 admin"
307+msgid "OpenArena"
308 msgstr ""
309
310 #: ../DEV_extra_translations/extra_translations.py:39
311-#: ../DEV_extra_translations/extra_translations.py:43
312-msgid "Kerberos v5 server"
313+msgid "A competitive FPS based on ioquake3/id tech 3 engine"
314 msgstr ""
315
316 #: ../DEV_extra_translations/extra_translations.py:40
317+msgid "FooBillard"
318+msgstr ""
319+
320 #: ../DEV_extra_translations/extra_translations.py:41
321-msgid "Kerberos v5 password"
322+msgid "Cue sports simulation with Carambol, Snooker, and Pool"
323 msgstr ""
324
325 #: ../DEV_extra_translations/extra_translations.py:42
326-msgid "Kerberos v5 Full"
327+msgid "Games;Sports;"
328+msgstr ""
329+
330+#: ../DEV_extra_translations/extra_translations.py:43
331+msgid "Kingpin: Life of Crime"
332 msgstr ""
333
334 #: ../DEV_extra_translations/extra_translations.py:44
335-msgid "LDAP"
336+msgid "A FPS by Xatrix Entertainment"
337 msgstr ""
338
339 #: ../DEV_extra_translations/extra_translations.py:45
340-msgid "LDAP server"
341+msgid "NFS"
342 msgstr ""
343
344 #: ../DEV_extra_translations/extra_translations.py:46
345-msgid "LDAPS"
346+msgid "Network File System"
347 msgstr ""
348
349 #: ../DEV_extra_translations/extra_translations.py:47
350-msgid "LDAP server (LDAPS)"
351+msgid "NFS (jhansonxi)"
352 msgstr ""
353
354 #: ../DEV_extra_translations/extra_translations.py:48
355-msgid "OpenArena"
356+msgid ""
357+"Network File System protocol with static ports at relatively unused "
358+"4194:4197 (4195 broadcast out)"
359 msgstr ""
360
361 #: ../DEV_extra_translations/extra_translations.py:49
362-msgid "A competitive FPS based on ioquake3/id tech 3 engine"
363+msgid "NFS Quota (jhansonxi)"
364 msgstr ""
365
366 #: ../DEV_extra_translations/extra_translations.py:50
367-msgid "Conquest"
368+msgid ""
369+"Network File System protocol with filesystem usage quota support with static "
370+"ports at relatively unused 4194:4198 (4195 broadcast out)"
371 msgstr ""
372
373 #: ../DEV_extra_translations/extra_translations.py:51
374+msgid "Diablo"
375+msgstr ""
376+
377+#: ../DEV_extra_translations/extra_translations.py:52
378+#: ../DEV_extra_translations/extra_translations.py:627
379+msgid "Fantasy combat game by Blizzard Entertainment"
380+msgstr ""
381+
382 #: ../DEV_extra_translations/extra_translations.py:53
383-msgid "A space warfare game"
384-msgstr ""
385-
386-#: ../DEV_extra_translations/extra_translations.py:52
387-msgid "Conquest Metaserver"
388+msgid "Kerberos v5 KDC"
389 msgstr ""
390
391 #: ../DEV_extra_translations/extra_translations.py:54
392-msgid "Dopewars"
393+msgid "Kerberos v5 KDC server"
394 msgstr ""
395
396 #: ../DEV_extra_translations/extra_translations.py:55
397-#: ../DEV_extra_translations/extra_translations.py:210
398-#: ../DEV_extra_translations/extra_translations.py:284
399-#: ../DEV_extra_translations/extra_translations.py:450
400-#: ../DEV_extra_translations/extra_translations.py:455
401-#: ../DEV_extra_translations/extra_translations.py:513
402-msgid "A FPS by id Software"
403+msgid "Kerberos v5 admin"
404 msgstr ""
405
406 #: ../DEV_extra_translations/extra_translations.py:56
407-msgid "Transmission Daemon"
408+#: ../DEV_extra_translations/extra_translations.py:60
409+msgid "Kerberos v5 server"
410 msgstr ""
411
412 #: ../DEV_extra_translations/extra_translations.py:57
413-msgid "Remote control for Transmission"
414-msgstr ""
415-
416 #: ../DEV_extra_translations/extra_translations.py:58
417-msgid "Network;P2P;"
418+msgid "Kerberos v5 password"
419 msgstr ""
420
421 #: ../DEV_extra_translations/extra_translations.py:59
422-#: ../DEV_extra_translations/extra_translations.py:113
423-#: ../DEV_extra_translations/extra_translations.py:351
424-#: ../DEV_extra_translations/extra_translations.py:388
425-#: ../DEV_extra_translations/extra_translations.py:397
426-#: ../DEV_extra_translations/extra_translations.py:544
427-#: ../DEV_extra_translations/extra_translations.py:547
428-#: ../DEV_extra_translations/extra_translations.py:550
429-#: ../DEV_extra_translations/extra_translations.py:601
430-#: ../DEV_extra_translations/extra_translations.py:662
431-#: ../DEV_extra_translations/extra_translations.py:669
432-#: ../DEV_extra_translations/extra_translations.py:747
433-msgid "Remember to open the ports on the router"
434-msgstr ""
435-
436-#: ../DEV_extra_translations/extra_translations.py:60
437-msgid "London Law"
438+msgid "Kerberos v5 Full"
439 msgstr ""
440
441 #: ../DEV_extra_translations/extra_translations.py:61
442-msgid "An online multiplayer adaptation of the Scotland Yard board game"
443+msgid "LDAP"
444 msgstr ""
445
446 #: ../DEV_extra_translations/extra_translations.py:62
447-msgid "MPD"
448+msgid "LDAP server"
449 msgstr ""
450
451 #: ../DEV_extra_translations/extra_translations.py:63
452-msgid "Music Player Daemon. A server for streaming music"
453+msgid "LDAPS"
454 msgstr ""
455
456 #: ../DEV_extra_translations/extra_translations.py:64
457-msgid "Network;Audio Video;Audio;"
458+msgid "LDAP server (LDAPS)"
459 msgstr ""
460
461 #: ../DEV_extra_translations/extra_translations.py:65
462-msgid "Hedgewars"
463+msgid "Alien Arena"
464 msgstr ""
465
466 #: ../DEV_extra_translations/extra_translations.py:66
467-#: ../DEV_extra_translations/extra_translations.py:749
468-msgid "An arcade combat game inspired by Worms from Team17 Software"
469+msgid "A SciFi competitive FPS based on the CRX/id Tech 2 engine"
470 msgstr ""
471
472 #: ../DEV_extra_translations/extra_translations.py:67
473-msgid "Games;Arcade;"
474+msgid "Subversion Server"
475 msgstr ""
476
477 #: ../DEV_extra_translations/extra_translations.py:68
478-msgid "MiniDLNA"
479+msgid "Subversion server for access to Subversion repositories"
480 msgstr ""
481
482 #: ../DEV_extra_translations/extra_translations.py:69
483-msgid "Serves media files (music, pictures, and video) to clients on a network"
484+msgid "People Nearby"
485 msgstr ""
486
487 #: ../DEV_extra_translations/extra_translations.py:70
488-msgid "Audio Video;TV;"
489+msgid "People Nearby (Bonjour/Salut) functionality in Empathy"
490 msgstr ""
491
492 #: ../DEV_extra_translations/extra_translations.py:71
493-msgid "Tachyon: The Fringe"
494+msgid "Network;Telephony;Instant Messaging;"
495 msgstr ""
496
497 #: ../DEV_extra_translations/extra_translations.py:72
498-msgid "A 3D space combat game by NovaLogic"
499+msgid "Bonjour"
500 msgstr ""
501
502 #: ../DEV_extra_translations/extra_translations.py:73
503-msgid "MSN Gaming Zone"
504+msgid "Bonjour protocol"
505 msgstr ""
506
507 #: ../DEV_extra_translations/extra_translations.py:74
508-msgid "Games using MSN Gaming Zone API"
509+msgid "MSN Chat"
510 msgstr ""
511
512 #: ../DEV_extra_translations/extra_translations.py:75
513-msgid "Network;Games;"
514+msgid "MSN chat protocol (with file transfer and voice)"
515 msgstr ""
516
517 #: ../DEV_extra_translations/extra_translations.py:76
518-msgid "Myth II: Soulblighter"
519+msgid "MSN Chat (SSL)"
520 msgstr ""
521
522 #: ../DEV_extra_translations/extra_translations.py:77
523-msgid "A real-time tactics game from Bungie"
524+msgid "MSN chat protocol SSL"
525 msgstr ""
526
527 #: ../DEV_extra_translations/extra_translations.py:78
528-msgid "NTP"
529+msgid "AIM Talk"
530 msgstr ""
531
532 #: ../DEV_extra_translations/extra_translations.py:79
533-msgid "Network Time Protocol"
534+msgid "AIM talk protocol"
535 msgstr ""
536
537 #: ../DEV_extra_translations/extra_translations.py:80
538-msgid "Network;Time;"
539+msgid "Yahoo Chat"
540 msgstr ""
541
542 #: ../DEV_extra_translations/extra_translations.py:81
543-msgid "Ubuntu One"
544+msgid "Yahoo chat protocol"
545 msgstr ""
546
547 #: ../DEV_extra_translations/extra_translations.py:82
548-msgid ""
549-"Store files online and sync them between computers and mobile devices, as "
550-"well as stream audio and music from cloud to mobile devices"
551+msgid "Multicast DNS"
552 msgstr ""
553
554 #: ../DEV_extra_translations/extra_translations.py:83
555-msgid "Network;Cloud;"
556+msgid "Multicast DNS (Avahi, Bonjour)"
557 msgstr ""
558
559 #: ../DEV_extra_translations/extra_translations.py:84
560-msgid "NAT"
561+msgid "IRC - 194/tcp"
562 msgstr ""
563
564 #: ../DEV_extra_translations/extra_translations.py:85
565-msgid "Port Mapping Protocol"
566+msgid "Internet Relay Chat on official port 194 (rarely used)"
567 msgstr ""
568
569 #: ../DEV_extra_translations/extra_translations.py:86
570-msgid "SAMBA"
571+msgid "Network;IRC;"
572 msgstr ""
573
574 #: ../DEV_extra_translations/extra_translations.py:87
575-msgid ""
576-"SMB/CIFS protocol for Unix systems, allowing you to serve files and printers "
577-"to Windows, NT, OS/2 and DOS clients"
578+msgid "IRC"
579 msgstr ""
580
581 #: ../DEV_extra_translations/extra_translations.py:88
582-msgid "Network;Services;|Network;File Transfer"
583+msgid ""
584+"Internet Relay Chat on common default port 6667, using nf_conntrack_irc DCC "
585+"helper"
586 msgstr ""
587
588 #: ../DEV_extra_translations/extra_translations.py:89
589-msgid "Nagios Plugin"
590+msgid "IRC SSL"
591 msgstr ""
592
593 #: ../DEV_extra_translations/extra_translations.py:90
594-msgid "Remote Plugin Executor"
595+msgid "Internet Relay Chat on SSL default port 6697"
596 msgstr ""
597
598 #: ../DEV_extra_translations/extra_translations.py:91
599-msgid "PulseAudio"
600+msgid "gpsd"
601 msgstr ""
602
603 #: ../DEV_extra_translations/extra_translations.py:92
604-msgid "Networked sound server"
605+msgid "Interface daemon for GPS receivers"
606 msgstr ""
607
608 #: ../DEV_extra_translations/extra_translations.py:93
609-msgid "Kingpin: Life of Crime"
610+msgid "Network;Geography;"
611 msgstr ""
612
613 #: ../DEV_extra_translations/extra_translations.py:94
614-msgid "A FPS by Xatrix Entertainment"
615+msgid "OpenTTD server"
616 msgstr ""
617
618 #: ../DEV_extra_translations/extra_translations.py:95
619-msgid "XBMC Remote"
620+msgid "An enhanced clone of Chris Sawyer's Transport Tycoon Deluxe"
621 msgstr ""
622
623 #: ../DEV_extra_translations/extra_translations.py:96
624-msgid "Remote control for XBMC"
625+msgid "Games;Simulation;"
626 msgstr ""
627
628 #: ../DEV_extra_translations/extra_translations.py:97
629-msgid "Globulation 2"
630+msgid "Pioneers"
631 msgstr ""
632
633 #: ../DEV_extra_translations/extra_translations.py:98
634-msgid "A RTS"
635+msgid "A game based on The Settlers of Catan by Klaus Teuber"
636 msgstr ""
637
638 #: ../DEV_extra_translations/extra_translations.py:99
639-msgid "Snowball Surprise (SnowballZ)"
640+msgid "Games;Board;"
641 msgstr ""
642
643 #: ../DEV_extra_translations/extra_translations.py:100
644-msgid "A RTS snowball fight"
645+msgid "Pioneers Metaserver"
646 msgstr ""
647
648 #: ../DEV_extra_translations/extra_translations.py:101
649-msgid "Quake III - 27960/udp"
650+msgid "Metaserver for Pioneers"
651 msgstr ""
652
653 #: ../DEV_extra_translations/extra_translations.py:102
654-msgid "A FPS by id Software, server on port 27660"
655+msgid "Rune"
656 msgstr ""
657
658 #: ../DEV_extra_translations/extra_translations.py:103
659-msgid "Quake III - 27961/udp"
660+msgid "A third-person fantasy combat game by Human Head Studios"
661 msgstr ""
662
663 #: ../DEV_extra_translations/extra_translations.py:104
664-msgid "A FPS by id Software, server on port 27961"
665+msgid "Rune admin"
666 msgstr ""
667
668 #: ../DEV_extra_translations/extra_translations.py:105
669-msgid "Quake III - 27962/udp"
670+msgid "Web-based administration for the Rune game by Human Head Studios"
671 msgstr ""
672
673 #: ../DEV_extra_translations/extra_translations.py:106
674-msgid "A FPS by id Software, server on port 27962"
675+msgid "RTMP Real Time Messaging Protocol"
676 msgstr ""
677
678 #: ../DEV_extra_translations/extra_translations.py:107
679-msgid "Quake III - 27963/udp"
680+msgid "Real Time Messaging Protocol (Adobe Flash)"
681 msgstr ""
682
683 #: ../DEV_extra_translations/extra_translations.py:108
684-msgid "A FPS by id Software, server on port 27963"
685+msgid "VNC"
686 msgstr ""
687
688 #: ../DEV_extra_translations/extra_translations.py:109
689-msgid "Tether"
690+msgid "Virtual Network Computing"
691 msgstr ""
692
693 #: ../DEV_extra_translations/extra_translations.py:110
694-msgid "A clone of strategy game Moonbase Commander by Humongous Entertainment"
695+msgid "Network;Remote Access;"
696 msgstr ""
697
698 #: ../DEV_extra_translations/extra_translations.py:111
699-msgid "Nicotine"
700+#: ../DEV_extra_translations/extra_translations.py:360
701+#: ../DEV_extra_translations/extra_translations.py:363
702+#: ../DEV_extra_translations/extra_translations.py:366
703+#: ../DEV_extra_translations/extra_translations.py:369
704+#: ../DEV_extra_translations/extra_translations.py:372
705+#: ../DEV_extra_translations/extra_translations.py:375
706+#: ../DEV_extra_translations/extra_translations.py:378
707+#: ../DEV_extra_translations/extra_translations.py:381
708+#: ../DEV_extra_translations/extra_translations.py:839
709+#: ../DEV_extra_translations/extra_translations.py:850
710+msgid "It may be a security risk to use a default allow policy for RDP"
711 msgstr ""
712
713 #: ../DEV_extra_translations/extra_translations.py:112
714-msgid ""
715-"Nicotine is a SoulSeek client written in Python, based on the PySoulSeek "
716-"project"
717+msgid "Camfrog"
718+msgstr ""
719+
720+#: ../DEV_extra_translations/extra_translations.py:113
721+#: ../DEV_extra_translations/extra_translations.py:445
722+#: ../DEV_extra_translations/extra_translations.py:446
723+msgid "H.323 Call Signaling"
724 msgstr ""
725
726 #: ../DEV_extra_translations/extra_translations.py:114
727-msgid "SSH"
728+msgid "Network;Telephony;Video Conference;"
729 msgstr ""
730
731 #: ../DEV_extra_translations/extra_translations.py:115
732-msgid "Secure Shell"
733+msgid "Delta Force: LW"
734 msgstr ""
735
736 #: ../DEV_extra_translations/extra_translations.py:116
737-msgid "Network;Services;"
738+msgid "Land Warrior. A FPS combat game by NovaLogic"
739 msgstr ""
740
741 #: ../DEV_extra_translations/extra_translations.py:117
742-msgid "It may be a security risk to use a default allow policy for SSH"
743+msgid "Transmission Daemon"
744 msgstr ""
745
746 #: ../DEV_extra_translations/extra_translations.py:118
747-msgid "SSDP"
748+msgid "Remote control for Transmission"
749 msgstr ""
750
751 #: ../DEV_extra_translations/extra_translations.py:119
752-msgid "Simple Service Discovery Protocol"
753+msgid "Network;P2P;"
754 msgstr ""
755
756 #: ../DEV_extra_translations/extra_translations.py:120
757-msgid "Sid Meier's Alpha Centauri"
758+#: ../DEV_extra_translations/extra_translations.py:178
759+#: ../DEV_extra_translations/extra_translations.py:185
760+#: ../DEV_extra_translations/extra_translations.py:260
761+#: ../DEV_extra_translations/extra_translations.py:388
762+#: ../DEV_extra_translations/extra_translations.py:550
763+#: ../DEV_extra_translations/extra_translations.py:724
764+#: ../DEV_extra_translations/extra_translations.py:790
765+#: ../DEV_extra_translations/extra_translations.py:797
766+#: ../DEV_extra_translations/extra_translations.py:826
767+#: ../DEV_extra_translations/extra_translations.py:829
768+#: ../DEV_extra_translations/extra_translations.py:832
769+msgid "Remember to open the ports on the router"
770 msgstr ""
771
772 #: ../DEV_extra_translations/extra_translations.py:121
773-msgid "SciFi strategy game by Firaxis"
774+msgid "Castle-Combat - 50386/tcp"
775 msgstr ""
776
777 #: ../DEV_extra_translations/extra_translations.py:122
778-msgid "Murmur"
779+#: ../DEV_extra_translations/extra_translations.py:125
780+msgid "A clone of Rampart from Atari Games"
781 msgstr ""
782
783 #: ../DEV_extra_translations/extra_translations.py:123
784-msgid "Murmur voice chat server (counterpart to Mumble client)"
785+msgid "Games;Arcade;"
786 msgstr ""
787
788 #: ../DEV_extra_translations/extra_translations.py:124
789-msgid "Network;Telephony;"
790-msgstr ""
791-
792-#: ../DEV_extra_translations/extra_translations.py:125
793-msgid "RTMP Real Time Messaging Protocol"
794+msgid "Castle-Combat - 8787/tcp"
795 msgstr ""
796
797 #: ../DEV_extra_translations/extra_translations.py:126
798-msgid "Real Time Messaging Protocol (Adobe Flash)"
799+msgid "SIP"
800 msgstr ""
801
802 #: ../DEV_extra_translations/extra_translations.py:127
803-msgid "Nagios"
804+msgid "Session Initiation Protocol, unencrypted, using nf_conntrack_sip module"
805 msgstr ""
806
807 #: ../DEV_extra_translations/extra_translations.py:128
808-msgid ""
809-"Computer system monitor, network monitoring and infrastructure monitoring "
810-"software application"
811+msgid "Network;Telephony;"
812 msgstr ""
813
814 #: ../DEV_extra_translations/extra_translations.py:129
815-msgid "OpenTTD server"
816+msgid "SIP TLS"
817 msgstr ""
818
819 #: ../DEV_extra_translations/extra_translations.py:130
820-msgid "An enhanced clone of Chris Sawyer's Transport Tycoon Deluxe"
821+msgid "Session Initiation Protocol with TLS encryption"
822 msgstr ""
823
824 #: ../DEV_extra_translations/extra_translations.py:131
825-msgid "Blood II: The Chosen"
826+msgid "Thousand Parsec"
827 msgstr ""
828
829 #: ../DEV_extra_translations/extra_translations.py:132
830-msgid "A FPS from Monolith Productions"
831+#: ../DEV_extra_translations/extra_translations.py:134
832+#: ../DEV_extra_translations/extra_translations.py:136
833+msgid "A common framework for building turn based space empire building games"
834 msgstr ""
835
836 #: ../DEV_extra_translations/extra_translations.py:133
837-msgid "STUN"
838-msgstr ""
839-
840-#: ../DEV_extra_translations/extra_translations.py:134
841-msgid "Session Traversal Utilities for NAT"
842+msgid "Thousand Parsec SSL"
843 msgstr ""
844
845 #: ../DEV_extra_translations/extra_translations.py:135
846-msgid "STUN TLS"
847-msgstr ""
848-
849-#: ../DEV_extra_translations/extra_translations.py:136
850-msgid "Session Traversal Utilities for NAT with TLS encryption"
851+msgid "Thousand Parsec Admin"
852 msgstr ""
853
854 #: ../DEV_extra_translations/extra_translations.py:137
855-msgid "DirectX 7"
856+msgid "London Law"
857 msgstr ""
858
859 #: ../DEV_extra_translations/extra_translations.py:138
860-msgid "Network games using DirectX 7 API"
861+msgid "An online multiplayer adaptation of the Scotland Yard board game"
862 msgstr ""
863
864 #: ../DEV_extra_translations/extra_translations.py:139
865-msgid "DirectX 8"
866+msgid "Urban Terror - 27960/udp"
867 msgstr ""
868
869 #: ../DEV_extra_translations/extra_translations.py:140
870-msgid "Network games using DirectX 8 API"
871+msgid ""
872+"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
873+"port 27660"
874 msgstr ""
875
876 #: ../DEV_extra_translations/extra_translations.py:141
877-msgid "Full Metal Soccer server"
878+msgid "Urban Terror - 27961/udp"
879 msgstr ""
880
881 #: ../DEV_extra_translations/extra_translations.py:142
882-#: ../DEV_extra_translations/extra_translations.py:145
883-#: ../DEV_extra_translations/extra_translations.py:147
884-msgid "A soccer game played with tanks by QuantiCode"
885+msgid ""
886+"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
887+"port 27961"
888 msgstr ""
889
890 #: ../DEV_extra_translations/extra_translations.py:143
891-msgid "Games;Sports;"
892+msgid "Urban Terror - 27962/udp"
893 msgstr ""
894
895 #: ../DEV_extra_translations/extra_translations.py:144
896-msgid "Full Metal Soccer ranking server"
897+msgid ""
898+"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
899+"port 27962"
900+msgstr ""
901+
902+#: ../DEV_extra_translations/extra_translations.py:145
903+msgid "Urban Terror - 27963/udp"
904 msgstr ""
905
906 #: ../DEV_extra_translations/extra_translations.py:146
907-msgid "Full Metal Soccer master server"
908+msgid ""
909+"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
910+"port 27963"
911+msgstr ""
912+
913+#: ../DEV_extra_translations/extra_translations.py:147
914+msgid "OpenRPG"
915 msgstr ""
916
917 #: ../DEV_extra_translations/extra_translations.py:148
918-msgid "EDuke32"
919+msgid ""
920+"A map/chat/dice-rolling tool to allow players to play tabletop games on-line"
921 msgstr ""
922
923 #: ../DEV_extra_translations/extra_translations.py:149
924-msgid "An enhanced version of Duke Nukem 3D"
925+msgid "Network;Games;"
926 msgstr ""
927
928 #: ../DEV_extra_translations/extra_translations.py:150
929-msgid "Diablo II"
930+msgid "Ubuntu One"
931 msgstr ""
932
933 #: ../DEV_extra_translations/extra_translations.py:151
934-#: ../DEV_extra_translations/extra_translations.py:685
935-msgid "Fantasy combat game by Blizzard Entertainment"
936+msgid ""
937+"Store files online and sync them between computers and mobile devices, as "
938+"well as stream audio and music from cloud to mobile devices"
939 msgstr ""
940
941 #: ../DEV_extra_translations/extra_translations.py:152
942-msgid "IRC - 194/tcp"
943+msgid "Network;Cloud;"
944 msgstr ""
945
946 #: ../DEV_extra_translations/extra_translations.py:153
947-msgid "Internet Relay Chat on official port 194 (rarely used)"
948+msgid "Blobby Volley 2"
949 msgstr ""
950
951 #: ../DEV_extra_translations/extra_translations.py:154
952-msgid "Network;IRC;"
953+msgid "A volleyball game"
954 msgstr ""
955
956 #: ../DEV_extra_translations/extra_translations.py:155
957-msgid "IRC"
958+msgid "OpenMeetings Secure RTMP"
959 msgstr ""
960
961 #: ../DEV_extra_translations/extra_translations.py:156
962-msgid ""
963-"Internet Relay Chat on common default port 6667, using nf_conntrack_irc DCC "
964-"helper"
965+msgid "OpenMeetings Real Time Messaging Protocol over SSL"
966 msgstr ""
967
968 #: ../DEV_extra_translations/extra_translations.py:157
969-msgid "IRC SSL"
970+msgid "Network;Video Conference;"
971 msgstr ""
972
973 #: ../DEV_extra_translations/extra_translations.py:158
974-msgid "Internet Relay Chat on SSL default port 6697"
975+msgid "OpenMeetings Tunneled RTMP"
976 msgstr ""
977
978 #: ../DEV_extra_translations/extra_translations.py:159
979-msgid "Battlefield 1942"
980+msgid "OpenMeetings Real Time Messaging Protocol over HTTP"
981 msgstr ""
982
983 #: ../DEV_extra_translations/extra_translations.py:160
984-msgid "A WWII FPS from Digital Illusions CE"
985+msgid "OpenMeetings HTTP"
986 msgstr ""
987
988 #: ../DEV_extra_translations/extra_translations.py:161
989-msgid "Battlefield 1942 Console"
990+msgid "OpenMeetings HTTP server"
991 msgstr ""
992
993 #: ../DEV_extra_translations/extra_translations.py:162
994-msgid "The RemoteConsole administration tool for Battlefield 1942"
995+msgid "OpenMeetings DSP"
996 msgstr ""
997
998 #: ../DEV_extra_translations/extra_translations.py:163
999-msgid "Chocolate Doom"
1000+msgid "OpenMeetings Desktop Sharing Protocol (ODSP)"
1001 msgstr ""
1002
1003 #: ../DEV_extra_translations/extra_translations.py:164
1004-msgid ""
1005-"A Doom source port that accurately reproduces the experience of Doom as it "
1006-"was played in the 1990s"
1007+msgid "Armagetron Advanced"
1008 msgstr ""
1009
1010 #: ../DEV_extra_translations/extra_translations.py:165
1011-msgid "Widelands"
1012+msgid "A 3D clone of the Light Cycle game in Tron"
1013 msgstr ""
1014
1015 #: ../DEV_extra_translations/extra_translations.py:166
1016-msgid "A RTS similar to The Settlers I & II from Blue Byte Software"
1017+msgid "World of Warcraft"
1018 msgstr ""
1019
1020 #: ../DEV_extra_translations/extra_translations.py:167
1021-msgid "VLC HTTP stream"
1022+msgid "A MMORPG game by Blizzard Entertainment"
1023 msgstr ""
1024
1025 #: ../DEV_extra_translations/extra_translations.py:168
1026-msgid "VLC media player HTTP stream default port"
1027+msgid "Quake III - 27960/udp"
1028 msgstr ""
1029
1030 #: ../DEV_extra_translations/extra_translations.py:169
1031-msgid "Audio Video;"
1032+msgid "A FPS by id Software, server on port 27660"
1033 msgstr ""
1034
1035 #: ../DEV_extra_translations/extra_translations.py:170
1036-msgid "VLC MMS HTTP stream"
1037+msgid "Quake III - 27961/udp"
1038 msgstr ""
1039
1040 #: ../DEV_extra_translations/extra_translations.py:171
1041-msgid ""
1042-"VLC media player Microsoft Media Server stream over HTTP (Windows Media HTTP "
1043-"Streaming Protocol/MS-WMSP) default port"
1044+msgid "A FPS by id Software, server on port 27961"
1045 msgstr ""
1046
1047 #: ../DEV_extra_translations/extra_translations.py:172
1048-msgid "VLC RTP stream"
1049+msgid "Quake III - 27962/udp"
1050 msgstr ""
1051
1052 #: ../DEV_extra_translations/extra_translations.py:173
1053-msgid "VLC media player Real-time Transport Protocol default port"
1054+msgid "A FPS by id Software, server on port 27962"
1055 msgstr ""
1056
1057 #: ../DEV_extra_translations/extra_translations.py:174
1058-msgid "VLC UDP stream"
1059+msgid "Quake III - 27963/udp"
1060 msgstr ""
1061
1062 #: ../DEV_extra_translations/extra_translations.py:175
1063-msgid "VLC media player User Datagram Protocol default port"
1064+msgid "A FPS by id Software, server on port 27963"
1065 msgstr ""
1066
1067 #: ../DEV_extra_translations/extra_translations.py:176
1068-#: ../DEV_extra_translations/extra_translations.py:296
1069-msgid "Icecast stream"
1070+msgid "Nicotine"
1071 msgstr ""
1072
1073 #: ../DEV_extra_translations/extra_translations.py:177
1074-msgid "VLC media player Icecast stream default port"
1075-msgstr ""
1076-
1077-#: ../DEV_extra_translations/extra_translations.py:178
1078-msgid "Multicast DNS"
1079+msgid ""
1080+"Nicotine is a SoulSeek client written in Python, based on the PySoulSeek "
1081+"project"
1082 msgstr ""
1083
1084 #: ../DEV_extra_translations/extra_translations.py:179
1085-msgid "Multicast DNS (Avahi, Bonjour)"
1086+msgid "Tribes 2"
1087 msgstr ""
1088
1089 #: ../DEV_extra_translations/extra_translations.py:180
1090-msgid "Syslog"
1091+msgid "A multiplayer combat online game by Dynamix - main port"
1092 msgstr ""
1093
1094 #: ../DEV_extra_translations/extra_translations.py:181
1095-msgid "System logging"
1096+msgid "Tribes 2 - 28000:29000/tcp/udp"
1097 msgstr ""
1098
1099 #: ../DEV_extra_translations/extra_translations.py:182
1100-msgid "System;"
1101+msgid "A multiplayer combat online game by Dynamix, all suggested ports open"
1102 msgstr ""
1103
1104 #: ../DEV_extra_translations/extra_translations.py:183
1105-msgid "DHCP"
1106+msgid "KTorrent"
1107 msgstr ""
1108
1109 #: ../DEV_extra_translations/extra_translations.py:184
1110-msgid "Dynamic Host Configuration Protocol"
1111-msgstr ""
1112-
1113-#: ../DEV_extra_translations/extra_translations.py:185
1114-msgid "Tribes 2"
1115+msgid "Feature rich BitTorrent client by KDE"
1116 msgstr ""
1117
1118 #: ../DEV_extra_translations/extra_translations.py:186
1119-msgid "A multiplayer combat online game by Dynamix - main port"
1120+msgid "netPanzer"
1121 msgstr ""
1122
1123 #: ../DEV_extra_translations/extra_translations.py:187
1124-msgid "Tribes 2 - 28000:29000/tcp/udp"
1125+msgid "An online multiplayer tactical warfare game"
1126 msgstr ""
1127
1128 #: ../DEV_extra_translations/extra_translations.py:188
1129-msgid "A multiplayer combat online game by Dynamix, all suggested ports open"
1130+msgid "Vendetta Online"
1131 msgstr ""
1132
1133 #: ../DEV_extra_translations/extra_translations.py:189
1134-msgid "Freeciv"
1135+msgid ""
1136+"A twitch-based, science fiction massively multiplayer online role-playing "
1137+"game (MMORPG)"
1138 msgstr ""
1139
1140 #: ../DEV_extra_translations/extra_translations.py:190
1141-msgid "A turn-based strategy game similar to Civilization I & II by Microprose"
1142+msgid "Games;Role;"
1143 msgstr ""
1144
1145 #: ../DEV_extra_translations/extra_translations.py:191
1146-msgid "DAAP"
1147+msgid "Yura.net Domination (jRisk)"
1148 msgstr ""
1149
1150 #: ../DEV_extra_translations/extra_translations.py:192
1151-msgid "Digital Audio Access Protocol"
1152+msgid "A clone of Risk"
1153 msgstr ""
1154
1155 #: ../DEV_extra_translations/extra_translations.py:193
1156-msgid "Yet Another Netplay Guider"
1157+msgid "Ur-Quan Masters"
1158 msgstr ""
1159
1160 #: ../DEV_extra_translations/extra_translations.py:194
1161-msgid "YANG - Yet Another Netplay Guider, default game connection"
1162+msgid "An enhanced version of Star Control II from 3DO"
1163 msgstr ""
1164
1165 #: ../DEV_extra_translations/extra_translations.py:195
1166-msgid "Games;"
1167+msgid "Games;Adventure;"
1168 msgstr ""
1169
1170 #: ../DEV_extra_translations/extra_translations.py:196
1171-msgid "Yet Another Netplay Guider Hosting"
1172+msgid "Armored Fist 3"
1173 msgstr ""
1174
1175 #: ../DEV_extra_translations/extra_translations.py:197
1176-msgid "YANG - Yet Another Netplay Guider, room hosting"
1177+msgid "A M1A2 Abrams tank simulation by NovaLogic"
1178 msgstr ""
1179
1180 #: ../DEV_extra_translations/extra_translations.py:198
1181-msgid "DXX-Rebirth on YANG"
1182+msgid "Widelands"
1183 msgstr ""
1184
1185 #: ../DEV_extra_translations/extra_translations.py:199
1186-msgid "DXX-Rebirth, a source port of Descent, connected through YANG"
1187+msgid "A RTS similar to The Settlers I & II from Blue Byte Software"
1188 msgstr ""
1189
1190 #: ../DEV_extra_translations/extra_translations.py:200
1191-msgid "FreeCol"
1192+msgid "USB Redirector"
1193 msgstr ""
1194
1195 #: ../DEV_extra_translations/extra_translations.py:201
1196-msgid "A turn-based strategy game similar to Colonization by Microprose"
1197+msgid "USB device sharing system from INCENTIVES Pro"
1198 msgstr ""
1199
1200 #: ../DEV_extra_translations/extra_translations.py:202
1201-msgid "Sid Meier's Civilization IV"
1202+msgid "NFS (Chris Lowth)"
1203 msgstr ""
1204
1205 #: ../DEV_extra_translations/extra_translations.py:203
1206-msgid "A turn-based strategy game from Firaxis Games"
1207+msgid ""
1208+"Network File System protocol with static ports at 4000:4002 (some conflicts "
1209+"with popular games; statd broadcast on random port)"
1210 msgstr ""
1211
1212 #: ../DEV_extra_translations/extra_translations.py:204
1213-msgid "Ryzom"
1214+msgid "NFS Quota (Chris Lowth)"
1215 msgstr ""
1216
1217 #: ../DEV_extra_translations/extra_translations.py:205
1218 msgid ""
1219-"It's also known as The Saga of Ryzom, is a massively multiplayer online role-"
1220-"playing game (MMORPG)"
1221+"NFS with user/group filesystem usage quota support with static ports at "
1222+"4000:4003 (some conflicts with popular games; statd broadcast on random port)"
1223 msgstr ""
1224
1225 #: ../DEV_extra_translations/extra_translations.py:206
1226-msgid "Games;Role;"
1227+msgid "ThinkTanks"
1228 msgstr ""
1229
1230 #: ../DEV_extra_translations/extra_translations.py:207
1231-msgid "Optimized Link State Routing"
1232+msgid ""
1233+"A 3D tank combat game by BraveTree Productions using the Torque Game Engine"
1234 msgstr ""
1235
1236 #: ../DEV_extra_translations/extra_translations.py:208
1237-msgid "A mesh networking protocol"
1238+msgid "Minecraft"
1239 msgstr ""
1240
1241 #: ../DEV_extra_translations/extra_translations.py:209
1242-msgid "Quake"
1243+msgid "A 3D sandbox construction game by Markus Persson"
1244+msgstr ""
1245+
1246+#: ../DEV_extra_translations/extra_translations.py:210
1247+msgid "Games;"
1248 msgstr ""
1249
1250 #: ../DEV_extra_translations/extra_translations.py:211
1251-msgid "QuakeWorld"
1252+msgid "SEDS Serious Sam"
1253 msgstr ""
1254
1255 #: ../DEV_extra_translations/extra_translations.py:212
1256-msgid "An enhanced multiplayer version of Quake by id Software"
1257+msgid "Dedicated server for the FPS by Croteam"
1258 msgstr ""
1259
1260 #: ../DEV_extra_translations/extra_translations.py:213
1261-msgid "Dropbox"
1262+msgid "SEDS Remote Admin"
1263 msgstr ""
1264
1265 #: ../DEV_extra_translations/extra_translations.py:214
1266 msgid ""
1267-"File hosting service, that offers cloud storage, file synchronization and "
1268-"client software"
1269+"Default remote administration Telnet port for Serious Engine dedicated server"
1270 msgstr ""
1271
1272 #: ../DEV_extra_translations/extra_translations.py:215
1273-msgid "Legends"
1274+msgid "SEDS - port 25601"
1275 msgstr ""
1276
1277 #: ../DEV_extra_translations/extra_translations.py:216
1278-msgid "A FPS based on the Torque Engine"
1279+msgid "Dedicated server for the FPS by Croteam, alternate game port 25601"
1280 msgstr ""
1281
1282 #: ../DEV_extra_translations/extra_translations.py:217
1283-msgid "SEDS Serious Sam"
1284+msgid "SEDS Admin - port 25600"
1285 msgstr ""
1286
1287 #: ../DEV_extra_translations/extra_translations.py:218
1288-msgid "Dedicated server for the FPS by Croteam"
1289+msgid ""
1290+"Alternate 25600 remote administration Telnet port for Serious Engine "
1291+"dedicated server"
1292 msgstr ""
1293
1294 #: ../DEV_extra_translations/extra_translations.py:219
1295-msgid "SEDS Remote Admin"
1296+msgid "TeamSpeak 3"
1297 msgstr ""
1298
1299 #: ../DEV_extra_translations/extra_translations.py:220
1300-msgid ""
1301-"Default remote administration Telnet port for Serious Engine dedicated server"
1302+msgid "TeamSpeak 3 voice service"
1303 msgstr ""
1304
1305 #: ../DEV_extra_translations/extra_translations.py:221
1306-msgid "SEDS - port 25601"
1307+msgid "TeamSpeak 3 File"
1308 msgstr ""
1309
1310 #: ../DEV_extra_translations/extra_translations.py:222
1311-msgid "Dedicated server for the FPS by Croteam, alternate game port 25601"
1312+msgid "TeamSpeak 3 file transfer"
1313 msgstr ""
1314
1315 #: ../DEV_extra_translations/extra_translations.py:223
1316-msgid "SEDS Admin - port 25600"
1317+msgid "TeamSpeak 3 Query"
1318 msgstr ""
1319
1320 #: ../DEV_extra_translations/extra_translations.py:224
1321-msgid ""
1322-"Alternate 25600 remote administration Telnet port for Serious Engine "
1323-"dedicated server"
1324+msgid "TeamSpeak 3 TCP query"
1325 msgstr ""
1326
1327 #: ../DEV_extra_translations/extra_translations.py:225
1328-msgid "ManiaDrive game server"
1329+msgid "Delta Force: Xtreme"
1330 msgstr ""
1331
1332 #: ../DEV_extra_translations/extra_translations.py:226
1333-msgid "A clone of TrackMania from Nadeo"
1334+#: ../DEV_extra_translations/extra_translations.py:233
1335+#: ../DEV_extra_translations/extra_translations.py:292
1336+#: ../DEV_extra_translations/extra_translations.py:357
1337+msgid "A FPS combat game by NovaLogic"
1338 msgstr ""
1339
1340 #: ../DEV_extra_translations/extra_translations.py:227
1341-msgid "ManiaDrive HTTP server "
1342+msgid "Webmin"
1343 msgstr ""
1344
1345 #: ../DEV_extra_translations/extra_translations.py:228
1346-msgid "ManiaDrive/Raydium game monitor HTTP server"
1347+#: ../DEV_extra_translations/extra_translations.py:231
1348+msgid "Web-page based system management utility"
1349 msgstr ""
1350
1351 #: ../DEV_extra_translations/extra_translations.py:229
1352-msgid "Wakfu"
1353+msgid "Network;Shell;"
1354 msgstr ""
1355
1356 #: ../DEV_extra_translations/extra_translations.py:230
1357-msgid "An online tactical turn-based MMORPG"
1358-msgstr ""
1359-
1360-#: ../DEV_extra_translations/extra_translations.py:231
1361-msgid "World of Padman - 27960/udp"
1362+msgid "Webmin fast RPC"
1363 msgstr ""
1364
1365 #: ../DEV_extra_translations/extra_translations.py:232
1366-msgid ""
1367-"A FPS by Padworld Entertainment based on Quake III, server on port 27960"
1368-msgstr ""
1369-
1370-#: ../DEV_extra_translations/extra_translations.py:233
1371-msgid "World of Padman - 27961/udp"
1372+msgid "Delta Force 2"
1373 msgstr ""
1374
1375 #: ../DEV_extra_translations/extra_translations.py:234
1376-msgid ""
1377-"A FPS by Padworld Entertainment based on Quake III, server on port 27961"
1378+msgid "MiniDLNA"
1379 msgstr ""
1380
1381 #: ../DEV_extra_translations/extra_translations.py:235
1382-msgid "World of Padman - 27962/udp"
1383+msgid "Serves media files (music, pictures, and video) to clients on a network"
1384 msgstr ""
1385
1386 #: ../DEV_extra_translations/extra_translations.py:236
1387-msgid ""
1388-"A FPS by Padworld Entertainment based on Quake III, server on port 27962"
1389+msgid "Audio Video;TV;"
1390 msgstr ""
1391
1392 #: ../DEV_extra_translations/extra_translations.py:237
1393-msgid "World of Padman - 27963/udp"
1394+msgid "DOSBox IPX"
1395 msgstr ""
1396
1397 #: ../DEV_extra_translations/extra_translations.py:238
1398-msgid ""
1399-"A FPS by Padworld Entertainment based on Quake III, server on port 27963"
1400+#: ../DEV_extra_translations/extra_translations.py:241
1401+msgid "DOS system emulator"
1402 msgstr ""
1403
1404 #: ../DEV_extra_translations/extra_translations.py:239
1405-msgid "D2X-XL"
1406+msgid "System;Emulator;"
1407 msgstr ""
1408
1409 #: ../DEV_extra_translations/extra_translations.py:240
1410-msgid "A source port of Descent II, the 3D Flying FPS by Outrage Entertainment"
1411-msgstr ""
1412-
1413-#: ../DEV_extra_translations/extra_translations.py:241
1414-msgid "The Battle for Wesnoth"
1415+msgid "DOSBox Modem"
1416 msgstr ""
1417
1418 #: ../DEV_extra_translations/extra_translations.py:242
1419-msgid "Turn-based tactical strategy game"
1420+msgid "PLEX"
1421 msgstr ""
1422
1423 #: ../DEV_extra_translations/extra_translations.py:243
1424-msgid "Balazar III"
1425+msgid "Plex Media Server (Main port)"
1426 msgstr ""
1427
1428 #: ../DEV_extra_translations/extra_translations.py:244
1429-msgid "A 2D/3D dungeon adventure game"
1430+msgid "Network;Audio Video;"
1431 msgstr ""
1432
1433 #: ../DEV_extra_translations/extra_translations.py:245
1434-msgid "F-22 Raptor"
1435+msgid "PLEX DLNA"
1436+msgstr ""
1437+
1438+#: ../DEV_extra_translations/extra_translations.py:246
1439+msgid "Access to the Plex DLNA Server"
1440 msgstr ""
1441
1442 #: ../DEV_extra_translations/extra_translations.py:247
1443+msgid "PLEX Companion"
1444+msgstr ""
1445+
1446 #: ../DEV_extra_translations/extra_translations.py:248
1447-msgid "GameSpy"
1448+msgid "Controlling Plex Home Theater via Plex Companion"
1449 msgstr ""
1450
1451 #: ../DEV_extra_translations/extra_translations.py:249
1452-msgid "GameSpy Arcade"
1453+msgid "PLEX Avahi discovery"
1454 msgstr ""
1455
1456 #: ../DEV_extra_translations/extra_translations.py:250
1457-msgid "GameSpy Arcade gaming network"
1458+msgid "Older Bonjour/Avahi network discovery"
1459 msgstr ""
1460
1461 #: ../DEV_extra_translations/extra_translations.py:251
1462-msgid "Cube 2: Sauerbraten"
1463+msgid "PLEX Roku"
1464 msgstr ""
1465
1466 #: ../DEV_extra_translations/extra_translations.py:252
1467-msgid "A FPS game based on the Cube engine"
1468+msgid "Controlling Plex for Roku via Plex Companion"
1469 msgstr ""
1470
1471 #: ../DEV_extra_translations/extra_translations.py:253
1472-msgid "Armagetron Advanced"
1473+msgid "PLEX GDM"
1474 msgstr ""
1475
1476 #: ../DEV_extra_translations/extra_translations.py:254
1477-msgid "A 3D clone of the Light Cycle game in Tron"
1478+msgid "GDM network discovery"
1479 msgstr ""
1480
1481 #: ../DEV_extra_translations/extra_translations.py:255
1482-msgid "DNS"
1483+msgid "PLEX DLNA Server (Other port)"
1484 msgstr ""
1485
1486 #: ../DEV_extra_translations/extra_translations.py:256
1487-msgid "Domain Name System"
1488+msgid "Another port for Plex DLNA Server"
1489 msgstr ""
1490
1491 #: ../DEV_extra_translations/extra_translations.py:257
1492-msgid "Alien Arena"
1493+msgid "Frostwire"
1494 msgstr ""
1495
1496 #: ../DEV_extra_translations/extra_translations.py:258
1497-msgid "A SciFi competitive FPS based on the CRX/id Tech 2 engine"
1498+msgid "Frostwire peer-peer file sharing on default port"
1499 msgstr ""
1500
1501 #: ../DEV_extra_translations/extra_translations.py:259
1502-msgid "Descent 3"
1503-msgstr ""
1504-
1505-#: ../DEV_extra_translations/extra_translations.py:260
1506-msgid "3D Flying FPS by Outrage Entertainment"
1507+msgid "Network;File Transfer;P2P;"
1508 msgstr ""
1509
1510 #: ../DEV_extra_translations/extra_translations.py:261
1511-msgid "Soldier of Fortune"
1512+msgid "Neverwinter Nights server"
1513 msgstr ""
1514
1515 #: ../DEV_extra_translations/extra_translations.py:262
1516-msgid "Soldier of Fortune - A FPS by Raven Software"
1517+msgid "Default port for Neverwinter Nights, a RPG from Bioware"
1518 msgstr ""
1519
1520 #: ../DEV_extra_translations/extra_translations.py:263
1521-msgid "Thousand Parsec"
1522+msgid "DXX-Rebirth"
1523 msgstr ""
1524
1525 #: ../DEV_extra_translations/extra_translations.py:264
1526+msgid "A source port of Descent, the 3D Flying FPS by Outrage Entertainment"
1527+msgstr ""
1528+
1529+#: ../DEV_extra_translations/extra_translations.py:265
1530+msgid "Bos Wars"
1531+msgstr ""
1532+
1533 #: ../DEV_extra_translations/extra_translations.py:266
1534+msgid "A futuristic RTS based on the Stratagus engine"
1535+msgstr ""
1536+
1537+#: ../DEV_extra_translations/extra_translations.py:267
1538+msgid "MySQL"
1539+msgstr ""
1540+
1541 #: ../DEV_extra_translations/extra_translations.py:268
1542-msgid "A common framework for building turn based space empire building games"
1543-msgstr ""
1544-
1545-#: ../DEV_extra_translations/extra_translations.py:265
1546-msgid "Thousand Parsec SSL"
1547-msgstr ""
1548-
1549-#: ../DEV_extra_translations/extra_translations.py:267
1550-msgid "Thousand Parsec Admin"
1551+msgid "MySQL Database"
1552 msgstr ""
1553
1554 #: ../DEV_extra_translations/extra_translations.py:269
1555-msgid "Castle-Combat - 50386/tcp"
1556+msgid "Office;Database;"
1557 msgstr ""
1558
1559 #: ../DEV_extra_translations/extra_translations.py:270
1560+msgid "rsync daemon"
1561+msgstr ""
1562+
1563+#: ../DEV_extra_translations/extra_translations.py:271
1564+msgid "File synchronization utility"
1565+msgstr ""
1566+
1567 #: ../DEV_extra_translations/extra_translations.py:272
1568-msgid "A clone of Rampart from Atari Games"
1569-msgstr ""
1570-
1571-#: ../DEV_extra_translations/extra_translations.py:271
1572-msgid "Castle-Combat - 8787/tcp"
1573+msgid "UPnP"
1574 msgstr ""
1575
1576 #: ../DEV_extra_translations/extra_translations.py:273
1577-msgid "Postfix Mail Server SMTP"
1578+msgid ""
1579+"Universal Plug and Play. It is a framework which can be used to make "
1580+"networked applications"
1581 msgstr ""
1582
1583 #: ../DEV_extra_translations/extra_translations.py:274
1584+msgid "System;General;"
1585+msgstr ""
1586+
1587+#: ../DEV_extra_translations/extra_translations.py:275
1588+msgid "Myth II: Soulblighter"
1589+msgstr ""
1590+
1591 #: ../DEV_extra_translations/extra_translations.py:276
1592+msgid "A real-time tactics game from Bungie"
1593+msgstr ""
1594+
1595+#: ../DEV_extra_translations/extra_translations.py:277
1596+msgid "SSDP"
1597+msgstr ""
1598+
1599 #: ../DEV_extra_translations/extra_translations.py:278
1600-msgid "Postfix is a high-performance mail transport agent"
1601-msgstr ""
1602-
1603-#: ../DEV_extra_translations/extra_translations.py:275
1604-msgid "Postfix Mail Server SMTPS"
1605-msgstr ""
1606-
1607-#: ../DEV_extra_translations/extra_translations.py:277
1608-msgid "Postfix Mail Server Submission"
1609+msgid "Simple Service Discovery Protocol"
1610 msgstr ""
1611
1612 #: ../DEV_extra_translations/extra_translations.py:279
1613-msgid "Castle Vox"
1614+msgid "HTTP"
1615 msgstr ""
1616
1617 #: ../DEV_extra_translations/extra_translations.py:280
1618-msgid ""
1619-"A simultaneous-turns strategy game from Sillysoft influenced by Diplomacy "
1620-"and Axis & Allies"
1621+msgid "WWW standard protocol on port 80/tcp (IANA/Debian www, http)"
1622 msgstr ""
1623
1624 #: ../DEV_extra_translations/extra_translations.py:281
1625-msgid "Teeworlds"
1626+msgid "HTTPS"
1627 msgstr ""
1628
1629 #: ../DEV_extra_translations/extra_translations.py:282
1630-msgid "An open source sidescrolling multiplayer shooting game"
1631+msgid "WWW standard protocol with SSL/TLS on port 443/tcp (IANA https)"
1632 msgstr ""
1633
1634 #: ../DEV_extra_translations/extra_translations.py:283
1635-msgid "Quake II"
1636+msgid "HTTP - 8008/tcp"
1637+msgstr ""
1638+
1639+#: ../DEV_extra_translations/extra_translations.py:284
1640+msgid "WWW standard protocol on port 8008/tcp (IANA http-alt)"
1641 msgstr ""
1642
1643 #: ../DEV_extra_translations/extra_translations.py:285
1644-msgid "NFS"
1645-msgstr ""
1646-
1647 #: ../DEV_extra_translations/extra_translations.py:286
1648-msgid "Network File System"
1649+msgid "Web Server (HTTP,HTTPS)"
1650 msgstr ""
1651
1652 #: ../DEV_extra_translations/extra_translations.py:287
1653-msgid "0 A.D."
1654-msgstr ""
1655-
1656 #: ../DEV_extra_translations/extra_translations.py:288
1657-msgid "A free/open-source RTS game of ancient warfare from Wildfire Games"
1658+msgid "Web Server (8080)"
1659 msgstr ""
1660
1661 #: ../DEV_extra_translations/extra_translations.py:289
1662-msgid "Lux"
1663+msgid "HTTP - 8090/tcp"
1664 msgstr ""
1665
1666 #: ../DEV_extra_translations/extra_translations.py:290
1667 msgid ""
1668-"Delux, Ancient Empires and American History: A turn-based strategy game from "
1669-"Sillysoft influenced by Risk"
1670+"WWW standard protocol on port 8090/tcp (IANA unassigned, commonly "
1671+"http_alt_alt)"
1672 msgstr ""
1673
1674 #: ../DEV_extra_translations/extra_translations.py:291
1675-msgid "GGZ Gaming Zone"
1676-msgstr ""
1677-
1678-#: ../DEV_extra_translations/extra_translations.py:292
1679-msgid "Network support for GNOME Games"
1680+msgid "Delta Force"
1681 msgstr ""
1682
1683 #: ../DEV_extra_translations/extra_translations.py:293
1684-msgid "GNUMP3d"
1685+msgid "Toribash - 20184"
1686 msgstr ""
1687
1688 #: ../DEV_extra_translations/extra_translations.py:294
1689-msgid "An audio streaming server"
1690+#: ../DEV_extra_translations/extra_translations.py:296
1691+#: ../DEV_extra_translations/extra_translations.py:298
1692+#: ../DEV_extra_translations/extra_translations.py:300
1693+#: ../DEV_extra_translations/extra_translations.py:302
1694+msgid ""
1695+"A fighting game based on the physics sandbox model with customizable moves"
1696 msgstr ""
1697
1698 #: ../DEV_extra_translations/extra_translations.py:295
1699-msgid "Icecast"
1700+msgid "Toribash - 20185"
1701 msgstr ""
1702
1703 #: ../DEV_extra_translations/extra_translations.py:297
1704-msgid "Network;Audio Video;"
1705-msgstr ""
1706-
1707-#: ../DEV_extra_translations/extra_translations.py:298
1708-msgid "Icecast - 8000:8001/tcp"
1709+msgid "Toribash - 20186"
1710 msgstr ""
1711
1712 #: ../DEV_extra_translations/extra_translations.py:299
1713-msgid "Icecast with SHOUTcast-compatible stream"
1714+msgid "Toribash - 20187"
1715 msgstr ""
1716
1717 #: ../DEV_extra_translations/extra_translations.py:301
1718-msgid "Trivial File Transfer Protocol"
1719-msgstr ""
1720-
1721-#: ../DEV_extra_translations/extra_translations.py:302
1722-msgid "Minecraft"
1723+msgid "Toribash Full"
1724 msgstr ""
1725
1726 #: ../DEV_extra_translations/extra_translations.py:303
1727-msgid "A 3D sandbox construction game by Markus Persson"
1728+msgid "DEFCON"
1729 msgstr ""
1730
1731 #: ../DEV_extra_translations/extra_translations.py:304
1732-msgid "Comanche 4"
1733+msgid "A thermo-nuclear war strategy game from Introversion Software"
1734 msgstr ""
1735
1736 #: ../DEV_extra_translations/extra_translations.py:305
1737-msgid "A Comanche RAH-66 helicopter simulation by NovaLogic"
1738+msgid "Doom II"
1739 msgstr ""
1740
1741 #: ../DEV_extra_translations/extra_translations.py:306
1742-msgid "SiN"
1743+#: ../DEV_extra_translations/extra_translations.py:458
1744+#: ../DEV_extra_translations/extra_translations.py:527
1745+#: ../DEV_extra_translations/extra_translations.py:641
1746+#: ../DEV_extra_translations/extra_translations.py:649
1747+#: ../DEV_extra_translations/extra_translations.py:680
1748+msgid "A FPS by id Software"
1749 msgstr ""
1750
1751 #: ../DEV_extra_translations/extra_translations.py:307
1752-msgid "A FPS by Ritual Entertainment"
1753+msgid "Full Metal Soccer server"
1754 msgstr ""
1755
1756 #: ../DEV_extra_translations/extra_translations.py:308
1757-msgid "rsync daemon"
1758+#: ../DEV_extra_translations/extra_translations.py:310
1759+#: ../DEV_extra_translations/extra_translations.py:312
1760+msgid "A soccer game played with tanks by QuantiCode"
1761 msgstr ""
1762
1763 #: ../DEV_extra_translations/extra_translations.py:309
1764-msgid "File synchronization utility"
1765-msgstr ""
1766-
1767-#: ../DEV_extra_translations/extra_translations.py:310
1768-msgid "Rune"
1769+msgid "Full Metal Soccer ranking server"
1770 msgstr ""
1771
1772 #: ../DEV_extra_translations/extra_translations.py:311
1773-msgid "A third-person fantasy combat game by Human Head Studios"
1774-msgstr ""
1775-
1776-#: ../DEV_extra_translations/extra_translations.py:312
1777-msgid "Rune admin"
1778+msgid "Full Metal Soccer master server"
1779 msgstr ""
1780
1781 #: ../DEV_extra_translations/extra_translations.py:313
1782-msgid "Web-based administration for the Rune game by Human Head Studios"
1783+msgid "Warzone 2100"
1784 msgstr ""
1785
1786 #: ../DEV_extra_translations/extra_translations.py:314
1787-msgid "Liquid War"
1788+msgid "A RTS game by Pumpkin Studios"
1789 msgstr ""
1790
1791 #: ../DEV_extra_translations/extra_translations.py:315
1792-msgid "An original shortest path algorithm and core concept"
1793+msgid "iMaze"
1794 msgstr ""
1795
1796 #: ../DEV_extra_translations/extra_translations.py:316
1797-msgid "The Mana World"
1798+msgid "A maze combat game in 3D"
1799 msgstr ""
1800
1801 #: ../DEV_extra_translations/extra_translations.py:317
1802-msgid "A fantasy MMORPG"
1803+msgid "Conquest"
1804 msgstr ""
1805
1806 #: ../DEV_extra_translations/extra_translations.py:318
1807-msgid "Drakan: Order of the Flame"
1808+#: ../DEV_extra_translations/extra_translations.py:320
1809+msgid "A space warfare game"
1810 msgstr ""
1811
1812 #: ../DEV_extra_translations/extra_translations.py:319
1813-msgid "A dragon-riding action-adventure from Surreal Software"
1814-msgstr ""
1815-
1816-#: ../DEV_extra_translations/extra_translations.py:320
1817-msgid "HTTP"
1818+msgid "Conquest Metaserver"
1819 msgstr ""
1820
1821 #: ../DEV_extra_translations/extra_translations.py:321
1822-msgid "WWW standard protocol on port 80/tcp (IANA/Debian www, http)"
1823+msgid "PvPGN"
1824 msgstr ""
1825
1826 #: ../DEV_extra_translations/extra_translations.py:322
1827-msgid "HTTPS"
1828+msgid "Player vs Player Gaming Network server emulation based on bnetd"
1829 msgstr ""
1830
1831 #: ../DEV_extra_translations/extra_translations.py:323
1832-msgid "WWW standard protocol with SSL/TLS on port 443/tcp (IANA https)"
1833+msgid "PvPGN Address Translation"
1834 msgstr ""
1835
1836 #: ../DEV_extra_translations/extra_translations.py:324
1837-msgid "HTTP - 8008/tcp"
1838+msgid "Player vs Player Gaming Network Address translation port"
1839 msgstr ""
1840
1841 #: ../DEV_extra_translations/extra_translations.py:325
1842-msgid "WWW standard protocol on port 8008/tcp (IANA http-alt)"
1843+msgid "ManiaDrive game server"
1844 msgstr ""
1845
1846 #: ../DEV_extra_translations/extra_translations.py:326
1847+msgid "A clone of TrackMania from Nadeo"
1848+msgstr ""
1849+
1850 #: ../DEV_extra_translations/extra_translations.py:327
1851-msgid "Web Server (HTTP,HTTPS)"
1852+msgid "ManiaDrive HTTP server "
1853 msgstr ""
1854
1855 #: ../DEV_extra_translations/extra_translations.py:328
1856+msgid "ManiaDrive/Raydium game monitor HTTP server"
1857+msgstr ""
1858+
1859 #: ../DEV_extra_translations/extra_translations.py:329
1860-msgid "Web Server (8080)"
1861+msgid "GameRanger"
1862 msgstr ""
1863
1864 #: ../DEV_extra_translations/extra_translations.py:330
1865-msgid "HTTP - 8090/tcp"
1866+msgid "A game server browser from GameRanger Technologies"
1867 msgstr ""
1868
1869 #: ../DEV_extra_translations/extra_translations.py:331
1870-msgid ""
1871-"WWW standard protocol on port 8090/tcp (IANA unassigned, commonly "
1872-"http_alt_alt)"
1873+msgid "Firefly Media Server"
1874 msgstr ""
1875
1876 #: ../DEV_extra_translations/extra_translations.py:332
1877-msgid "UPS Tools daemon"
1878+msgid "DAAP audio server formerly known as mt-daapd"
1879 msgstr ""
1880
1881 #: ../DEV_extra_translations/extra_translations.py:333
1882-msgid "Network UPS Tools"
1883+msgid "Network;Audio Video;Audio;"
1884 msgstr ""
1885
1886 #: ../DEV_extra_translations/extra_translations.py:334
1887-msgid "XMPP"
1888+msgid "Descent 3"
1889 msgstr ""
1890
1891 #: ../DEV_extra_translations/extra_translations.py:335
1892-msgid "Extensible Messaging and Presence Protocol client connection (Jabber)"
1893+msgid "3D Flying FPS by Outrage Entertainment"
1894 msgstr ""
1895
1896 #: ../DEV_extra_translations/extra_translations.py:336
1897-msgid "Network;Telephony;Instant Messaging;"
1898+msgid "Teeworlds"
1899 msgstr ""
1900
1901 #: ../DEV_extra_translations/extra_translations.py:337
1902-msgid "XMPP SSL"
1903+msgid "An open source sidescrolling multiplayer shooting game"
1904 msgstr ""
1905
1906 #: ../DEV_extra_translations/extra_translations.py:338
1907-msgid ""
1908-"Extensible Messaging and Presence Protocol (Jabber) client connection with "
1909-"SSL encryption"
1910+msgid "SSH"
1911 msgstr ""
1912
1913 #: ../DEV_extra_translations/extra_translations.py:339
1914-msgid "XMPP Interserver"
1915+msgid "Secure Shell"
1916 msgstr ""
1917
1918 #: ../DEV_extra_translations/extra_translations.py:340
1919-msgid "Extensible Messaging and Presence Protocol server-server connection"
1920+msgid "It may be a security risk to use a default allow policy for SSH"
1921 msgstr ""
1922
1923 #: ../DEV_extra_translations/extra_translations.py:341
1924-msgid "XMPP Serverless"
1925+msgid "Majesty: The Fantasy Kingdom Sim"
1926 msgstr ""
1927
1928 #: ../DEV_extra_translations/extra_translations.py:342
1929-msgid ""
1930-"Extensible Messaging and Presence Protocol link-local messaging/serverless "
1931-"messaging"
1932+msgid "A RTS by Cyberlore Studios, ported to Linux by Linux Game Publishing"
1933 msgstr ""
1934
1935 #: ../DEV_extra_translations/extra_translations.py:343
1936-msgid "FreeSpace 2"
1937+msgid "Glest"
1938 msgstr ""
1939
1940 #: ../DEV_extra_translations/extra_translations.py:344
1941-msgid "Space combat simulation by Volition"
1942+msgid "A free, open source 3D RTS game server"
1943 msgstr ""
1944
1945 #: ../DEV_extra_translations/extra_translations.py:345
1946-msgid "Dark Horizons: LI"
1947+msgid "VLC HTTP stream"
1948 msgstr ""
1949
1950 #: ../DEV_extra_translations/extra_translations.py:346
1951-msgid ""
1952-"Lore Invasion. A mech-style FPS by Max Gaming Technologies using the Torque "
1953-"Game Engine"
1954+msgid "VLC media player HTTP stream default port"
1955 msgstr ""
1956
1957 #: ../DEV_extra_translations/extra_translations.py:347
1958-msgid "YS FLIGHT SIMULATION 2000"
1959+msgid "Audio Video;"
1960 msgstr ""
1961
1962 #: ../DEV_extra_translations/extra_translations.py:348
1963-msgid "A 3D flight simulator"
1964+msgid "VLC MMS HTTP stream"
1965 msgstr ""
1966
1967 #: ../DEV_extra_translations/extra_translations.py:349
1968-msgid "KTorrent"
1969+msgid ""
1970+"VLC media player Microsoft Media Server stream over HTTP (Windows Media HTTP "
1971+"Streaming Protocol/MS-WMSP) default port"
1972 msgstr ""
1973
1974 #: ../DEV_extra_translations/extra_translations.py:350
1975-msgid "Feature rich BitTorrent client by KDE"
1976+msgid "VLC RTP stream"
1977+msgstr ""
1978+
1979+#: ../DEV_extra_translations/extra_translations.py:351
1980+msgid "VLC media player Real-time Transport Protocol default port"
1981 msgstr ""
1982
1983 #: ../DEV_extra_translations/extra_translations.py:352
1984-msgid "Glest"
1985+msgid "VLC UDP stream"
1986 msgstr ""
1987
1988 #: ../DEV_extra_translations/extra_translations.py:353
1989-msgid "A free, open source 3D RTS game server"
1990+msgid "VLC media player User Datagram Protocol default port"
1991 msgstr ""
1992
1993 #: ../DEV_extra_translations/extra_translations.py:354
1994-msgid "Sacred - port 2005"
1995+#: ../DEV_extra_translations/extra_translations.py:433
1996+msgid "Icecast stream"
1997 msgstr ""
1998
1999 #: ../DEV_extra_translations/extra_translations.py:355
2000-#: ../DEV_extra_translations/extra_translations.py:357
2001+msgid "VLC media player Icecast stream default port"
2002+msgstr ""
2003+
2004+#: ../DEV_extra_translations/extra_translations.py:356
2005+msgid "Joint Operations: Typhoon Rising"
2006+msgstr ""
2007+
2008+#: ../DEV_extra_translations/extra_translations.py:358
2009+msgid "VNC server display :0"
2010+msgstr ""
2011+
2012 #: ../DEV_extra_translations/extra_translations.py:359
2013+msgid "Virtual Network Computing standard server display :0"
2014+msgstr ""
2015+
2016 #: ../DEV_extra_translations/extra_translations.py:361
2017-#: ../DEV_extra_translations/extra_translations.py:363
2018-#: ../DEV_extra_translations/extra_translations.py:365
2019-msgid "Server port for the fantasy RPG by Ascaron Entertainment"
2020-msgstr ""
2021-
2022-#: ../DEV_extra_translations/extra_translations.py:356
2023-msgid "Sacred - ports 2005:2006"
2024-msgstr ""
2025-
2026-#: ../DEV_extra_translations/extra_translations.py:358
2027-msgid "Sacred - ports 2005:2007"
2028-msgstr ""
2029-
2030-#: ../DEV_extra_translations/extra_translations.py:360
2031-msgid "Sacred - ports 2005:2008"
2032+#: ../DEV_extra_translations/extra_translations.py:373
2033+msgid "VNC displays :0-:1"
2034 msgstr ""
2035
2036 #: ../DEV_extra_translations/extra_translations.py:362
2037-msgid "Sacred - ports 2005:2009"
2038+msgid "Virtual Network Computing standard server displays :0 through :1"
2039 msgstr ""
2040
2041 #: ../DEV_extra_translations/extra_translations.py:364
2042-msgid "Sacred - ports 2005:2010"
2043+#: ../DEV_extra_translations/extra_translations.py:376
2044+msgid "VNC displays :0-:3"
2045 msgstr ""
2046
2047-#: ../DEV_extra_translations/extra_translations.py:366
2048-msgid "Hexen II - 26900/udp"
2049+#: ../DEV_extra_translations/extra_translations.py:365
2050+msgid "Virtual Network Computing standard server displays :0 through :3"
2051 msgstr ""
2052
2053 #: ../DEV_extra_translations/extra_translations.py:367
2054-msgid "A fantasy FPS by Raven Software, server on port 27660"
2055+#: ../DEV_extra_translations/extra_translations.py:379
2056+msgid "VNC displays :0-:7"
2057 msgstr ""
2058
2059 #: ../DEV_extra_translations/extra_translations.py:368
2060-msgid "Hexen II - 26901/udp"
2061-msgstr ""
2062-
2063-#: ../DEV_extra_translations/extra_translations.py:369
2064-msgid "A fantasy FPS by Raven Software, server on port 26901"
2065+msgid "Virtual Network Computing standard server displays :0 through :7"
2066 msgstr ""
2067
2068 #: ../DEV_extra_translations/extra_translations.py:370
2069-msgid "Hexen II - 26902/udp"
2070+msgid "VNC http server display :0"
2071 msgstr ""
2072
2073 #: ../DEV_extra_translations/extra_translations.py:371
2074-msgid "A fantasy FPS by Raven Software, server on port 26902"
2075-msgstr ""
2076-
2077-#: ../DEV_extra_translations/extra_translations.py:372
2078-msgid "Hexen II - 26903/udp"
2079-msgstr ""
2080-
2081-#: ../DEV_extra_translations/extra_translations.py:373
2082-msgid "A fantasy FPS by Raven Software, server on port 26903"
2083+msgid "Virtual Network Computing http server display :0"
2084 msgstr ""
2085
2086 #: ../DEV_extra_translations/extra_translations.py:374
2087-msgid "HexenWorld - 26950/udp"
2088-msgstr ""
2089-
2090-#: ../DEV_extra_translations/extra_translations.py:375
2091-msgid "HexenWorld server by Raven Software"
2092-msgstr ""
2093-
2094-#: ../DEV_extra_translations/extra_translations.py:376
2095-msgid "NSClient++"
2096+msgid "Virtual Network Computing http server displays :0 through :1"
2097 msgstr ""
2098
2099 #: ../DEV_extra_translations/extra_translations.py:377
2100-msgid "Used to monitor Windows machines from a Nagios Server"
2101-msgstr ""
2102-
2103-#: ../DEV_extra_translations/extra_translations.py:378
2104-msgid "Knights and Merchants TSK"
2105-msgstr ""
2106-
2107-#: ../DEV_extra_translations/extra_translations.py:379
2108-msgid "A RTS by Joymania"
2109+msgid "Virtual Network Computing http server displays :0 through :3"
2110 msgstr ""
2111
2112 #: ../DEV_extra_translations/extra_translations.py:380
2113-msgid "Mumble"
2114-msgstr ""
2115-
2116-#: ../DEV_extra_translations/extra_translations.py:381
2117-msgid "A voice chat application for groups"
2118+msgid "Virtual Network Computing http server displays :0 through :7"
2119 msgstr ""
2120
2121 #: ../DEV_extra_translations/extra_translations.py:382
2122-msgid "Gamer's Internet Tunnel"
2123+msgid "LPD"
2124 msgstr ""
2125
2126 #: ../DEV_extra_translations/extra_translations.py:383
2127-msgid "IPX network emulator from Morpheus Software"
2128+msgid "LPD server"
2129 msgstr ""
2130
2131 #: ../DEV_extra_translations/extra_translations.py:384
2132-msgid "OpenRPG"
2133+msgid "DNS"
2134 msgstr ""
2135
2136 #: ../DEV_extra_translations/extra_translations.py:385
2137-msgid ""
2138-"A map/chat/dice-rolling tool to allow players to play tabletop games on-line"
2139+msgid "Domain Name System"
2140 msgstr ""
2141
2142 #: ../DEV_extra_translations/extra_translations.py:386
2143-msgid "Deluge Torrent"
2144+msgid "qBittorent"
2145 msgstr ""
2146
2147 #: ../DEV_extra_translations/extra_translations.py:387
2148-msgid "Cross-platform BitTorrent client written with Python and GTK+"
2149+msgid "Cross-platform BitTorrent client GUI written with Qt4"
2150 msgstr ""
2151
2152 #: ../DEV_extra_translations/extra_translations.py:389
2153-msgid "TeamSpeak 3"
2154+msgid "Doomsday"
2155 msgstr ""
2156
2157 #: ../DEV_extra_translations/extra_translations.py:390
2158-msgid "TeamSpeak 3 voice service"
2159+msgid ""
2160+"A source port of id Software's Doom engine which supports Doom, Heretic, and "
2161+"Hexen"
2162 msgstr ""
2163
2164 #: ../DEV_extra_translations/extra_translations.py:391
2165-msgid "TeamSpeak 3 File"
2166+msgid "XPilot"
2167 msgstr ""
2168
2169 #: ../DEV_extra_translations/extra_translations.py:392
2170-msgid "TeamSpeak 3 file transfer"
2171-msgstr ""
2172-
2173-#: ../DEV_extra_translations/extra_translations.py:393
2174-msgid "TeamSpeak 3 Query"
2175-msgstr ""
2176-
2177 #: ../DEV_extra_translations/extra_translations.py:394
2178-msgid "TeamSpeak 3 TCP query"
2179-msgstr ""
2180-
2181-#: ../DEV_extra_translations/extra_translations.py:395
2182-msgid "Amule"
2183-msgstr ""
2184-
2185 #: ../DEV_extra_translations/extra_translations.py:396
2186-msgid ""
2187-"Free peer-to-peer file sharing application that works with the EDonkey "
2188-"network and the Kad network"
2189-msgstr ""
2190-
2191 #: ../DEV_extra_translations/extra_translations.py:398
2192-msgid "Warcraft II Battle.net"
2193+#: ../DEV_extra_translations/extra_translations.py:400
2194+msgid "A 2D space combat game"
2195+msgstr ""
2196+
2197+#: ../DEV_extra_translations/extra_translations.py:393
2198+msgid "XPilot 2-players"
2199+msgstr ""
2200+
2201+#: ../DEV_extra_translations/extra_translations.py:395
2202+msgid "XPilot 4-players"
2203+msgstr ""
2204+
2205+#: ../DEV_extra_translations/extra_translations.py:397
2206+msgid "XPilot 8-players"
2207 msgstr ""
2208
2209 #: ../DEV_extra_translations/extra_translations.py:399
2210-msgid "Strategy game by Blizzard Entertainment"
2211-msgstr ""
2212-
2213-#: ../DEV_extra_translations/extra_translations.py:400
2214-msgid "World of Warcraft"
2215+msgid "XPilot 16-players"
2216 msgstr ""
2217
2218 #: ../DEV_extra_translations/extra_translations.py:401
2219-msgid "A MMORPG game by Blizzard Entertainment"
2220+#: ../DEV_extra_translations/extra_translations.py:701
2221+msgid "FTP"
2222 msgstr ""
2223
2224 #: ../DEV_extra_translations/extra_translations.py:402
2225-msgid "UFO: Alien Invasion"
2226+#: ../DEV_extra_translations/extra_translations.py:702
2227+msgid "File Transfer Protocol"
2228 msgstr ""
2229
2230 #: ../DEV_extra_translations/extra_translations.py:403
2231-msgid "An open-source 3D RTS inspired by X-COM"
2232+msgid "Soldier of Fortune"
2233 msgstr ""
2234
2235 #: ../DEV_extra_translations/extra_translations.py:404
2236-msgid "Subversion Server"
2237+msgid "Soldier of Fortune - A FPS by Raven Software"
2238 msgstr ""
2239
2240 #: ../DEV_extra_translations/extra_translations.py:405
2241-msgid "Subversion server for access to Subversion repositories"
2242+msgid "Counter-Strike 2D"
2243 msgstr ""
2244
2245 #: ../DEV_extra_translations/extra_translations.py:406
2246-msgid "Heavy Gear II"
2247+msgid ""
2248+"A top-down 2D clone of Valve Software's Counter-Strike by Unreal Software"
2249 msgstr ""
2250
2251 #: ../DEV_extra_translations/extra_translations.py:407
2252-msgid ""
2253-"A mech FPS based on the Dream Pod 9 universe from Activision and Loki "
2254-"Software"
2255+msgid "NTP"
2256 msgstr ""
2257
2258 #: ../DEV_extra_translations/extra_translations.py:408
2259-msgid "Steam"
2260+msgid "Network Time Protocol"
2261 msgstr ""
2262
2263 #: ../DEV_extra_translations/extra_translations.py:409
2264-msgid "Software distribution service and game server browser from Valve"
2265+msgid "Network;Time;"
2266 msgstr ""
2267
2268 #: ../DEV_extra_translations/extra_translations.py:410
2269-msgid "For Steam Client see the category: Games / Steam"
2270+msgid "Telnet"
2271 msgstr ""
2272
2273 #: ../DEV_extra_translations/extra_translations.py:411
2274-msgid "AMANDA"
2275+msgid "Text-based remote access (like SSH but without the security)"
2276 msgstr ""
2277
2278 #: ../DEV_extra_translations/extra_translations.py:412
2279-msgid "Backup server from Zmanda; standard port with nf_conntrack_amanda"
2280+msgid ""
2281+"Telnet is like SSH but without security. It'd be better to use the 'Telnet "
2282+"SSL'"
2283 msgstr ""
2284
2285 #: ../DEV_extra_translations/extra_translations.py:413
2286-msgid "Network;Archiving;"
2287+msgid "Telnet TLS/SSL"
2288 msgstr ""
2289
2290 #: ../DEV_extra_translations/extra_translations.py:414
2291-msgid "Delta Force: BHD"
2292+msgid "Text-based remote access (like SSH but without the security) SSL"
2293 msgstr ""
2294
2295 #: ../DEV_extra_translations/extra_translations.py:415
2296-msgid "Black Hawk Down. A FPS combat game by NovaLogic"
2297+msgid "Asterisk"
2298 msgstr ""
2299
2300 #: ../DEV_extra_translations/extra_translations.py:416
2301-msgid "Daimonin"
2302+msgid "An open source telephony switching and private branch exchange service"
2303 msgstr ""
2304
2305 #: ../DEV_extra_translations/extra_translations.py:417
2306-msgid "An open-source MMORPG"
2307+msgid "Review that ports are the same in /etc/asterisk/rtp.conf"
2308 msgstr ""
2309
2310 #: ../DEV_extra_translations/extra_translations.py:418
2311-#: ../DEV_extra_translations/extra_translations.py:652
2312-msgid "SANE scanner"
2313+msgid "Skype Normal"
2314 msgstr ""
2315
2316 #: ../DEV_extra_translations/extra_translations.py:419
2317-#: ../DEV_extra_translations/extra_translations.py:653
2318-msgid "Scanner Access Now Easy - scanner sharing server"
2319+msgid "Proprietary Voice over IP service and software application"
2320 msgstr ""
2321
2322 #: ../DEV_extra_translations/extra_translations.py:420
2323-msgid "F-16 Multirole Fighter"
2324+msgid "UPS Tools daemon"
2325 msgstr ""
2326
2327 #: ../DEV_extra_translations/extra_translations.py:421
2328-msgid "A F-16 simulation by NovaLogic"
2329+msgid "Network UPS Tools"
2330 msgstr ""
2331
2332 #: ../DEV_extra_translations/extra_translations.py:422
2333-msgid "usbip"
2334+msgid "System;"
2335 msgstr ""
2336
2337 #: ../DEV_extra_translations/extra_translations.py:423
2338-msgid "A Peripheral Bus Extension for Device Sharing over IP Network"
2339+msgid "MPD"
2340 msgstr ""
2341
2342 #: ../DEV_extra_translations/extra_translations.py:424
2343-msgid "Kali"
2344+msgid "Music Player Daemon. A server for streaming music"
2345 msgstr ""
2346
2347 #: ../DEV_extra_translations/extra_translations.py:425
2348-msgid "Internet game browser and IPX network emulator"
2349+msgid "Vibe Streamer"
2350 msgstr ""
2351
2352 #: ../DEV_extra_translations/extra_translations.py:426
2353-msgid "Shogo: Mobile Armour Division"
2354+msgid "A free MP3 streaming server"
2355 msgstr ""
2356
2357 #: ../DEV_extra_translations/extra_translations.py:427
2358-msgid "A FPS by Monolith Productions"
2359+#: ../DEV_extra_translations/extra_translations.py:711
2360+msgid "hddtemp"
2361 msgstr ""
2362
2363 #: ../DEV_extra_translations/extra_translations.py:428
2364-msgid "IPP"
2365+msgid "Data storage device temperature data server"
2366 msgstr ""
2367
2368 #: ../DEV_extra_translations/extra_translations.py:429
2369-msgid "Internet Printing Protocol"
2370+msgid "System;Monitor;"
2371 msgstr ""
2372
2373 #: ../DEV_extra_translations/extra_translations.py:430
2374-msgid "Network;Printing;"
2375+msgid "XBMC Remote"
2376 msgstr ""
2377
2378 #: ../DEV_extra_translations/extra_translations.py:431
2379-msgid "Enemy Territory: Quake Wars"
2380+msgid "Remote control for XBMC"
2381 msgstr ""
2382
2383 #: ../DEV_extra_translations/extra_translations.py:432
2384-msgid "A FPS by Splash Damage"
2385-msgstr ""
2386-
2387-#: ../DEV_extra_translations/extra_translations.py:433
2388-msgid "Delta Force: TFD"
2389+msgid "Icecast"
2390 msgstr ""
2391
2392 #: ../DEV_extra_translations/extra_translations.py:434
2393-msgid "Task Force Dagger. A FPS combat game by NovaLogic"
2394+msgid "Icecast - 8000:8001/tcp"
2395 msgstr ""
2396
2397 #: ../DEV_extra_translations/extra_translations.py:435
2398-msgid "Nexuiz"
2399+msgid "Icecast with SHOUTcast-compatible stream"
2400 msgstr ""
2401
2402 #: ../DEV_extra_translations/extra_translations.py:436
2403-msgid "A FPS based on Darkplaces/Quake engine by id Software"
2404+msgid "Serious Sam"
2405 msgstr ""
2406
2407 #: ../DEV_extra_translations/extra_translations.py:437
2408-msgid "Savage 2: A Tortured Soul"
2409+#: ../DEV_extra_translations/extra_translations.py:836
2410+msgid "FPS by Croteam"
2411 msgstr ""
2412
2413 #: ../DEV_extra_translations/extra_translations.py:438
2414-#: ../DEV_extra_translations/extra_translations.py:799
2415-msgid "A RTS/FPS from S2 Games"
2416+msgid "MegaMek"
2417 msgstr ""
2418
2419 #: ../DEV_extra_translations/extra_translations.py:439
2420-msgid "SIP"
2421+msgid "A unofficial online BattleTech game"
2422 msgstr ""
2423
2424 #: ../DEV_extra_translations/extra_translations.py:440
2425-msgid "Session Initiation Protocol, unencrypted, using nf_conntrack_sip module"
2426+msgid "Games;Strategy;Java;"
2427 msgstr ""
2428
2429 #: ../DEV_extra_translations/extra_translations.py:441
2430-msgid "SIP TLS"
2431+msgid "Nagios"
2432 msgstr ""
2433
2434 #: ../DEV_extra_translations/extra_translations.py:442
2435-msgid "Session Initiation Protocol with TLS encryption"
2436+msgid ""
2437+"Computer system monitor, network monitoring and infrastructure monitoring "
2438+"software application"
2439 msgstr ""
2440
2441 #: ../DEV_extra_translations/extra_translations.py:443
2442-msgid "Scorched 3D server"
2443+msgid "GNUMP3d"
2444 msgstr ""
2445
2446 #: ../DEV_extra_translations/extra_translations.py:444
2447-msgid "A modernization of the classic DOS game Scorched Earth"
2448-msgstr ""
2449-
2450-#: ../DEV_extra_translations/extra_translations.py:445
2451-msgid "Pioneers"
2452-msgstr ""
2453-
2454-#: ../DEV_extra_translations/extra_translations.py:446
2455-msgid "A game based on The Settlers of Catan by Klaus Teuber"
2456+msgid "An audio streaming server"
2457 msgstr ""
2458
2459 #: ../DEV_extra_translations/extra_translations.py:447
2460-msgid "Pioneers Metaserver"
2461+msgid "H.323 discovery"
2462 msgstr ""
2463
2464 #: ../DEV_extra_translations/extra_translations.py:448
2465-msgid "Metaserver for Pioneers"
2466+msgid "H.323 multicast gatekeeper discovery (H.225)"
2467 msgstr ""
2468
2469 #: ../DEV_extra_translations/extra_translations.py:449
2470-msgid "Quake 4"
2471+msgid "H.323 RAS"
2472+msgstr ""
2473+
2474+#: ../DEV_extra_translations/extra_translations.py:450
2475+msgid "H.323 Gatekeeper Registration, Admission and Status (H.225)"
2476 msgstr ""
2477
2478 #: ../DEV_extra_translations/extra_translations.py:451
2479-msgid "MySQL"
2480+msgid "Yet Another Netplay Guider"
2481 msgstr ""
2482
2483 #: ../DEV_extra_translations/extra_translations.py:452
2484-msgid "MySQL Database"
2485+msgid "YANG - Yet Another Netplay Guider, default game connection"
2486 msgstr ""
2487
2488 #: ../DEV_extra_translations/extra_translations.py:453
2489-msgid "Office;Database;"
2490+msgid "Yet Another Netplay Guider Hosting"
2491 msgstr ""
2492
2493 #: ../DEV_extra_translations/extra_translations.py:454
2494-msgid "Doom3"
2495-msgstr ""
2496-
2497-#: ../DEV_extra_translations/extra_translations.py:458
2498-msgid "H.323 discovery"
2499+msgid "YANG - Yet Another Netplay Guider, room hosting"
2500+msgstr ""
2501+
2502+#: ../DEV_extra_translations/extra_translations.py:455
2503+msgid "DXX-Rebirth on YANG"
2504+msgstr ""
2505+
2506+#: ../DEV_extra_translations/extra_translations.py:456
2507+msgid "DXX-Rebirth, a source port of Descent, connected through YANG"
2508+msgstr ""
2509+
2510+#: ../DEV_extra_translations/extra_translations.py:457
2511+msgid "Quake II"
2512 msgstr ""
2513
2514 #: ../DEV_extra_translations/extra_translations.py:459
2515-msgid "H.323 multicast gatekeeper discovery (H.225)"
2516+msgid "Railroad Tycoon II"
2517 msgstr ""
2518
2519 #: ../DEV_extra_translations/extra_translations.py:460
2520-msgid "H.323 RAS"
2521+msgid "Railroad strategy game by PopTop Software"
2522 msgstr ""
2523
2524 #: ../DEV_extra_translations/extra_translations.py:461
2525-msgid "H.323 Gatekeeper Registration, Admission and Status (H.225)"
2526+msgid "Castle Vox"
2527 msgstr ""
2528
2529 #: ../DEV_extra_translations/extra_translations.py:462
2530-msgid "Delta Force: LW"
2531+msgid ""
2532+"A simultaneous-turns strategy game from Sillysoft influenced by Diplomacy "
2533+"and Axis & Allies"
2534 msgstr ""
2535
2536 #: ../DEV_extra_translations/extra_translations.py:463
2537-msgid "Land Warrior. A FPS combat game by NovaLogic"
2538+msgid "Snowball Surprise (SnowballZ)"
2539 msgstr ""
2540
2541 #: ../DEV_extra_translations/extra_translations.py:464
2542-msgid "Dropbox LanSync"
2543+msgid "A RTS snowball fight"
2544 msgstr ""
2545
2546 #: ../DEV_extra_translations/extra_translations.py:465
2547-msgid "A web-based file hosting service"
2548+msgid "Balazar III"
2549 msgstr ""
2550
2551 #: ../DEV_extra_translations/extra_translations.py:466
2552-msgid "Asterisk"
2553+msgid "A 2D/3D dungeon adventure game"
2554 msgstr ""
2555
2556 #: ../DEV_extra_translations/extra_translations.py:467
2557-msgid "An open source telephony switching and private branch exchange service"
2558+msgid "Savage 2: A Tortured Soul"
2559 msgstr ""
2560
2561 #: ../DEV_extra_translations/extra_translations.py:468
2562-msgid "Review that ports are the same in /etc/asterisk/rtp.conf"
2563+#: ../DEV_extra_translations/extra_translations.py:645
2564+msgid "A RTS/FPS from S2 Games"
2565 msgstr ""
2566
2567 #: ../DEV_extra_translations/extra_translations.py:469
2568-msgid "Webmin"
2569+msgid "Freeciv"
2570 msgstr ""
2571
2572 #: ../DEV_extra_translations/extra_translations.py:470
2573-#: ../DEV_extra_translations/extra_translations.py:473
2574-msgid "Web-page based system management utility"
2575+msgid "A turn-based strategy game similar to Civilization I & II by Microprose"
2576 msgstr ""
2577
2578 #: ../DEV_extra_translations/extra_translations.py:471
2579-msgid "Network;Shell;"
2580+msgid "Sacred - port 2005"
2581 msgstr ""
2582
2583 #: ../DEV_extra_translations/extra_translations.py:472
2584-msgid "Webmin fast RPC"
2585-msgstr ""
2586-
2587 #: ../DEV_extra_translations/extra_translations.py:474
2588-msgid "Armored Fist 3"
2589+#: ../DEV_extra_translations/extra_translations.py:476
2590+#: ../DEV_extra_translations/extra_translations.py:478
2591+#: ../DEV_extra_translations/extra_translations.py:480
2592+#: ../DEV_extra_translations/extra_translations.py:482
2593+msgid "Server port for the fantasy RPG by Ascaron Entertainment"
2594+msgstr ""
2595+
2596+#: ../DEV_extra_translations/extra_translations.py:473
2597+msgid "Sacred - ports 2005:2006"
2598 msgstr ""
2599
2600 #: ../DEV_extra_translations/extra_translations.py:475
2601-msgid "A M1A2 Abrams tank simulation by NovaLogic"
2602-msgstr ""
2603-
2604-#: ../DEV_extra_translations/extra_translations.py:476
2605-msgid "Firefly Media Server"
2606+msgid "Sacred - ports 2005:2007"
2607 msgstr ""
2608
2609 #: ../DEV_extra_translations/extra_translations.py:477
2610-msgid "DAAP audio server formerly known as mt-daapd"
2611-msgstr ""
2612-
2613-#: ../DEV_extra_translations/extra_translations.py:478
2614-msgid "Majesty: The Fantasy Kingdom Sim"
2615+msgid "Sacred - ports 2005:2008"
2616 msgstr ""
2617
2618 #: ../DEV_extra_translations/extra_translations.py:479
2619-msgid "A RTS by Cyberlore Studios, ported to Linux by Linux Game Publishing"
2620-msgstr ""
2621-
2622-#: ../DEV_extra_translations/extra_translations.py:480
2623-msgid "FooBillard"
2624+msgid "Sacred - ports 2005:2009"
2625 msgstr ""
2626
2627 #: ../DEV_extra_translations/extra_translations.py:481
2628-msgid "Cue sports simulation with Carambol, Snooker, and Pool"
2629-msgstr ""
2630-
2631-#: ../DEV_extra_translations/extra_translations.py:482
2632-msgid "Skype - 23399"
2633+msgid "Sacred - ports 2005:2010"
2634 msgstr ""
2635
2636 #: ../DEV_extra_translations/extra_translations.py:483
2637-msgid "VoIP client"
2638+msgid "Enemy Territory: Quake Wars"
2639 msgstr ""
2640
2641 #: ../DEV_extra_translations/extra_translations.py:484
2642-msgid "Skype - 23398"
2643+msgid "A FPS by Splash Damage"
2644 msgstr ""
2645
2646 #: ../DEV_extra_translations/extra_translations.py:485
2647+msgid "Heroes of Might and Magic III"
2648+msgstr ""
2649+
2650+#: ../DEV_extra_translations/extra_translations.py:486
2651+msgid "A fantasy strategy game by 3DO"
2652+msgstr ""
2653+
2654 #: ../DEV_extra_translations/extra_translations.py:487
2655+msgid "Lux"
2656+msgstr ""
2657+
2658+#: ../DEV_extra_translations/extra_translations.py:488
2659+msgid ""
2660+"Delux, Ancient Empires and American History: A turn-based strategy game from "
2661+"Sillysoft influenced by Risk"
2662+msgstr ""
2663+
2664 #: ../DEV_extra_translations/extra_translations.py:489
2665+msgid "GNUnet"
2666+msgstr ""
2667+
2668+#: ../DEV_extra_translations/extra_translations.py:490
2669+msgid ""
2670+"A decentralized peer-to-peer networking framework with file sharing and "
2671+"messaging"
2672+msgstr ""
2673+
2674 #: ../DEV_extra_translations/extra_translations.py:491
2675+msgid "Tachyon: The Fringe"
2676+msgstr ""
2677+
2678+#: ../DEV_extra_translations/extra_translations.py:492
2679+msgid "A 3D space combat game by NovaLogic"
2680+msgstr ""
2681+
2682 #: ../DEV_extra_translations/extra_translations.py:493
2683+msgid "FreeCol"
2684+msgstr ""
2685+
2686+#: ../DEV_extra_translations/extra_translations.py:494
2687+msgid "A turn-based strategy game similar to Colonization by Microprose"
2688+msgstr ""
2689+
2690 #: ../DEV_extra_translations/extra_translations.py:495
2691-#: ../DEV_extra_translations/extra_translations.py:497
2692-#: ../DEV_extra_translations/extra_translations.py:499
2693-#: ../DEV_extra_translations/extra_translations.py:501
2694-msgid "VoIP client, suggested alternate port"
2695-msgstr ""
2696-
2697-#: ../DEV_extra_translations/extra_translations.py:486
2698-msgid "Skype - 23397"
2699-msgstr ""
2700-
2701-#: ../DEV_extra_translations/extra_translations.py:488
2702-msgid "Skype - 23396"
2703-msgstr ""
2704-
2705-#: ../DEV_extra_translations/extra_translations.py:490
2706-msgid "Skype - 23395"
2707-msgstr ""
2708-
2709-#: ../DEV_extra_translations/extra_translations.py:492
2710-msgid "Skype - 23394"
2711-msgstr ""
2712-
2713-#: ../DEV_extra_translations/extra_translations.py:494
2714-msgid "Skype - 23393"
2715+msgid "NASCAR Racing 2002/03 1 player"
2716 msgstr ""
2717
2718 #: ../DEV_extra_translations/extra_translations.py:496
2719-msgid "Skype - 23392"
2720-msgstr ""
2721-
2722 #: ../DEV_extra_translations/extra_translations.py:498
2723-msgid "Skype - 23391"
2724-msgstr ""
2725-
2726 #: ../DEV_extra_translations/extra_translations.py:500
2727-msgid "Skype - 23390"
2728-msgstr ""
2729-
2730 #: ../DEV_extra_translations/extra_translations.py:502
2731-msgid "Delta Force"
2732-msgstr ""
2733-
2734 #: ../DEV_extra_translations/extra_translations.py:504
2735-msgid "Red Eclipse"
2736+#: ../DEV_extra_translations/extra_translations.py:506
2737+#: ../DEV_extra_translations/extra_translations.py:508
2738+msgid "Racing simulators from Papyrus Design Group"
2739+msgstr ""
2740+
2741+#: ../DEV_extra_translations/extra_translations.py:497
2742+msgid "NASCAR Racing 2002/03 2 players"
2743+msgstr ""
2744+
2745+#: ../DEV_extra_translations/extra_translations.py:499
2746+msgid "NASCAR Racing 2002/03 4 players"
2747+msgstr ""
2748+
2749+#: ../DEV_extra_translations/extra_translations.py:501
2750+msgid "NASCAR Racing 2002/03 8 players"
2751+msgstr ""
2752+
2753+#: ../DEV_extra_translations/extra_translations.py:503
2754+msgid "NASCAR Racing 2002/03 16 players"
2755 msgstr ""
2756
2757 #: ../DEV_extra_translations/extra_translations.py:505
2758-msgid "An open source first-person shooter that runs on the Cube Engine 2"
2759-msgstr ""
2760-
2761-#: ../DEV_extra_translations/extra_translations.py:506
2762-msgid "Postal 2"
2763+msgid "NASCAR Racing 2002/03 32 players"
2764 msgstr ""
2765
2766 #: ../DEV_extra_translations/extra_translations.py:507
2767-msgid "A FPS by Running with Scissors (uses the Unreal engine)"
2768-msgstr ""
2769-
2770-#: ../DEV_extra_translations/extra_translations.py:508
2771-msgid "Spring game engine"
2772+msgid "NASCAR Racing 2002/03 42 players"
2773 msgstr ""
2774
2775 #: ../DEV_extra_translations/extra_translations.py:509
2776-msgid ""
2777-"An enhanced clone of RTS game Total Annihilation by Cavedog Entertainment"
2778+msgid "Vuze"
2779 msgstr ""
2780
2781 #: ../DEV_extra_translations/extra_translations.py:510
2782-msgid "HPLIP"
2783+msgid ""
2784+"BitTorrent client used to transfer files via the BitTorrent protocol. Vuze "
2785+"uses the Azureus Engine"
2786 msgstr ""
2787
2788 #: ../DEV_extra_translations/extra_translations.py:511
2789-msgid "HP Linux Imaging and Printing"
2790+msgid ""
2791+"You need to add the main random port too that you selected the first time"
2792 msgstr ""
2793
2794 #: ../DEV_extra_translations/extra_translations.py:512
2795-msgid "Doom II"
2796+msgid "DAAP"
2797+msgstr ""
2798+
2799+#: ../DEV_extra_translations/extra_translations.py:513
2800+msgid "Digital Audio Access Protocol"
2801 msgstr ""
2802
2803 #: ../DEV_extra_translations/extra_translations.py:514
2804-msgid "Doomsday"
2805+msgid "Sid Meier's Alpha Centauri"
2806 msgstr ""
2807
2808 #: ../DEV_extra_translations/extra_translations.py:515
2809-msgid ""
2810-"A source port of id Software's Doom engine which supports Doom, Heretic, and "
2811-"Hexen"
2812+msgid "SciFi strategy game by Firaxis"
2813 msgstr ""
2814
2815 #: ../DEV_extra_translations/extra_translations.py:516
2816-msgid "NFS (jhansonxi)"
2817+msgid "LBreakout2 - 8001/udp"
2818 msgstr ""
2819
2820 #: ../DEV_extra_translations/extra_translations.py:517
2821-msgid ""
2822-"Network File System protocol with static ports at relatively unused "
2823-"4194:4197 (4195 broadcast out)"
2824+#: ../DEV_extra_translations/extra_translations.py:519
2825+msgid "A Breakout clone"
2826 msgstr ""
2827
2828 #: ../DEV_extra_translations/extra_translations.py:518
2829-msgid "NFS Quota (jhansonxi)"
2830-msgstr ""
2831-
2832-#: ../DEV_extra_translations/extra_translations.py:519
2833-msgid ""
2834-"Network File System protocol with filesystem usage quota support with static "
2835-"ports at relatively unused 4194:4198 (4195 broadcast out)"
2836+msgid "LBreakout2 - 2002/udp"
2837 msgstr ""
2838
2839 #: ../DEV_extra_translations/extra_translations.py:520
2840-msgid "Postal"
2841+msgid "Aleph One"
2842 msgstr ""
2843
2844 #: ../DEV_extra_translations/extra_translations.py:521
2845-msgid "Violent combat game from Running With Scissors"
2846+msgid "An enhanced port of Marathon 2: Durandal from Bungie Software"
2847 msgstr ""
2848
2849 #: ../DEV_extra_translations/extra_translations.py:522
2850-msgid "Heroes of Might and Magic III"
2851+msgid "Daimonin"
2852 msgstr ""
2853
2854 #: ../DEV_extra_translations/extra_translations.py:523
2855-msgid "A fantasy strategy game by 3DO"
2856+msgid "An open-source MMORPG"
2857 msgstr ""
2858
2859 #: ../DEV_extra_translations/extra_translations.py:524
2860-msgid "BZFlag"
2861+msgid "MiG-29 Fulcrum"
2862 msgstr ""
2863
2864 #: ../DEV_extra_translations/extra_translations.py:525
2865-msgid "A FPS tank battle capture the flag game"
2866+msgid "A Mikoyan-Gurevich MiG-29 Fulcrum simulation by NovaLogic"
2867 msgstr ""
2868
2869 #: ../DEV_extra_translations/extra_translations.py:526
2870-msgid "Toribash - 20184"
2871-msgstr ""
2872-
2873-#: ../DEV_extra_translations/extra_translations.py:527
2874+msgid "Quake 4"
2875+msgstr ""
2876+
2877+#: ../DEV_extra_translations/extra_translations.py:528
2878+msgid "All Services"
2879+msgstr ""
2880+
2881 #: ../DEV_extra_translations/extra_translations.py:529
2882+msgid "Client, dedicated servers, P2P and voice chat"
2883+msgstr ""
2884+
2885+#: ../DEV_extra_translations/extra_translations.py:530
2886+msgid "Games;Steam;"
2887+msgstr ""
2888+
2889 #: ../DEV_extra_translations/extra_translations.py:531
2890+msgid "Client, Dedicated Servers, P2P and Voice Chat"
2891+msgstr ""
2892+
2893+#: ../DEV_extra_translations/extra_translations.py:532
2894+msgid "Client"
2895+msgstr ""
2896+
2897 #: ../DEV_extra_translations/extra_translations.py:533
2898+msgid "Game client traffic, typically Matchmaking and HLTV and Steam downloads"
2899+msgstr ""
2900+
2901+#: ../DEV_extra_translations/extra_translations.py:534
2902+msgid "Dedicated Servers"
2903+msgstr ""
2904+
2905 #: ../DEV_extra_translations/extra_translations.py:535
2906-msgid ""
2907-"A fighting game based on the physics sandbox model with customizable moves"
2908-msgstr ""
2909-
2910-#: ../DEV_extra_translations/extra_translations.py:528
2911-msgid "Toribash - 20185"
2912-msgstr ""
2913-
2914-#: ../DEV_extra_translations/extra_translations.py:530
2915-msgid "Toribash - 20186"
2916-msgstr ""
2917-
2918-#: ../DEV_extra_translations/extra_translations.py:532
2919-msgid "Toribash - 20187"
2920-msgstr ""
2921-
2922-#: ../DEV_extra_translations/extra_translations.py:534
2923-msgid "Toribash Full"
2924+msgid "SRCDS Rcon port"
2925 msgstr ""
2926
2927 #: ../DEV_extra_translations/extra_translations.py:536
2928-msgid "Counter-Strike 2D"
2929+msgid "P2P and Voice Chat"
2930 msgstr ""
2931
2932 #: ../DEV_extra_translations/extra_translations.py:537
2933-msgid ""
2934-"A top-down 2D clone of Valve Software's Counter-Strike by Unreal Software"
2935+msgid "Steamworks P2P Networking and Steam Voice Chat"
2936 msgstr ""
2937
2938 #: ../DEV_extra_translations/extra_translations.py:538
2939-msgid "Socks Proxy"
2940+msgid "Call of Duty"
2941 msgstr ""
2942
2943 #: ../DEV_extra_translations/extra_translations.py:539
2944-msgid "SOCKS protocol for proxy server support"
2945+msgid "Additional Ports for Call of Duty: Modern Warfare 2 Multiplayer"
2946 msgstr ""
2947
2948 #: ../DEV_extra_translations/extra_translations.py:540
2949-msgid "Transparent Proxy"
2950+msgid "Kali"
2951 msgstr ""
2952
2953 #: ../DEV_extra_translations/extra_translations.py:541
2954-msgid "Transparent proxy"
2955+msgid "Internet game browser and IPX network emulator"
2956 msgstr ""
2957
2958 #: ../DEV_extra_translations/extra_translations.py:542
2959-msgid "BitTorrent Minimum"
2960+msgid "Dofus"
2961 msgstr ""
2962
2963 #: ../DEV_extra_translations/extra_translations.py:543
2964+msgid "A massively multiplayer online role-playing game"
2965+msgstr ""
2966+
2967+#: ../DEV_extra_translations/extra_translations.py:544
2968+#: ../DEV_extra_translations/extra_translations.py:697
2969+msgid "Tremulous"
2970+msgstr ""
2971+
2972+#: ../DEV_extra_translations/extra_translations.py:545
2973+msgid "Team-based SciFi/alien FPS from Dark Legion Development"
2974+msgstr ""
2975+
2976 #: ../DEV_extra_translations/extra_translations.py:546
2977+msgid "Evil Islands: CotLS"
2978+msgstr ""
2979+
2980+#: ../DEV_extra_translations/extra_translations.py:547
2981+msgid "A RTS game with RPG and stealth elements from Nival Interactive"
2982+msgstr ""
2983+
2984+#: ../DEV_extra_translations/extra_translations.py:548
2985+msgid "Vuze Remote"
2986+msgstr ""
2987+
2988 #: ../DEV_extra_translations/extra_translations.py:549
2989-msgid "BitTorrent peer-peer file sharing"
2990-msgstr ""
2991-
2992-#: ../DEV_extra_translations/extra_translations.py:545
2993-msgid "BitTorrent"
2994-msgstr ""
2995-
2996-#: ../DEV_extra_translations/extra_translations.py:548
2997-msgid "BitTorrent Full"
2998+msgid "Remote control for Vuze"
2999 msgstr ""
3000
3001 #: ../DEV_extra_translations/extra_translations.py:551
3002-msgid "Railroad Tycoon II"
3003+msgid "GGZ Gaming Zone"
3004 msgstr ""
3005
3006 #: ../DEV_extra_translations/extra_translations.py:552
3007-msgid "Railroad strategy game by PopTop Software"
3008+msgid "Network support for GNOME Games"
3009 msgstr ""
3010
3011 #: ../DEV_extra_translations/extra_translations.py:553
3012-msgid "Mechwarrior 4"
3013+msgid "Postal"
3014 msgstr ""
3015
3016 #: ../DEV_extra_translations/extra_translations.py:554
3017-msgid "A FPS based on the Fasa Battletech universe"
3018+msgid "Violent combat game from Running With Scissors"
3019 msgstr ""
3020
3021 #: ../DEV_extra_translations/extra_translations.py:555
3022-msgid "Yura.net Domination (jRisk)"
3023+msgid "POP3"
3024 msgstr ""
3025
3026 #: ../DEV_extra_translations/extra_translations.py:556
3027-msgid "A clone of Risk"
3028+msgid "Post Office Protocol"
3029 msgstr ""
3030
3031 #: ../DEV_extra_translations/extra_translations.py:557
3032-msgid "Ur-Quan Masters"
3033+msgid "POP3S"
3034 msgstr ""
3035
3036 #: ../DEV_extra_translations/extra_translations.py:558
3037-msgid "An enhanced version of Star Control II from 3DO"
3038+#: ../DEV_extra_translations/extra_translations.py:562
3039+msgid "Secure mail server"
3040 msgstr ""
3041
3042 #: ../DEV_extra_translations/extra_translations.py:559
3043-msgid "Games;Adventure;"
3044+msgid "IMAP"
3045 msgstr ""
3046
3047 #: ../DEV_extra_translations/extra_translations.py:560
3048-msgid "netPanzer"
3049+msgid "Internet Message Access Protocol"
3050 msgstr ""
3051
3052 #: ../DEV_extra_translations/extra_translations.py:561
3053-msgid "An online multiplayer tactical warfare game"
3054-msgstr ""
3055-
3056-#: ../DEV_extra_translations/extra_translations.py:562
3057-msgid "Neverwinter Nights server"
3058+msgid "IMAPS"
3059 msgstr ""
3060
3061 #: ../DEV_extra_translations/extra_translations.py:563
3062-msgid "Default port for Neverwinter Nights, a RPG from Bioware"
3063+msgid "SMTP"
3064 msgstr ""
3065
3066 #: ../DEV_extra_translations/extra_translations.py:564
3067-msgid "Unreal Tournament 2004"
3068+msgid "Simple Mail Transfer Protocol"
3069 msgstr ""
3070
3071 #: ../DEV_extra_translations/extra_translations.py:565
3072-msgid "A FPS by Epic Games"
3073+msgid "Postfix Mail Server SMTP"
3074 msgstr ""
3075
3076 #: ../DEV_extra_translations/extra_translations.py:566
3077-msgid "Unreal Tournament 2004 Admin"
3078+#: ../DEV_extra_translations/extra_translations.py:568
3079+#: ../DEV_extra_translations/extra_translations.py:570
3080+msgid "Postfix is a high-performance mail transport agent"
3081 msgstr ""
3082
3083 #: ../DEV_extra_translations/extra_translations.py:567
3084-msgid "Web-based administration for the FPS by Epic Games"
3085-msgstr ""
3086-
3087-#: ../DEV_extra_translations/extra_translations.py:568
3088-msgid "Evil Islands: CotLS"
3089+msgid "Postfix Mail Server SMTPS"
3090 msgstr ""
3091
3092 #: ../DEV_extra_translations/extra_translations.py:569
3093-msgid "A RTS game with RPG and stealth elements from Nival Interactive"
3094-msgstr ""
3095-
3096-#: ../DEV_extra_translations/extra_translations.py:570
3097-msgid "FreeOrion"
3098+msgid "Postfix Mail Server Submission"
3099 msgstr ""
3100
3101 #: ../DEV_extra_translations/extra_translations.py:571
3102-msgid ""
3103-"A turn-based 4X strategy game inspired by Master of Orion from MicroProse"
3104+msgid "monopd"
3105 msgstr ""
3106
3107 #: ../DEV_extra_translations/extra_translations.py:572
3108-msgid "Telnet"
3109+msgid "A game server for Monopoly-like board games"
3110 msgstr ""
3111
3112 #: ../DEV_extra_translations/extra_translations.py:573
3113-msgid "Text-based remote access (like SSH but without the security)"
3114+msgid "FreeSpace 2"
3115 msgstr ""
3116
3117 #: ../DEV_extra_translations/extra_translations.py:574
3118-msgid ""
3119-"Telnet is like SSH but without security. It'd be better to use the 'Telnet "
3120-"SSL'"
3121+msgid "Space combat simulation by Volition"
3122 msgstr ""
3123
3124 #: ../DEV_extra_translations/extra_translations.py:575
3125-msgid "Telnet TLS/SSL"
3126+msgid "Crossfire"
3127 msgstr ""
3128
3129 #: ../DEV_extra_translations/extra_translations.py:576
3130-msgid "Text-based remote access (like SSH but without the security) SSL"
3131+msgid ""
3132+"An open source, cooperative multiplayer graphical RPG and adventure game"
3133 msgstr ""
3134
3135 #: ../DEV_extra_translations/extra_translations.py:577
3136-msgid "MegaMek"
3137+msgid "Crossfire Metaserver"
3138 msgstr ""
3139
3140 #: ../DEV_extra_translations/extra_translations.py:578
3141-msgid "A unofficial online BattleTech game"
3142+msgid "Metaserver for Crossfire RPG"
3143 msgstr ""
3144
3145 #: ../DEV_extra_translations/extra_translations.py:579
3146-msgid "Games;Strategy;Java;"
3147+msgid "Syslog"
3148 msgstr ""
3149
3150 #: ../DEV_extra_translations/extra_translations.py:580
3151-msgid "Delta Force: Xtreme"
3152+msgid "System logging"
3153+msgstr ""
3154+
3155+#: ../DEV_extra_translations/extra_translations.py:581
3156+msgid "Optimized Link State Routing"
3157 msgstr ""
3158
3159 #: ../DEV_extra_translations/extra_translations.py:582
3160-msgid "Blobby Volley 2"
3161+msgid "A mesh networking protocol"
3162 msgstr ""
3163
3164 #: ../DEV_extra_translations/extra_translations.py:583
3165-msgid "A volleyball game"
3166+msgid "Ryzom"
3167 msgstr ""
3168
3169 #: ../DEV_extra_translations/extra_translations.py:584
3170-msgid "Prey"
3171+msgid ""
3172+"It's also known as The Saga of Ryzom, is a massively multiplayer online role-"
3173+"playing game (MMORPG)"
3174 msgstr ""
3175
3176 #: ../DEV_extra_translations/extra_translations.py:585
3177-msgid "A SciFi FPS action adventure by 3D Realms"
3178+msgid "Gamer's Internet Tunnel"
3179 msgstr ""
3180
3181 #: ../DEV_extra_translations/extra_translations.py:586
3182-msgid "Windows Messenger"
3183+msgid "IPX network emulator from Morpheus Software"
3184 msgstr ""
3185
3186 #: ../DEV_extra_translations/extra_translations.py:587
3187-msgid ""
3188-"Windows Messenger/Windows Live Messenger application sharing and whiteboard "
3189-"(requires SIP)"
3190+msgid "World of Padman - 27960/udp"
3191 msgstr ""
3192
3193 #: ../DEV_extra_translations/extra_translations.py:588
3194-msgid "Windows Messenger File"
3195+msgid ""
3196+"A FPS by Padworld Entertainment based on Quake III, server on port 27960"
3197 msgstr ""
3198
3199 #: ../DEV_extra_translations/extra_translations.py:589
3200-msgid "Windows Messenger/MSN Messenger file transfer"
3201+msgid "World of Padman - 27961/udp"
3202 msgstr ""
3203
3204 #: ../DEV_extra_translations/extra_translations.py:590
3205-msgid "Windows Messenger Assistance"
3206+msgid ""
3207+"A FPS by Padworld Entertainment based on Quake III, server on port 27961"
3208 msgstr ""
3209
3210 #: ../DEV_extra_translations/extra_translations.py:591
3211-msgid "Remote Assistance/Remote Desktop Protocol/Terminal Services (RDP)"
3212+msgid "World of Padman - 27962/udp"
3213 msgstr ""
3214
3215 #: ../DEV_extra_translations/extra_translations.py:592
3216-msgid "Network;Remote Access;"
3217+msgid ""
3218+"A FPS by Padworld Entertainment based on Quake III, server on port 27962"
3219 msgstr ""
3220
3221 #: ../DEV_extra_translations/extra_translations.py:593
3222-#: ../DEV_extra_translations/extra_translations.py:596
3223-#: ../DEV_extra_translations/extra_translations.py:728
3224-#: ../DEV_extra_translations/extra_translations.py:764
3225-#: ../DEV_extra_translations/extra_translations.py:767
3226-#: ../DEV_extra_translations/extra_translations.py:770
3227-#: ../DEV_extra_translations/extra_translations.py:773
3228-#: ../DEV_extra_translations/extra_translations.py:776
3229-#: ../DEV_extra_translations/extra_translations.py:779
3230-#: ../DEV_extra_translations/extra_translations.py:782
3231-#: ../DEV_extra_translations/extra_translations.py:785
3232-msgid "It may be a security risk to use a default allow policy for RDP"
3233+msgid "World of Padman - 27963/udp"
3234 msgstr ""
3235
3236 #: ../DEV_extra_translations/extra_translations.py:594
3237-msgid "RDP"
3238+msgid ""
3239+"A FPS by Padworld Entertainment based on Quake III, server on port 27963"
3240 msgstr ""
3241
3242 #: ../DEV_extra_translations/extra_translations.py:595
3243-msgid "Remote Desktop Protocols"
3244+msgid "Steam"
3245+msgstr ""
3246+
3247+#: ../DEV_extra_translations/extra_translations.py:596
3248+msgid "Software distribution service and game server browser from Valve"
3249 msgstr ""
3250
3251 #: ../DEV_extra_translations/extra_translations.py:597
3252-#: ../DEV_extra_translations/extra_translations.py:729
3253-msgid "Tremulous"
3254+msgid "For Steam Client see the category: Games / Steam"
3255 msgstr ""
3256
3257 #: ../DEV_extra_translations/extra_translations.py:598
3258-msgid ""
3259-"A free and open source team-based first-person shooter with real-time "
3260-"strategy elements"
3261+msgid "PulseAudio"
3262 msgstr ""
3263
3264 #: ../DEV_extra_translations/extra_translations.py:599
3265-msgid "Transmission"
3266+msgid "Networked sound server"
3267 msgstr ""
3268
3269 #: ../DEV_extra_translations/extra_translations.py:600
3270-msgid ""
3271-"BitTorrent client which features a simple interface on top of a cross-"
3272-"platform backend"
3273+msgid "BZFlag"
3274+msgstr ""
3275+
3276+#: ../DEV_extra_translations/extra_translations.py:601
3277+msgid "A FPS tank battle capture the flag game"
3278 msgstr ""
3279
3280 #: ../DEV_extra_translations/extra_translations.py:602
3281-msgid "Warsow"
3282+msgid "Wormux"
3283 msgstr ""
3284
3285 #: ../DEV_extra_translations/extra_translations.py:603
3286-msgid "A competitive FPS based on the Qfusion 3D/id tech 2 engine"
3287+#: ../DEV_extra_translations/extra_translations.py:609
3288+msgid "An arcade combat game inspired by Worms from Team17 Software"
3289 msgstr ""
3290
3291 #: ../DEV_extra_translations/extra_translations.py:604
3292-msgid "NASCAR Racing 2002/03 1 player"
3293+msgid "Return To Castle Wolfenstein"
3294 msgstr ""
3295
3296 #: ../DEV_extra_translations/extra_translations.py:605
3297+msgid ""
3298+"WWII FPS and sequel from Splash Damage, Gray Matter Interactive, Nerve "
3299+"Software, and id Software"
3300+msgstr ""
3301+
3302+#: ../DEV_extra_translations/extra_translations.py:606
3303+msgid "Abuse"
3304+msgstr ""
3305+
3306 #: ../DEV_extra_translations/extra_translations.py:607
3307-#: ../DEV_extra_translations/extra_translations.py:609
3308-#: ../DEV_extra_translations/extra_translations.py:611
3309-#: ../DEV_extra_translations/extra_translations.py:613
3310-#: ../DEV_extra_translations/extra_translations.py:615
3311-#: ../DEV_extra_translations/extra_translations.py:617
3312-msgid "Racing simulators from Papyrus Design Group"
3313-msgstr ""
3314-
3315-#: ../DEV_extra_translations/extra_translations.py:606
3316-msgid "NASCAR Racing 2002/03 2 players"
3317+msgid "A dark 2D side-scrolling platform game developed by Crack dot Com"
3318 msgstr ""
3319
3320 #: ../DEV_extra_translations/extra_translations.py:608
3321-msgid "NASCAR Racing 2002/03 4 players"
3322+msgid "Hedgewars"
3323 msgstr ""
3324
3325 #: ../DEV_extra_translations/extra_translations.py:610
3326-msgid "NASCAR Racing 2002/03 8 players"
3327+msgid "0verkill"
3328+msgstr ""
3329+
3330+#: ../DEV_extra_translations/extra_translations.py:611
3331+msgid "An ASCII-art 2D deathmatch game"
3332 msgstr ""
3333
3334 #: ../DEV_extra_translations/extra_translations.py:612
3335-msgid "NASCAR Racing 2002/03 16 players"
3336+msgid "Delta Force: TFD"
3337+msgstr ""
3338+
3339+#: ../DEV_extra_translations/extra_translations.py:613
3340+msgid "Task Force Dagger. A FPS combat game by NovaLogic"
3341 msgstr ""
3342
3343 #: ../DEV_extra_translations/extra_translations.py:614
3344-msgid "NASCAR Racing 2002/03 32 players"
3345+msgid "Dark Horizons: LI"
3346+msgstr ""
3347+
3348+#: ../DEV_extra_translations/extra_translations.py:615
3349+msgid ""
3350+"Lore Invasion. A mech-style FPS by Max Gaming Technologies using the Torque "
3351+"Game Engine"
3352 msgstr ""
3353
3354 #: ../DEV_extra_translations/extra_translations.py:616
3355-msgid "NASCAR Racing 2002/03 42 players"
3356+msgid "Red Eclipse"
3357+msgstr ""
3358+
3359+#: ../DEV_extra_translations/extra_translations.py:617
3360+msgid "An open source first-person shooter that runs on the Cube Engine 2"
3361 msgstr ""
3362
3363 #: ../DEV_extra_translations/extra_translations.py:618
3364-msgid "All Services"
3365+msgid "Heretic II"
3366 msgstr ""
3367
3368 #: ../DEV_extra_translations/extra_translations.py:619
3369-msgid "Client, dedicated servers, P2P and voice chat"
3370+msgid "Fantasy combat FPS by Raven Software"
3371 msgstr ""
3372
3373 #: ../DEV_extra_translations/extra_translations.py:620
3374-msgid "Games;Steam;"
3375+msgid "Blood II: The Chosen"
3376 msgstr ""
3377
3378 #: ../DEV_extra_translations/extra_translations.py:621
3379-msgid "Client, Dedicated Servers, P2P and Voice Chat"
3380+msgid "A FPS from Monolith Productions"
3381 msgstr ""
3382
3383 #: ../DEV_extra_translations/extra_translations.py:622
3384-msgid "Client"
3385+msgid "Mumble"
3386 msgstr ""
3387
3388 #: ../DEV_extra_translations/extra_translations.py:623
3389-msgid "Game client traffic, typically Matchmaking and HLTV and Steam downloads"
3390+msgid "A voice chat application for groups"
3391 msgstr ""
3392
3393 #: ../DEV_extra_translations/extra_translations.py:624
3394-msgid "Dedicated Servers"
3395+msgid "Games for Windows - Live"
3396 msgstr ""
3397
3398 #: ../DEV_extra_translations/extra_translations.py:625
3399-msgid "SRCDS Rcon port"
3400+msgid "Network games using Games for Windows - Live API"
3401 msgstr ""
3402
3403 #: ../DEV_extra_translations/extra_translations.py:626
3404-msgid "P2P and Voice Chat"
3405-msgstr ""
3406-
3407-#: ../DEV_extra_translations/extra_translations.py:627
3408-msgid "Steamworks P2P Networking and Steam Voice Chat"
3409+msgid "Diablo II"
3410 msgstr ""
3411
3412 #: ../DEV_extra_translations/extra_translations.py:628
3413-msgid "Call of Duty"
3414+msgid "Liquid War"
3415 msgstr ""
3416
3417 #: ../DEV_extra_translations/extra_translations.py:629
3418-msgid "Additional Ports for Call of Duty: Modern Warfare 2 Multiplayer"
3419+msgid "An original shortest path algorithm and core concept"
3420 msgstr ""
3421
3422 #: ../DEV_extra_translations/extra_translations.py:630
3423-msgid "Urban Terror - 27960/udp"
3424+msgid "MSN Gaming Zone"
3425 msgstr ""
3426
3427 #: ../DEV_extra_translations/extra_translations.py:631
3428-msgid ""
3429-"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
3430-"port 27660"
3431+msgid "Games using MSN Gaming Zone API"
3432 msgstr ""
3433
3434 #: ../DEV_extra_translations/extra_translations.py:632
3435-msgid "Urban Terror - 27961/udp"
3436+msgid "F-22 Lightning 3"
3437 msgstr ""
3438
3439 #: ../DEV_extra_translations/extra_translations.py:633
3440-msgid ""
3441-"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
3442-"port 27961"
3443+#: ../DEV_extra_translations/extra_translations.py:647
3444+msgid "A F-22 Raptor simulation by NovaLogic"
3445 msgstr ""
3446
3447 #: ../DEV_extra_translations/extra_translations.py:634
3448-msgid "Urban Terror - 27962/udp"
3449+msgid "The Mana World"
3450 msgstr ""
3451
3452 #: ../DEV_extra_translations/extra_translations.py:635
3453-msgid ""
3454-"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
3455-"port 27962"
3456+msgid "A fantasy MMORPG"
3457 msgstr ""
3458
3459 #: ../DEV_extra_translations/extra_translations.py:636
3460-msgid "Urban Terror - 27963/udp"
3461+msgid "NFS TLDP NFS"
3462 msgstr ""
3463
3464 #: ../DEV_extra_translations/extra_translations.py:637
3465 msgid ""
3466-"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
3467-"port 27963"
3468+"Network File System protocol with static ports at 32765:32768 (some "
3469+"conflicts with popular games)"
3470 msgstr ""
3471
3472 #: ../DEV_extra_translations/extra_translations.py:638
3473-msgid "Heretic II"
3474+msgid "NFS Quota & TLDP NFS"
3475 msgstr ""
3476
3477 #: ../DEV_extra_translations/extra_translations.py:639
3478-msgid "Fantasy combat FPS by Raven Software"
3479+msgid ""
3480+"NFS with user/group filesystem usage quota support with static ports at "
3481+"32765:32769 (some conflicts with popular games)"
3482 msgstr ""
3483
3484 #: ../DEV_extra_translations/extra_translations.py:640
3485-msgid "MythTV"
3486-msgstr ""
3487-
3488-#: ../DEV_extra_translations/extra_translations.py:641
3489-msgid "MythTV backend"
3490+msgid "Quake"
3491 msgstr ""
3492
3493 #: ../DEV_extra_translations/extra_translations.py:642
3494-msgid "POP3"
3495+msgid "QuakeWorld"
3496 msgstr ""
3497
3498 #: ../DEV_extra_translations/extra_translations.py:643
3499-msgid "Post Office Protocol"
3500+msgid "An enhanced multiplayer version of Quake by id Software"
3501 msgstr ""
3502
3503 #: ../DEV_extra_translations/extra_translations.py:644
3504-msgid "POP3S"
3505-msgstr ""
3506-
3507-#: ../DEV_extra_translations/extra_translations.py:645
3508-#: ../DEV_extra_translations/extra_translations.py:649
3509-msgid "Secure mail server"
3510+msgid "Savage: The Battle for Newerth/Savage XR"
3511 msgstr ""
3512
3513 #: ../DEV_extra_translations/extra_translations.py:646
3514-msgid "IMAP"
3515-msgstr ""
3516-
3517-#: ../DEV_extra_translations/extra_translations.py:647
3518-msgid "Internet Message Access Protocol"
3519+msgid "F-22 Raptor"
3520 msgstr ""
3521
3522 #: ../DEV_extra_translations/extra_translations.py:648
3523-msgid "IMAPS"
3524+msgid "Dopewars"
3525 msgstr ""
3526
3527 #: ../DEV_extra_translations/extra_translations.py:650
3528-msgid "SMTP"
3529+msgid "Kohan: Immortal Sovereigns"
3530 msgstr ""
3531
3532 #: ../DEV_extra_translations/extra_translations.py:651
3533-msgid "Simple Mail Transfer Protocol"
3534+msgid "A real-time strategy game by TimeGate Studios"
3535+msgstr ""
3536+
3537+#: ../DEV_extra_translations/extra_translations.py:652
3538+msgid "0 A.D."
3539+msgstr ""
3540+
3541+#: ../DEV_extra_translations/extra_translations.py:653
3542+msgid "A free/open-source RTS game of ancient warfare from Wildfire Games"
3543 msgstr ""
3544
3545 #: ../DEV_extra_translations/extra_translations.py:654
3546-msgid "Network;Scanning;"
3547+msgid "Chocolate Doom"
3548 msgstr ""
3549
3550 #: ../DEV_extra_translations/extra_translations.py:655
3551-msgid "SANE Manual"
3552+msgid ""
3553+"A Doom source port that accurately reproduces the experience of Doom as it "
3554+"was played in the 1990s"
3555 msgstr ""
3556
3557 #: ../DEV_extra_translations/extra_translations.py:656
3558-msgid ""
3559-"Scanner Access Now Easy - scanner sharing server, manual ports without "
3560-"nf_conntrack_sane module"
3561+msgid "HPLIP"
3562 msgstr ""
3563
3564 #: ../DEV_extra_translations/extra_translations.py:657
3565-msgid "Vibe Streamer"
3566+msgid "HP Linux Imaging and Printing"
3567 msgstr ""
3568
3569 #: ../DEV_extra_translations/extra_translations.py:658
3570-msgid "A free MP3 streaming server"
3571+msgid "Network;Printing;"
3572 msgstr ""
3573
3574 #: ../DEV_extra_translations/extra_translations.py:659
3575-msgid "Frostwire"
3576+msgid "Skype - 23399"
3577 msgstr ""
3578
3579 #: ../DEV_extra_translations/extra_translations.py:660
3580-msgid "Frostwire peer-peer file sharing on default port"
3581+msgid "VoIP client"
3582 msgstr ""
3583
3584 #: ../DEV_extra_translations/extra_translations.py:661
3585-msgid "Network;File Transfer;P2P;"
3586-msgstr ""
3587-
3588-#: ../DEV_extra_translations/extra_translations.py:663
3589-msgid "PvPGN"
3590-msgstr ""
3591-
3592+msgid "Skype - 23398"
3593+msgstr ""
3594+
3595+#: ../DEV_extra_translations/extra_translations.py:662
3596 #: ../DEV_extra_translations/extra_translations.py:664
3597-msgid "Player vs Player Gaming Network server emulation based on bnetd"
3598-msgstr ""
3599-
3600-#: ../DEV_extra_translations/extra_translations.py:665
3601-msgid "PvPGN Address Translation"
3602-msgstr ""
3603-
3604 #: ../DEV_extra_translations/extra_translations.py:666
3605-msgid "Player vs Player Gaming Network Address translation port"
3606-msgstr ""
3607-
3608-#: ../DEV_extra_translations/extra_translations.py:667
3609-msgid "qBittorent"
3610-msgstr ""
3611-
3612 #: ../DEV_extra_translations/extra_translations.py:668
3613-msgid "Cross-platform BitTorrent client GUI written with Qt4"
3614-msgstr ""
3615-
3616 #: ../DEV_extra_translations/extra_translations.py:670
3617-msgid "Clonk"
3618+#: ../DEV_extra_translations/extra_translations.py:672
3619+#: ../DEV_extra_translations/extra_translations.py:674
3620+#: ../DEV_extra_translations/extra_translations.py:676
3621+#: ../DEV_extra_translations/extra_translations.py:678
3622+msgid "VoIP client, suggested alternate port"
3623+msgstr ""
3624+
3625+#: ../DEV_extra_translations/extra_translations.py:663
3626+msgid "Skype - 23397"
3627+msgstr ""
3628+
3629+#: ../DEV_extra_translations/extra_translations.py:665
3630+msgid "Skype - 23396"
3631+msgstr ""
3632+
3633+#: ../DEV_extra_translations/extra_translations.py:667
3634+msgid "Skype - 23395"
3635+msgstr ""
3636+
3637+#: ../DEV_extra_translations/extra_translations.py:669
3638+msgid "Skype - 23394"
3639 msgstr ""
3640
3641 #: ../DEV_extra_translations/extra_translations.py:671
3642-msgid "An action/RTS/platform game by RedWolf Design; standard ports"
3643-msgstr ""
3644-
3645-#: ../DEV_extra_translations/extra_translations.py:672
3646-msgid "Clonk Host"
3647+msgid "Skype - 23393"
3648 msgstr ""
3649
3650 #: ../DEV_extra_translations/extra_translations.py:673
3651-msgid "An action/RTS/platform game by RedWolf Design; host ports"
3652-msgstr ""
3653-
3654-#: ../DEV_extra_translations/extra_translations.py:674
3655-msgid "Clonk LAN"
3656+msgid "Skype - 23392"
3657 msgstr ""
3658
3659 #: ../DEV_extra_translations/extra_translations.py:675
3660-msgid "An action/RTS/platform game by RedWolf Design; LAN game discovery port"
3661-msgstr ""
3662-
3663-#: ../DEV_extra_translations/extra_translations.py:676
3664-msgid "Crossfire"
3665+msgid "Skype - 23391"
3666 msgstr ""
3667
3668 #: ../DEV_extra_translations/extra_translations.py:677
3669-msgid ""
3670-"An open source, cooperative multiplayer graphical RPG and adventure game"
3671-msgstr ""
3672-
3673-#: ../DEV_extra_translations/extra_translations.py:678
3674-msgid "Crossfire Metaserver"
3675+msgid "Skype - 23390"
3676 msgstr ""
3677
3678 #: ../DEV_extra_translations/extra_translations.py:679
3679-msgid "Metaserver for Crossfire RPG"
3680+msgid "Doom3"
3681 msgstr ""
3682
3683-#: ../DEV_extra_translations/extra_translations.py:680
3684-msgid "Delta Force 2"
3685+#: ../DEV_extra_translations/extra_translations.py:681
3686+msgid "Mechwarrior 4"
3687 msgstr ""
3688
3689 #: ../DEV_extra_translations/extra_translations.py:682
3690-msgid "GameRanger"
3691+msgid "A FPS based on the Fasa Battletech universe"
3692 msgstr ""
3693
3694 #: ../DEV_extra_translations/extra_translations.py:683
3695-msgid "A game server browser from GameRanger Technologies"
3696+msgid "Dropbox"
3697 msgstr ""
3698
3699 #: ../DEV_extra_translations/extra_translations.py:684
3700-msgid "Diablo"
3701+msgid ""
3702+"File hosting service, that offers cloud storage, file synchronization and "
3703+"client software"
3704+msgstr ""
3705+
3706+#: ../DEV_extra_translations/extra_translations.py:685
3707+msgid "Hexen II - 26900/udp"
3708 msgstr ""
3709
3710 #: ../DEV_extra_translations/extra_translations.py:686
3711-msgid "PennMUSH"
3712+msgid "A fantasy FPS by Raven Software, server on port 27660"
3713 msgstr ""
3714
3715 #: ../DEV_extra_translations/extra_translations.py:687
3716-msgid "A MUSH/MUD server"
3717+msgid "Hexen II - 26901/udp"
3718 msgstr ""
3719
3720 #: ../DEV_extra_translations/extra_translations.py:688
3721-msgid "gpsd"
3722+msgid "A fantasy FPS by Raven Software, server on port 26901"
3723 msgstr ""
3724
3725 #: ../DEV_extra_translations/extra_translations.py:689
3726-msgid "Interface daemon for GPS receivers"
3727+msgid "Hexen II - 26902/udp"
3728 msgstr ""
3729
3730 #: ../DEV_extra_translations/extra_translations.py:690
3731-msgid "Network;Geography;"
3732+msgid "A fantasy FPS by Raven Software, server on port 26902"
3733 msgstr ""
3734
3735 #: ../DEV_extra_translations/extra_translations.py:691
3736-msgid "DOSBox IPX"
3737+msgid "Hexen II - 26903/udp"
3738 msgstr ""
3739
3740 #: ../DEV_extra_translations/extra_translations.py:692
3741-#: ../DEV_extra_translations/extra_translations.py:695
3742-msgid "DOS system emulator"
3743+msgid "A fantasy FPS by Raven Software, server on port 26903"
3744 msgstr ""
3745
3746 #: ../DEV_extra_translations/extra_translations.py:693
3747-msgid "System;Emulator;"
3748+msgid "HexenWorld - 26950/udp"
3749 msgstr ""
3750
3751 #: ../DEV_extra_translations/extra_translations.py:694
3752-msgid "DOSBox Modem"
3753+msgid "HexenWorld server by Raven Software"
3754+msgstr ""
3755+
3756+#: ../DEV_extra_translations/extra_translations.py:695
3757+msgid "Postal 2"
3758 msgstr ""
3759
3760 #: ../DEV_extra_translations/extra_translations.py:696
3761-msgid "People Nearby"
3762-msgstr ""
3763-
3764-#: ../DEV_extra_translations/extra_translations.py:697
3765-msgid "People Nearby (Bonjour/Salut) functionality in Empathy"
3766+msgid "A FPS by Running with Scissors (uses the Unreal engine)"
3767 msgstr ""
3768
3769 #: ../DEV_extra_translations/extra_translations.py:698
3770-msgid "Bonjour"
3771+msgid ""
3772+"A free and open source team-based first-person shooter with real-time "
3773+"strategy elements"
3774 msgstr ""
3775
3776 #: ../DEV_extra_translations/extra_translations.py:699
3777-msgid "Bonjour protocol"
3778+msgid "usbip"
3779 msgstr ""
3780
3781 #: ../DEV_extra_translations/extra_translations.py:700
3782-msgid "MSN Chat"
3783-msgstr ""
3784-
3785-#: ../DEV_extra_translations/extra_translations.py:701
3786-msgid "MSN chat protocol (with file transfer and voice)"
3787-msgstr ""
3788-
3789-#: ../DEV_extra_translations/extra_translations.py:702
3790-msgid "MSN Chat (SSL)"
3791+msgid "A Peripheral Bus Extension for Device Sharing over IP Network"
3792 msgstr ""
3793
3794 #: ../DEV_extra_translations/extra_translations.py:703
3795-msgid "MSN chat protocol SSL"
3796+msgid "UFO: Alien Invasion"
3797 msgstr ""
3798
3799 #: ../DEV_extra_translations/extra_translations.py:704
3800-msgid "AIM Talk"
3801+msgid "An open-source 3D RTS inspired by X-COM"
3802 msgstr ""
3803
3804 #: ../DEV_extra_translations/extra_translations.py:705
3805-msgid "AIM talk protocol"
3806+msgid "The Battle for Wesnoth"
3807 msgstr ""
3808
3809 #: ../DEV_extra_translations/extra_translations.py:706
3810-msgid "Yahoo Chat"
3811+msgid "Turn-based tactical strategy game"
3812 msgstr ""
3813
3814 #: ../DEV_extra_translations/extra_translations.py:707
3815-msgid "Yahoo chat protocol"
3816+msgid "Warcraft II Battle.net"
3817 msgstr ""
3818
3819 #: ../DEV_extra_translations/extra_translations.py:708
3820-msgid "Steel Storm"
3821+msgid "Strategy game by Blizzard Entertainment"
3822 msgstr ""
3823
3824 #: ../DEV_extra_translations/extra_translations.py:709
3825-msgid ""
3826-"A top-down arcade shooter with hovertanks by Kot-in-Action Creative Artel"
3827+msgid "Delta Force: BHD"
3828 msgstr ""
3829
3830 #: ../DEV_extra_translations/extra_translations.py:710
3831-msgid "Tor Normal"
3832-msgstr ""
3833-
3834-#: ../DEV_extra_translations/extra_translations.py:711
3835-msgid "Tor anonymity network"
3836+msgid "Black Hawk Down. A FPS combat game by NovaLogic"
3837 msgstr ""
3838
3839 #: ../DEV_extra_translations/extra_translations.py:712
3840-msgid "DEFCON"
3841+msgid "Trivial File Transfer Protocol"
3842 msgstr ""
3843
3844 #: ../DEV_extra_translations/extra_translations.py:713
3845-msgid "A thermo-nuclear war strategy game from Introversion Software"
3846+msgid "SiN"
3847 msgstr ""
3848
3849 #: ../DEV_extra_translations/extra_translations.py:714
3850-msgid "Games for Windows - Live"
3851+msgid "A FPS by Ritual Entertainment"
3852 msgstr ""
3853
3854 #: ../DEV_extra_translations/extra_translations.py:715
3855-msgid "Network games using Games for Windows - Live API"
3856+msgid "Assault Cube"
3857 msgstr ""
3858
3859 #: ../DEV_extra_translations/extra_translations.py:716
3860-msgid "0verkill"
3861+msgid "A free, multiplayer, first-person shooter game"
3862 msgstr ""
3863
3864 #: ../DEV_extra_translations/extra_translations.py:717
3865-msgid "An ASCII-art 2D deathmatch game"
3866+msgid "Nagios Plugin"
3867 msgstr ""
3868
3869 #: ../DEV_extra_translations/extra_translations.py:718
3870-msgid "USB Redirector"
3871+msgid "Remote Plugin Executor"
3872 msgstr ""
3873
3874 #: ../DEV_extra_translations/extra_translations.py:719
3875-msgid "USB device sharing system from INCENTIVES Pro"
3876+msgid "AMANDA"
3877 msgstr ""
3878
3879 #: ../DEV_extra_translations/extra_translations.py:720
3880-msgid "Aleph One"
3881+msgid "Backup server from Zmanda; standard port with nf_conntrack_amanda"
3882 msgstr ""
3883
3884 #: ../DEV_extra_translations/extra_translations.py:721
3885-msgid "An enhanced port of Marathon 2: Durandal from Bungie Software"
3886+msgid "Network;Archiving;"
3887 msgstr ""
3888
3889 #: ../DEV_extra_translations/extra_translations.py:722
3890-msgid "WINE: Warcraft III"
3891+msgid "Amule"
3892 msgstr ""
3893
3894-#: ../DEV_extra_translations/extra_translations.py:724
3895-msgid "WINE: Warcraft III all ports"
3896+#: ../DEV_extra_translations/extra_translations.py:723
3897+msgid ""
3898+"Free peer-to-peer file sharing application that works with the EDonkey "
3899+"network and the Kad network"
3900 msgstr ""
3901
3902 #: ../DEV_extra_translations/extra_translations.py:725
3903-msgid "Warcraft III with 6112-6119 TCP ports open"
3904+msgid "YS FLIGHT SIMULATION 2000"
3905 msgstr ""
3906
3907 #: ../DEV_extra_translations/extra_translations.py:726
3908-msgid "VNC"
3909+msgid "A 3D flight simulator"
3910 msgstr ""
3911
3912 #: ../DEV_extra_translations/extra_translations.py:727
3913-msgid "Virtual Network Computing"
3914+msgid "Globulation 2"
3915+msgstr ""
3916+
3917+#: ../DEV_extra_translations/extra_translations.py:728
3918+msgid "A RTS"
3919+msgstr ""
3920+
3921+#: ../DEV_extra_translations/extra_translations.py:729
3922+msgid "D2X-XL"
3923 msgstr ""
3924
3925 #: ../DEV_extra_translations/extra_translations.py:730
3926-msgid "Team-based SciFi/alien FPS from Dark Legion Development"
3927+msgid "A source port of Descent II, the 3D Flying FPS by Outrage Entertainment"
3928 msgstr ""
3929
3930 #: ../DEV_extra_translations/extra_translations.py:731
3931-msgid "ThinkTanks"
3932+msgid "Steel Storm"
3933 msgstr ""
3934
3935 #: ../DEV_extra_translations/extra_translations.py:732
3936 msgid ""
3937-"A 3D tank combat game by BraveTree Productions using the Torque Game Engine"
3938+"A top-down arcade shooter with hovertanks by Kot-in-Action Creative Artel"
3939 msgstr ""
3940
3941 #: ../DEV_extra_translations/extra_translations.py:733
3942-msgid "Dofus"
3943+msgid "CUPS"
3944 msgstr ""
3945
3946 #: ../DEV_extra_translations/extra_translations.py:734
3947-msgid "A massively multiplayer online role-playing game"
3948+msgid "Modular printing system for Unix-like computer operating systems"
3949 msgstr ""
3950
3951 #: ../DEV_extra_translations/extra_translations.py:735
3952-msgid "XPilot"
3953+msgid "EDuke32"
3954 msgstr ""
3955
3956 #: ../DEV_extra_translations/extra_translations.py:736
3957+msgid "An enhanced version of Duke Nukem 3D"
3958+msgstr ""
3959+
3960+#: ../DEV_extra_translations/extra_translations.py:737
3961+msgid "Legends"
3962+msgstr ""
3963+
3964 #: ../DEV_extra_translations/extra_translations.py:738
3965+msgid "A FPS based on the Torque Engine"
3966+msgstr ""
3967+
3968+#: ../DEV_extra_translations/extra_translations.py:739
3969+msgid "Battlefield 1942"
3970+msgstr ""
3971+
3972 #: ../DEV_extra_translations/extra_translations.py:740
3973+msgid "A WWII FPS from Digital Illusions CE"
3974+msgstr ""
3975+
3976+#: ../DEV_extra_translations/extra_translations.py:741
3977+msgid "Battlefield 1942 Console"
3978+msgstr ""
3979+
3980 #: ../DEV_extra_translations/extra_translations.py:742
3981+msgid "The RemoteConsole administration tool for Battlefield 1942"
3982+msgstr ""
3983+
3984+#: ../DEV_extra_translations/extra_translations.py:743
3985+msgid "Unreal Tournament 2004"
3986+msgstr ""
3987+
3988 #: ../DEV_extra_translations/extra_translations.py:744
3989-msgid "A 2D space combat game"
3990-msgstr ""
3991-
3992-#: ../DEV_extra_translations/extra_translations.py:737
3993-msgid "XPilot 2-players"
3994-msgstr ""
3995-
3996-#: ../DEV_extra_translations/extra_translations.py:739
3997-msgid "XPilot 4-players"
3998-msgstr ""
3999-
4000-#: ../DEV_extra_translations/extra_translations.py:741
4001-msgid "XPilot 8-players"
4002-msgstr ""
4003-
4004-#: ../DEV_extra_translations/extra_translations.py:743
4005-msgid "XPilot 16-players"
4006+msgid "A FPS by Epic Games"
4007 msgstr ""
4008
4009 #: ../DEV_extra_translations/extra_translations.py:745
4010-msgid "Vuze Remote"
4011+msgid "Unreal Tournament 2004 Admin"
4012 msgstr ""
4013
4014 #: ../DEV_extra_translations/extra_translations.py:746
4015-msgid "Remote control for Vuze"
4016+msgid "Web-based administration for the FPS by Epic Games"
4017+msgstr ""
4018+
4019+#: ../DEV_extra_translations/extra_translations.py:747
4020+msgid "Wakfu"
4021 msgstr ""
4022
4023 #: ../DEV_extra_translations/extra_translations.py:748
4024-msgid "Wormux"
4025+msgid "An online tactical turn-based MMORPG"
4026+msgstr ""
4027+
4028+#: ../DEV_extra_translations/extra_translations.py:749
4029+msgid "NSClient++"
4030 msgstr ""
4031
4032 #: ../DEV_extra_translations/extra_translations.py:750
4033-msgid "Vuze"
4034+msgid "Used to monitor Windows machines from a Nagios Server"
4035 msgstr ""
4036
4037 #: ../DEV_extra_translations/extra_translations.py:751
4038-msgid ""
4039-"BitTorrent client used to transfer files via the BitTorrent protocol. Vuze "
4040-"uses the Azureus Engine"
4041+msgid "DHCP"
4042 msgstr ""
4043
4044 #: ../DEV_extra_translations/extra_translations.py:752
4045-msgid ""
4046-"You need to add the main random port too that you selected the first time"
4047+msgid "Dynamic Host Configuration Protocol"
4048 msgstr ""
4049
4050 #: ../DEV_extra_translations/extra_translations.py:753
4051-msgid "OpenMeetings Secure RTMP"
4052+msgid "Prey"
4053 msgstr ""
4054
4055 #: ../DEV_extra_translations/extra_translations.py:754
4056-msgid "OpenMeetings Real Time Messaging Protocol over SSL"
4057+msgid "A SciFi FPS action adventure by 3D Realms"
4058 msgstr ""
4059
4060 #: ../DEV_extra_translations/extra_translations.py:755
4061-msgid "Network;Video Conference;"
4062-msgstr ""
4063-
4064-#: ../DEV_extra_translations/extra_translations.py:756
4065-msgid "OpenMeetings Tunneled RTMP"
4066+msgid "WINE: Warcraft III"
4067 msgstr ""
4068
4069 #: ../DEV_extra_translations/extra_translations.py:757
4070-msgid "OpenMeetings Real Time Messaging Protocol over HTTP"
4071+msgid "WINE: Warcraft III all ports"
4072 msgstr ""
4073
4074 #: ../DEV_extra_translations/extra_translations.py:758
4075-msgid "OpenMeetings HTTP"
4076+msgid "Warcraft III with 6112-6119 TCP ports open"
4077 msgstr ""
4078
4079 #: ../DEV_extra_translations/extra_translations.py:759
4080-msgid "OpenMeetings HTTP server"
4081+msgid "IPP"
4082 msgstr ""
4083
4084 #: ../DEV_extra_translations/extra_translations.py:760
4085-msgid "OpenMeetings DSP"
4086+msgid "Internet Printing Protocol"
4087 msgstr ""
4088
4089 #: ../DEV_extra_translations/extra_translations.py:761
4090-msgid "OpenMeetings Desktop Sharing Protocol (ODSP)"
4091+msgid "SAMBA"
4092 msgstr ""
4093
4094 #: ../DEV_extra_translations/extra_translations.py:762
4095-msgid "VNC server display :0"
4096+msgid ""
4097+"SMB/CIFS protocol for Unix systems, allowing you to serve files and printers "
4098+"to Windows, NT, OS/2 and DOS clients"
4099 msgstr ""
4100
4101 #: ../DEV_extra_translations/extra_translations.py:763
4102-msgid "Virtual Network Computing standard server display :0"
4103+msgid "Network;Services;|Network;File Transfer"
4104+msgstr ""
4105+
4106+#: ../DEV_extra_translations/extra_translations.py:764
4107+msgid "XMPP"
4108 msgstr ""
4109
4110 #: ../DEV_extra_translations/extra_translations.py:765
4111-#: ../DEV_extra_translations/extra_translations.py:777
4112-msgid "VNC displays :0-:1"
4113+msgid "Extensible Messaging and Presence Protocol client connection (Jabber)"
4114 msgstr ""
4115
4116 #: ../DEV_extra_translations/extra_translations.py:766
4117-msgid "Virtual Network Computing standard server displays :0 through :1"
4118+msgid "XMPP SSL"
4119+msgstr ""
4120+
4121+#: ../DEV_extra_translations/extra_translations.py:767
4122+msgid ""
4123+"Extensible Messaging and Presence Protocol (Jabber) client connection with "
4124+"SSL encryption"
4125 msgstr ""
4126
4127 #: ../DEV_extra_translations/extra_translations.py:768
4128-#: ../DEV_extra_translations/extra_translations.py:780
4129-msgid "VNC displays :0-:3"
4130+msgid "XMPP Interserver"
4131 msgstr ""
4132
4133 #: ../DEV_extra_translations/extra_translations.py:769
4134-msgid "Virtual Network Computing standard server displays :0 through :3"
4135+msgid "Extensible Messaging and Presence Protocol server-server connection"
4136+msgstr ""
4137+
4138+#: ../DEV_extra_translations/extra_translations.py:770
4139+msgid "XMPP Serverless"
4140 msgstr ""
4141
4142 #: ../DEV_extra_translations/extra_translations.py:771
4143-#: ../DEV_extra_translations/extra_translations.py:783
4144-msgid "VNC displays :0-:7"
4145+msgid ""
4146+"Extensible Messaging and Presence Protocol link-local messaging/serverless "
4147+"messaging"
4148 msgstr ""
4149
4150 #: ../DEV_extra_translations/extra_translations.py:772
4151-msgid "Virtual Network Computing standard server displays :0 through :7"
4152+msgid "STUN"
4153+msgstr ""
4154+
4155+#: ../DEV_extra_translations/extra_translations.py:773
4156+msgid "Session Traversal Utilities for NAT"
4157 msgstr ""
4158
4159 #: ../DEV_extra_translations/extra_translations.py:774
4160-msgid "VNC http server display :0"
4161+msgid "STUN TLS"
4162 msgstr ""
4163
4164 #: ../DEV_extra_translations/extra_translations.py:775
4165-msgid "Virtual Network Computing http server display :0"
4166+msgid "Session Traversal Utilities for NAT with TLS encryption"
4167+msgstr ""
4168+
4169+#: ../DEV_extra_translations/extra_translations.py:776
4170+msgid "Tor Normal"
4171+msgstr ""
4172+
4173+#: ../DEV_extra_translations/extra_translations.py:777
4174+msgid "Tor anonymity network"
4175 msgstr ""
4176
4177 #: ../DEV_extra_translations/extra_translations.py:778
4178-msgid "Virtual Network Computing http server displays :0 through :1"
4179+msgid "Webcam_server"
4180+msgstr ""
4181+
4182+#: ../DEV_extra_translations/extra_translations.py:779
4183+msgid "A webcam viewer for web servers with an optional Java-based viewer"
4184+msgstr ""
4185+
4186+#: ../DEV_extra_translations/extra_translations.py:780
4187+msgid "Network;Audio Video;Video;"
4188 msgstr ""
4189
4190 #: ../DEV_extra_translations/extra_translations.py:781
4191-msgid "Virtual Network Computing http server displays :0 through :3"
4192+msgid "MythTV"
4193+msgstr ""
4194+
4195+#: ../DEV_extra_translations/extra_translations.py:782
4196+msgid "MythTV backend"
4197+msgstr ""
4198+
4199+#: ../DEV_extra_translations/extra_translations.py:783
4200+#: ../DEV_extra_translations/extra_translations.py:820
4201+msgid "SANE scanner"
4202 msgstr ""
4203
4204 #: ../DEV_extra_translations/extra_translations.py:784
4205-msgid "Virtual Network Computing http server displays :0 through :7"
4206+#: ../DEV_extra_translations/extra_translations.py:821
4207+msgid "Scanner Access Now Easy - scanner sharing server"
4208+msgstr ""
4209+
4210+#: ../DEV_extra_translations/extra_translations.py:785
4211+msgid "Network;Scanning;"
4212 msgstr ""
4213
4214 #: ../DEV_extra_translations/extra_translations.py:786
4215-msgid "LPD"
4216+msgid "SANE Manual"
4217 msgstr ""
4218
4219 #: ../DEV_extra_translations/extra_translations.py:787
4220-msgid "LPD server"
4221-msgstr ""
4222-
4223-#: ../DEV_extra_translations/extra_translations.py:790
4224-msgid "Return To Castle Wolfenstein"
4225+msgid ""
4226+"Scanner Access Now Easy - scanner sharing server, manual ports without "
4227+"nf_conntrack_sane module"
4228+msgstr ""
4229+
4230+#: ../DEV_extra_translations/extra_translations.py:788
4231+msgid "Deluge Torrent"
4232+msgstr ""
4233+
4234+#: ../DEV_extra_translations/extra_translations.py:789
4235+msgid "Cross-platform BitTorrent client written with Python and GTK+"
4236 msgstr ""
4237
4238 #: ../DEV_extra_translations/extra_translations.py:791
4239-msgid ""
4240-"WWII FPS and sequel from Splash Damage, Gray Matter Interactive, Nerve "
4241-"Software, and id Software"
4242-msgstr ""
4243-
4244 #: ../DEV_extra_translations/extra_translations.py:792
4245-msgid "Kohan: Immortal Sovereigns"
4246+msgid "GameSpy"
4247 msgstr ""
4248
4249 #: ../DEV_extra_translations/extra_translations.py:793
4250-msgid "A real-time strategy game by TimeGate Studios"
4251+msgid "GameSpy Arcade"
4252 msgstr ""
4253
4254 #: ../DEV_extra_translations/extra_translations.py:794
4255-msgid "Frozen Bubble"
4256+msgid "GameSpy Arcade gaming network"
4257 msgstr ""
4258
4259 #: ../DEV_extra_translations/extra_translations.py:795
4260-msgid "A clone of Puzzle Bobble/Bust-a-Move"
4261+msgid "Transmission"
4262 msgstr ""
4263
4264 #: ../DEV_extra_translations/extra_translations.py:796
4265-msgid "Serious Sam II"
4266-msgstr ""
4267-
4268-#: ../DEV_extra_translations/extra_translations.py:797
4269-#: ../DEV_extra_translations/extra_translations.py:826
4270-msgid "FPS by Croteam"
4271+msgid ""
4272+"BitTorrent client which features a simple interface on top of a cross-"
4273+"platform backend"
4274 msgstr ""
4275
4276 #: ../DEV_extra_translations/extra_translations.py:798
4277-msgid "Savage: The Battle for Newerth/Savage XR"
4278+msgid "Spring game engine"
4279+msgstr ""
4280+
4281+#: ../DEV_extra_translations/extra_translations.py:799
4282+msgid ""
4283+"An enhanced clone of RTS game Total Annihilation by Cavedog Entertainment"
4284 msgstr ""
4285
4286 #: ../DEV_extra_translations/extra_translations.py:800
4287-msgid "Skype Normal"
4288+msgid "Drakan: Order of the Flame"
4289 msgstr ""
4290
4291 #: ../DEV_extra_translations/extra_translations.py:801
4292-msgid "Proprietary Voice over IP service and software application"
4293+msgid "A dragon-riding action-adventure from Surreal Software"
4294 msgstr ""
4295
4296 #: ../DEV_extra_translations/extra_translations.py:802
4297-msgid "MiG-29 Fulcrum"
4298+msgid "TeamSpeak 2 voice"
4299 msgstr ""
4300
4301 #: ../DEV_extra_translations/extra_translations.py:803
4302-msgid "A Mikoyan-Gurevich MiG-29 Fulcrum simulation by NovaLogic"
4303+msgid "TeamSpeak 2 voice service"
4304 msgstr ""
4305
4306 #: ../DEV_extra_translations/extra_translations.py:804
4307-msgid "iMaze"
4308+msgid "TeamSpeak 2 web"
4309 msgstr ""
4310
4311 #: ../DEV_extra_translations/extra_translations.py:805
4312-msgid "A maze combat game in 3D"
4313+msgid "TeamSpeak 2 web interface"
4314 msgstr ""
4315
4316 #: ../DEV_extra_translations/extra_translations.py:806
4317-msgid "Webcam_server"
4318-msgstr ""
4319-
4320 #: ../DEV_extra_translations/extra_translations.py:807
4321-msgid "A webcam viewer for web servers with an optional Java-based viewer"
4322+msgid "TeamSpeak 2 TCP query"
4323 msgstr ""
4324
4325 #: ../DEV_extra_translations/extra_translations.py:808
4326-msgid "Network;Audio Video;Video;"
4327+msgid "Nexuiz"
4328 msgstr ""
4329
4330 #: ../DEV_extra_translations/extra_translations.py:809
4331-msgid "CUPS"
4332+msgid "A FPS based on Darkplaces/Quake engine by id Software"
4333 msgstr ""
4334
4335 #: ../DEV_extra_translations/extra_translations.py:810
4336-msgid "Modular printing system for Unix-like computer operating systems"
4337+msgid "Murmur"
4338 msgstr ""
4339
4340 #: ../DEV_extra_translations/extra_translations.py:811
4341-msgid "GNUnet"
4342+msgid "Murmur voice chat server (counterpart to Mumble client)"
4343 msgstr ""
4344
4345 #: ../DEV_extra_translations/extra_translations.py:812
4346-msgid ""
4347-"A decentralized peer-to-peer networking framework with file sharing and "
4348-"messaging"
4349+msgid "PennMUSH"
4350 msgstr ""
4351
4352 #: ../DEV_extra_translations/extra_translations.py:813
4353-msgid "NFS (Chris Lowth)"
4354+msgid "A MUSH/MUD server"
4355 msgstr ""
4356
4357 #: ../DEV_extra_translations/extra_translations.py:814
4358-msgid ""
4359-"Network File System protocol with static ports at 4000:4002 (some conflicts "
4360-"with popular games; statd broadcast on random port)"
4361+msgid "Tether"
4362 msgstr ""
4363
4364 #: ../DEV_extra_translations/extra_translations.py:815
4365-msgid "NFS Quota (Chris Lowth)"
4366+msgid "A clone of strategy game Moonbase Commander by Humongous Entertainment"
4367 msgstr ""
4368
4369 #: ../DEV_extra_translations/extra_translations.py:816
4370-msgid ""
4371-"NFS with user/group filesystem usage quota support with static ports at "
4372-"4000:4003 (some conflicts with popular games; statd broadcast on random port)"
4373+msgid "FreeOrion"
4374 msgstr ""
4375
4376 #: ../DEV_extra_translations/extra_translations.py:817
4377-msgid "TeamSpeak 2 voice"
4378+msgid ""
4379+"A turn-based 4X strategy game inspired by Master of Orion from MicroProse"
4380 msgstr ""
4381
4382 #: ../DEV_extra_translations/extra_translations.py:818
4383-msgid "TeamSpeak 2 voice service"
4384+msgid "NAT"
4385 msgstr ""
4386
4387 #: ../DEV_extra_translations/extra_translations.py:819
4388-msgid "TeamSpeak 2 web"
4389-msgstr ""
4390-
4391-#: ../DEV_extra_translations/extra_translations.py:820
4392-msgid "TeamSpeak 2 web interface"
4393-msgstr ""
4394-
4395-#: ../DEV_extra_translations/extra_translations.py:821
4396+msgid "Port Mapping Protocol"
4397+msgstr ""
4398+
4399 #: ../DEV_extra_translations/extra_translations.py:822
4400-msgid "TeamSpeak 2 TCP query"
4401+msgid "Frozen Bubble"
4402 msgstr ""
4403
4404 #: ../DEV_extra_translations/extra_translations.py:823
4405-msgid "DXX-Rebirth"
4406+msgid "A clone of Puzzle Bobble/Bust-a-Move"
4407 msgstr ""
4408
4409 #: ../DEV_extra_translations/extra_translations.py:824
4410-msgid "A source port of Descent, the 3D Flying FPS by Outrage Entertainment"
4411+msgid "BitTorrent Minimum"
4412 msgstr ""
4413
4414 #: ../DEV_extra_translations/extra_translations.py:825
4415-msgid "Serious Sam"
4416+#: ../DEV_extra_translations/extra_translations.py:828
4417+#: ../DEV_extra_translations/extra_translations.py:831
4418+msgid "BitTorrent peer-peer file sharing"
4419 msgstr ""
4420
4421 #: ../DEV_extra_translations/extra_translations.py:827
4422-msgid "FreeLords"
4423-msgstr ""
4424-
4425-#: ../DEV_extra_translations/extra_translations.py:828
4426-msgid "A clone of Warlords"
4427-msgstr ""
4428-
4429-#: ../DEV_extra_translations/extra_translations.py:829
4430-msgid "Vendetta Online"
4431+msgid "BitTorrent"
4432 msgstr ""
4433
4434 #: ../DEV_extra_translations/extra_translations.py:830
4435-msgid ""
4436-"A twitch-based, science fiction massively multiplayer online role-playing "
4437-"game (MMORPG)"
4438-msgstr ""
4439-
4440-#: ../DEV_extra_translations/extra_translations.py:831
4441-msgid "LBreakout2 - 8001/udp"
4442-msgstr ""
4443-
4444-#: ../DEV_extra_translations/extra_translations.py:832
4445+msgid "BitTorrent Full"
4446+msgstr ""
4447+
4448+#: ../DEV_extra_translations/extra_translations.py:833
4449+msgid "Sid Meier's Civilization IV"
4450+msgstr ""
4451+
4452 #: ../DEV_extra_translations/extra_translations.py:834
4453-msgid "A Breakout clone"
4454-msgstr ""
4455-
4456-#: ../DEV_extra_translations/extra_translations.py:833
4457-msgid "LBreakout2 - 2002/udp"
4458+msgid "A turn-based strategy game from Firaxis Games"
4459 msgstr ""
4460
4461 #: ../DEV_extra_translations/extra_translations.py:835
4462-msgid "Bos Wars"
4463-msgstr ""
4464-
4465-#: ../DEV_extra_translations/extra_translations.py:836
4466-msgid "A futuristic RTS based on the Stratagus engine"
4467+msgid "Serious Sam II"
4468 msgstr ""
4469
4470 #: ../DEV_extra_translations/extra_translations.py:837
4471-msgid "NFS TLDP NFS"
4472+msgid "RDP"
4473 msgstr ""
4474
4475 #: ../DEV_extra_translations/extra_translations.py:838
4476-msgid ""
4477-"Network File System protocol with static ports at 32765:32768 (some "
4478-"conflicts with popular games)"
4479-msgstr ""
4480-
4481-#: ../DEV_extra_translations/extra_translations.py:839
4482-msgid "NFS Quota & TLDP NFS"
4483+msgid "Remote Desktop Protocols"
4484 msgstr ""
4485
4486 #: ../DEV_extra_translations/extra_translations.py:840
4487-msgid ""
4488-"NFS with user/group filesystem usage quota support with static ports at "
4489-"32765:32769 (some conflicts with popular games)"
4490+msgid "Knights and Merchants TSK"
4491 msgstr ""
4492
4493 #: ../DEV_extra_translations/extra_translations.py:841
4494+msgid "A RTS by Joymania"
4495+msgstr ""
4496+
4497+#: ../DEV_extra_translations/extra_translations.py:842
4498+msgid "Scorched 3D server"
4499+msgstr ""
4500+
4501+#: ../DEV_extra_translations/extra_translations.py:843
4502+msgid "A modernization of the classic DOS game Scorched Earth"
4503+msgstr ""
4504+
4505+#: ../DEV_extra_translations/extra_translations.py:844
4506+msgid "Windows Messenger"
4507+msgstr ""
4508+
4509+#: ../DEV_extra_translations/extra_translations.py:845
4510+msgid ""
4511+"Windows Messenger/Windows Live Messenger application sharing and whiteboard "
4512+"(requires SIP)"
4513+msgstr ""
4514+
4515+#: ../DEV_extra_translations/extra_translations.py:846
4516+msgid "Windows Messenger File"
4517+msgstr ""
4518+
4519+#: ../DEV_extra_translations/extra_translations.py:847
4520+msgid "Windows Messenger/MSN Messenger file transfer"
4521+msgstr ""
4522+
4523+#: ../DEV_extra_translations/extra_translations.py:848
4524+msgid "Windows Messenger Assistance"
4525+msgstr ""
4526+
4527+#: ../DEV_extra_translations/extra_translations.py:849
4528+msgid "Remote Assistance/Remote Desktop Protocol/Terminal Services (RDP)"
4529+msgstr ""
4530+
4531+#: ../DEV_extra_translations/extra_translations.py:851
4532+msgid "Comanche 4"
4533+msgstr ""
4534+
4535+#: ../DEV_extra_translations/extra_translations.py:852
4536+msgid "A Comanche RAH-66 helicopter simulation by NovaLogic"
4537+msgstr ""
4538+
4539+#: ../DEV_extra_translations/extra_translations.py:853
4540+msgid "F-16 Multirole Fighter"
4541+msgstr ""
4542+
4543+#: ../DEV_extra_translations/extra_translations.py:854
4544+msgid "A F-16 simulation by NovaLogic"
4545+msgstr ""
4546+
4547+#: ../DEV_extra_translations/extra_translations.py:855
4548 msgid "Authentication is required to run the Firewall Configuration"
4549 msgstr ""
4550
4551@@ -3232,7 +3288,7 @@
4552 msgstr ""
4553
4554 #: ../data/ui/update.ui.h:13 ../data/ui/add.ui.h:28
4555-#: ../gufw/gufw/view/gufw.py:196
4556+#: ../gufw/gufw/view/gufw.py:199
4557 msgid "Log"
4558 msgstr ""
4559
4560@@ -3273,7 +3329,7 @@
4561 msgstr ""
4562
4563 #: ../data/ui/update.ui.h:23 ../data/ui/add.ui.h:35
4564-#: ../gufw/gufw/view/gufw.py:260
4565+#: ../gufw/gufw/view/gufw.py:263
4566 msgid "Port"
4567 msgstr ""
4568
4569@@ -3566,14 +3622,26 @@
4570 msgstr ""
4571
4572 #: ../data/ui/gufw.ui.h:36
4573+msgid "Pause Listening Report"
4574+msgstr ""
4575+
4576+#: ../data/ui/gufw.ui.h:37
4577+msgid "Pause"
4578+msgstr ""
4579+
4580+#: ../data/ui/gufw.ui.h:38
4581+msgid "See current Listening Report"
4582+msgstr ""
4583+
4584+#: ../data/ui/gufw.ui.h:39
4585 msgid "Create a rule from the listening report..."
4586 msgstr ""
4587
4588-#: ../data/ui/gufw.ui.h:37
4589+#: ../data/ui/gufw.ui.h:40
4590 msgid "Copy log to clipboard"
4591 msgstr ""
4592
4593-#: ../data/ui/gufw.ui.h:38
4594+#: ../data/ui/gufw.ui.h:41
4595 msgid "Remove log"
4596 msgstr ""
4597
4598@@ -3679,7 +3747,7 @@
4599 msgid "The firewall has to be enabled first"
4600 msgstr ""
4601
4602-#: ../gufw/gufw/view/add.py:406 ../gufw/gufw/view/gufw.py:569
4603+#: ../gufw/gufw/view/add.py:406 ../gufw/gufw/view/gufw.py:584
4604 msgid "Error running: "
4605 msgstr ""
4606
4607@@ -3804,433 +3872,433 @@
4608 msgid "Refresh Interval: "
4609 msgstr ""
4610
4611-#: ../gufw/gufw/view/gufw.py:125 ../gufw/gufw/view/gufw.py:180
4612-#: ../gufw/gufw/view/gufw.py:302
4613+#: ../gufw/gufw/view/gufw.py:125 ../gufw/gufw/view/gufw.py:183
4614+#: ../gufw/gufw/view/gufw.py:307
4615 msgid "Getting started"
4616 msgstr ""
4617
4618-#: ../gufw/gufw/view/gufw.py:186
4619+#: ../gufw/gufw/view/gufw.py:189
4620 msgid "Rules"
4621 msgstr ""
4622
4623-#: ../gufw/gufw/view/gufw.py:191
4624+#: ../gufw/gufw/view/gufw.py:194
4625 msgid "Report"
4626 msgstr ""
4627
4628 #. Rules
4629 #. Listening Report
4630-#: ../gufw/gufw/view/gufw.py:233 ../gufw/gufw/view/gufw.py:250
4631+#: ../gufw/gufw/view/gufw.py:236 ../gufw/gufw/view/gufw.py:253
4632 msgid "NÂș"
4633 msgstr ""
4634
4635-#: ../gufw/gufw/view/gufw.py:238
4636+#: ../gufw/gufw/view/gufw.py:241
4637 msgid "Rule"
4638 msgstr ""
4639
4640-#: ../gufw/gufw/view/gufw.py:243
4641+#: ../gufw/gufw/view/gufw.py:246
4642 msgid "Name"
4643 msgstr ""
4644
4645-#: ../gufw/gufw/view/gufw.py:255
4646+#: ../gufw/gufw/view/gufw.py:258
4647 msgid "Protocol"
4648 msgstr ""
4649
4650-#: ../gufw/gufw/view/gufw.py:265
4651+#: ../gufw/gufw/view/gufw.py:268
4652 msgid "Address"
4653 msgstr ""
4654
4655-#: ../gufw/gufw/view/gufw.py:270
4656+#: ../gufw/gufw/view/gufw.py:273
4657 msgid "Application"
4658 msgstr ""
4659
4660-#: ../gufw/gufw/view/gufw.py:303
4661+#: ../gufw/gufw/view/gufw.py:308
4662 msgid ""
4663 "An uncomplicated way to manage your firewall, powered by ufw. Easy, simple, "
4664 "nice and useful! :)"
4665 msgstr ""
4666
4667-#: ../gufw/gufw/view/gufw.py:304
4668+#: ../gufw/gufw/view/gufw.py:309
4669 msgid "Basic"
4670 msgstr ""
4671
4672-#: ../gufw/gufw/view/gufw.py:305
4673+#: ../gufw/gufw/view/gufw.py:310
4674 msgid "FAQ"
4675 msgstr ""
4676
4677-#: ../gufw/gufw/view/gufw.py:306
4678+#: ../gufw/gufw/view/gufw.py:311
4679 msgid ""
4680 "If you are a normal user, you will be safe with this setting (Status=On, "
4681 "Incoming=Deny, Outgoing=Allow). Remember to append allow rules for your P2P "
4682 "apps:"
4683 msgstr ""
4684
4685-#: ../gufw/gufw/view/gufw.py:307
4686+#: ../gufw/gufw/view/gufw.py:312
4687 msgid "You can rename your profiles with just 2 clicks on them:"
4688 msgstr ""
4689
4690-#: ../gufw/gufw/view/gufw.py:308
4691+#: ../gufw/gufw/view/gufw.py:313
4692 msgid "The Rule Name will help you to identify your rules in the future:"
4693 msgstr ""
4694
4695-#: ../gufw/gufw/view/gufw.py:309
4696+#: ../gufw/gufw/view/gufw.py:314
4697 msgid "How to autostart Gufw with the system?"
4698 msgstr ""
4699
4700-#: ../gufw/gufw/view/gufw.py:310
4701+#: ../gufw/gufw/view/gufw.py:315
4702 msgid ""
4703 "You do not need it. After you do all of the changes in Gufw, the settings "
4704 "are still in place until the next changes."
4705 msgstr ""
4706
4707-#: ../gufw/gufw/view/gufw.py:311
4708+#: ../gufw/gufw/view/gufw.py:316
4709 msgid "Why is Gufw disabled by default?"
4710 msgstr ""
4711
4712-#: ../gufw/gufw/view/gufw.py:312
4713+#: ../gufw/gufw/view/gufw.py:317
4714 msgid "By default, the firewall does not open ports to the outside world."
4715 msgstr ""
4716
4717-#: ../gufw/gufw/view/gufw.py:313
4718+#: ../gufw/gufw/view/gufw.py:318
4719 msgid "Some rules are added by themselves?"
4720 msgstr ""
4721
4722-#: ../gufw/gufw/view/gufw.py:314
4723+#: ../gufw/gufw/view/gufw.py:319
4724 msgid ""
4725 "Well, the behaviour is such that when you change or import a profile, or "
4726 "when you edit a rule, Gufw will add that rule again, then ufw re-adds that "
4727 "rule for IPv4 and IPv6."
4728 msgstr ""
4729
4730-#: ../gufw/gufw/view/gufw.py:315
4731+#: ../gufw/gufw/view/gufw.py:320
4732 msgid "What is Allow, Deny, Reject and Limit?"
4733 msgstr ""
4734
4735-#: ../gufw/gufw/view/gufw.py:316
4736+#: ../gufw/gufw/view/gufw.py:321
4737 msgid "Allow: Will allow traffic."
4738 msgstr ""
4739
4740-#: ../gufw/gufw/view/gufw.py:317
4741+#: ../gufw/gufw/view/gufw.py:322
4742 msgid "Deny: Will deny traffic."
4743 msgstr ""
4744
4745-#: ../gufw/gufw/view/gufw.py:318
4746+#: ../gufw/gufw/view/gufw.py:323
4747 msgid "Reject: Will deny traffic and will inform that it has been rejected."
4748 msgstr ""
4749
4750-#: ../gufw/gufw/view/gufw.py:319
4751+#: ../gufw/gufw/view/gufw.py:324
4752 msgid "Limit: Will deny traffic if an IP tried several connections."
4753 msgstr ""
4754
4755-#: ../gufw/gufw/view/gufw.py:320
4756+#: ../gufw/gufw/view/gufw.py:325
4757 msgid "I see some rules in all profiles"
4758 msgstr ""
4759
4760-#: ../gufw/gufw/view/gufw.py:321
4761+#: ../gufw/gufw/view/gufw.py:326
4762 msgid "All the ufw rules will be appear in all profiles."
4763 msgstr ""
4764
4765-#: ../gufw/gufw/view/gufw.py:322
4766+#: ../gufw/gufw/view/gufw.py:327
4767 msgid "What do I see in the Listening Report?"
4768 msgstr ""
4769
4770-#: ../gufw/gufw/view/gufw.py:323
4771+#: ../gufw/gufw/view/gufw.py:328
4772 msgid ""
4773 "The ports on the live system in the listening state for TCP and the open "
4774 "state for UDP."
4775 msgstr ""
4776
4777-#: ../gufw/gufw/view/gufw.py:324
4778+#: ../gufw/gufw/view/gufw.py:329
4779 msgid "I want even more!"
4780 msgstr ""
4781
4782-#: ../gufw/gufw/view/gufw.py:325
4783+#: ../gufw/gufw/view/gufw.py:330
4784 msgid "You'll find more information in the community documentation :)"
4785 msgstr ""
4786
4787-#: ../gufw/gufw/view/gufw.py:334 ../gufw/gufw/view/gufw.py:338
4788-#: ../gufw/gufw/view/gufw.py:341
4789+#: ../gufw/gufw/view/gufw.py:339 ../gufw/gufw/view/gufw.py:343
4790+#: ../gufw/gufw/view/gufw.py:346
4791 msgid "Visit this web (please, copy & paste in your browser):"
4792 msgstr ""
4793
4794-#: ../gufw/gufw/view/gufw.py:349
4795+#: ../gufw/gufw/view/gufw.py:354
4796 msgid "Import Profile"
4797 msgstr ""
4798
4799-#: ../gufw/gufw/view/gufw.py:355
4800+#: ../gufw/gufw/view/gufw.py:360
4801 msgid "Import cancelled"
4802 msgstr ""
4803
4804-#: ../gufw/gufw/view/gufw.py:359 ../gufw/gufw/view/gufw.py:363
4805+#: ../gufw/gufw/view/gufw.py:364 ../gufw/gufw/view/gufw.py:368
4806 msgid "Error"
4807 msgstr ""
4808
4809-#: ../gufw/gufw/view/gufw.py:359
4810+#: ../gufw/gufw/view/gufw.py:364
4811 msgid ""
4812 "Filename has wrong permissions (not 600). Trust only on your exported "
4813 "profiles"
4814 msgstr ""
4815
4816-#: ../gufw/gufw/view/gufw.py:363
4817+#: ../gufw/gufw/view/gufw.py:368
4818 msgid ""
4819 "Filename has not valid characters. Rename the file\n"
4820 "to only letters, numbers, dashes and underscores"
4821 msgstr ""
4822
4823-#: ../gufw/gufw/view/gufw.py:367
4824+#: ../gufw/gufw/view/gufw.py:372
4825 msgid "Operation cancelled"
4826 msgstr ""
4827
4828-#: ../gufw/gufw/view/gufw.py:368
4829+#: ../gufw/gufw/view/gufw.py:373
4830 msgid "Profile already exists"
4831 msgstr ""
4832
4833-#: ../gufw/gufw/view/gufw.py:368
4834+#: ../gufw/gufw/view/gufw.py:373
4835 msgid ""
4836 "Delete it before from the Preferences Window or rename the file (the profile "
4837 "will be the filename)"
4838 msgstr ""
4839
4840-#: ../gufw/gufw/view/gufw.py:372
4841+#: ../gufw/gufw/view/gufw.py:377
4842 msgid "Profile imported: "
4843 msgstr ""
4844
4845-#: ../gufw/gufw/view/gufw.py:373
4846+#: ../gufw/gufw/view/gufw.py:378
4847 msgid "Profile imported, now you can choose it in the profiles"
4848 msgstr ""
4849
4850-#: ../gufw/gufw/view/gufw.py:376
4851+#: ../gufw/gufw/view/gufw.py:381
4852 msgid "Export Profile"
4853 msgstr ""
4854
4855-#: ../gufw/gufw/view/gufw.py:379
4856+#: ../gufw/gufw/view/gufw.py:384
4857 msgid "Export cancelled"
4858 msgstr ""
4859
4860-#: ../gufw/gufw/view/gufw.py:386
4861+#: ../gufw/gufw/view/gufw.py:391
4862 msgid "Profile exported: "
4863 msgstr ""
4864
4865-#: ../gufw/gufw/view/gufw.py:387
4866+#: ../gufw/gufw/view/gufw.py:392
4867 msgid "Profile exported"
4868 msgstr ""
4869
4870-#: ../gufw/gufw/view/gufw.py:411
4871+#: ../gufw/gufw/view/gufw.py:416
4872 msgid "Reset Firewall"
4873 msgstr ""
4874
4875-#: ../gufw/gufw/view/gufw.py:411
4876+#: ../gufw/gufw/view/gufw.py:416
4877 msgid ""
4878 "This will remove all rules in the current\n"
4879 "profile and disable the firewall"
4880 msgstr ""
4881
4882-#: ../gufw/gufw/view/gufw.py:411 ../gufw/gufw/view/gufw.py:555
4883+#: ../gufw/gufw/view/gufw.py:416 ../gufw/gufw/view/gufw.py:570
4884 msgid "Do you want to continue?"
4885 msgstr ""
4886
4887-#: ../gufw/gufw/view/gufw.py:416
4888+#: ../gufw/gufw/view/gufw.py:421
4889 msgid "Removed rules and reset firewall!"
4890 msgstr ""
4891
4892-#: ../gufw/gufw/view/gufw.py:421
4893+#: ../gufw/gufw/view/gufw.py:426
4894 msgid "Gufw Log: Removed"
4895 msgstr ""
4896
4897-#: ../gufw/gufw/view/gufw.py:422
4898+#: ../gufw/gufw/view/gufw.py:427
4899 msgid "Gufw Log removed"
4900 msgstr ""
4901
4902-#: ../gufw/gufw/view/gufw.py:427
4903+#: ../gufw/gufw/view/gufw.py:432
4904 msgid "Text copied to clipboard"
4905 msgstr ""
4906
4907-#: ../gufw/gufw/view/gufw.py:468
4908+#: ../gufw/gufw/view/gufw.py:473
4909 msgid "Incoming: "
4910 msgstr ""
4911
4912-#: ../gufw/gufw/view/gufw.py:469
4913+#: ../gufw/gufw/view/gufw.py:474
4914 msgid "Incoming policy changed"
4915 msgstr ""
4916
4917-#: ../gufw/gufw/view/gufw.py:471
4918+#: ../gufw/gufw/view/gufw.py:476
4919 msgid "There was an error changing the incoming policy"
4920 msgstr ""
4921
4922-#: ../gufw/gufw/view/gufw.py:471 ../gufw/gufw/view/gufw.py:479
4923-#: ../gufw/gufw/view/gufw.py:490
4924+#: ../gufw/gufw/view/gufw.py:476 ../gufw/gufw/view/gufw.py:484
4925+#: ../gufw/gufw/view/gufw.py:495
4926 msgid ""
4927 "Restart your firewall to refresh to the real status\n"
4928 "and please report this bug"
4929 msgstr ""
4930
4931-#: ../gufw/gufw/view/gufw.py:476
4932+#: ../gufw/gufw/view/gufw.py:481
4933 msgid "Outgoing: "
4934 msgstr ""
4935
4936-#: ../gufw/gufw/view/gufw.py:477
4937+#: ../gufw/gufw/view/gufw.py:482
4938 msgid "Outgoing policy changed"
4939 msgstr ""
4940
4941-#: ../gufw/gufw/view/gufw.py:479
4942+#: ../gufw/gufw/view/gufw.py:484
4943 msgid "There was an error changing the outgoing policy"
4944 msgstr ""
4945
4946-#: ../gufw/gufw/view/gufw.py:487
4947+#: ../gufw/gufw/view/gufw.py:492
4948 msgid "Routed: "
4949 msgstr ""
4950
4951-#: ../gufw/gufw/view/gufw.py:488
4952+#: ../gufw/gufw/view/gufw.py:493
4953 msgid "Routed policy changed"
4954 msgstr ""
4955
4956-#: ../gufw/gufw/view/gufw.py:490
4957+#: ../gufw/gufw/view/gufw.py:495
4958 msgid "There was an error changing the routed policy"
4959 msgstr ""
4960
4961-#: ../gufw/gufw/view/gufw.py:511 ../gufw/gufw/view/gufw.py:590
4962+#: ../gufw/gufw/view/gufw.py:516 ../gufw/gufw/view/gufw.py:605
4963 msgid "Select just one row"
4964 msgstr ""
4965
4966-#: ../gufw/gufw/view/gufw.py:511
4967+#: ../gufw/gufw/view/gufw.py:516
4968 msgid "You can create a rule from just one row selected"
4969 msgstr ""
4970
4971-#: ../gufw/gufw/view/gufw.py:525
4972+#: ../gufw/gufw/view/gufw.py:540
4973 msgid "Status: Enabled"
4974 msgstr ""
4975
4976-#: ../gufw/gufw/view/gufw.py:526
4977+#: ../gufw/gufw/view/gufw.py:541
4978 msgid "Firewall enabled"
4979 msgstr ""
4980
4981-#: ../gufw/gufw/view/gufw.py:528
4982+#: ../gufw/gufw/view/gufw.py:543
4983 msgid "Status: Disabled"
4984 msgstr ""
4985
4986-#: ../gufw/gufw/view/gufw.py:529
4987+#: ../gufw/gufw/view/gufw.py:544
4988 msgid "Firewall disabled"
4989 msgstr ""
4990
4991-#: ../gufw/gufw/view/gufw.py:540
4992+#: ../gufw/gufw/view/gufw.py:555
4993 msgid "There was an error changing the firewall status"
4994 msgstr ""
4995
4996-#: ../gufw/gufw/view/gufw.py:540
4997+#: ../gufw/gufw/view/gufw.py:555
4998 msgid ""
4999 "Restart your firewall to refresh to the real status and please report this "
5000 "bug"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: