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
=== modified file 'data/ui/gufw.ui'
--- data/ui/gufw.ui 2016-11-08 19:14:11 +0000
+++ data/ui/gufw.ui 2016-11-09 19:48:13 +0000
@@ -782,6 +782,37 @@
782 <property name="can_focus">False</property>782 <property name="can_focus">False</property>
783 <property name="icon_size">1</property>783 <property name="icon_size">1</property>
784 <child>784 <child>
785 <object class="GtkToolButton" id="btnReportPause">
786 <property name="use_action_appearance">False</property>
787 <property name="visible">True</property>
788 <property name="can_focus">False</property>
789 <property name="tooltip_text" translatable="yes">Pause Listening Report</property>
790 <property name="label" translatable="yes">Pause</property>
791 <property name="use_underline">True</property>
792 <property name="icon_name">media-playback-pause</property>
793 <signal name="clicked" handler="on_btnReportPause_clicked" swapped="no"/>
794 </object>
795 <packing>
796 <property name="expand">False</property>
797 <property name="homogeneous">True</property>
798 </packing>
799 </child>
800 <child>
801 <object class="GtkToolButton" id="btnReportPlay">
802 <property name="use_action_appearance">False</property>
803 <property name="can_focus">False</property>
804 <property name="tooltip_text" translatable="yes">See current Listening Report</property>
805 <property name="label" translatable="yes">Pause</property>
806 <property name="use_underline">True</property>
807 <property name="icon_name">media-playback-start</property>
808 <signal name="clicked" handler="on_btnReportPlay_clicked" swapped="no"/>
809 </object>
810 <packing>
811 <property name="expand">False</property>
812 <property name="homogeneous">True</property>
813 </packing>
814 </child>
815 <child>
785 <object class="GtkToolButton" id="btnReportRule">816 <object class="GtkToolButton" id="btnReportRule">
786 <property name="use_action_appearance">False</property>817 <property name="use_action_appearance">False</property>
787 <property name="visible">True</property>818 <property name="visible">True</property>
788819
=== modified file 'gufw/gufw/view/gufw.py'
--- gufw/gufw/view/gufw.py 2016-11-08 19:33:57 +0000
+++ gufw/gufw/view/gufw.py 2016-11-09 19:48:13 +0000
@@ -169,6 +169,9 @@
169 self.txt_tag_gray = self.log_txt.create_tag('colored_gray', foreground=self.GRAY)169 self.txt_tag_gray = self.log_txt.create_tag('colored_gray', foreground=self.GRAY)
170 self.txt_tag_black = self.log_txt.create_tag('colored_black', foreground=self.BLACK)170 self.txt_tag_black = self.log_txt.create_tag('colored_black', foreground=self.BLACK)
171 171
172 self.btn_report_pause = self.builder.get_object('btnReportPause')
173 self.btn_report_play = self.builder.get_object('btnReportPlay')
174
172 # Stack init175 # Stack init
173 stack = Gtk.Stack()176 stack = Gtk.Stack()
174 stack.set_transition_type(Gtk.StackTransitionType.SLIDE_LEFT_RIGHT)177 stack.set_transition_type(Gtk.StackTransitionType.SLIDE_LEFT_RIGHT)
@@ -289,6 +292,8 @@
289 292
290 if self.fw.get_status():293 if self.fw.get_status():
291 self.print_rules(self.fw.get_rules())294 self.print_rules(self.fw.get_rules())
295
296 self.btn_report_play.hide()
292297
293 # Disable the context menu298 # Disable the context menu
294 def context_menu_cb(webview, context_menu, event, hit_test_result, error):299 def context_menu_cb(webview, context_menu, event, hit_test_result, error):
@@ -517,6 +522,16 @@
517 self.winadd.set_add_from_report(protocol, port, address, app)522 self.winadd.set_add_from_report(protocol, port, address, app)
518 self.winadd.show_win() 523 self.winadd.show_win()
519 524
525 def on_btnReportPause_clicked(self, widget, data=None):
526 self.btn_report_pause.hide()
527 self.btn_report_play.show()
528 self.listening.set_pause(True)
529
530 def on_btnReportPlay_clicked(self, widget, data=None):
531 self.btn_report_pause.show()
532 self.btn_report_play.hide()
533 self.listening.set_pause(False)
534
520 def on_switchStatus_active_notify(self, widget, data=None):535 def on_switchStatus_active_notify(self, widget, data=None):
521 self.fw.set_status(self.switchStatus.get_active())536 self.fw.set_status(self.switchStatus.get_active())
522 self.print_rules(self.fw.get_rules())537 self.print_rules(self.fw.get_rules())
523538
=== modified file 'gufw/gufw/view/listening.py'
--- gufw/gufw/view/listening.py 2016-11-08 19:33:57 +0000
+++ gufw/gufw/view/listening.py 2016-11-09 19:48:13 +0000
@@ -30,6 +30,7 @@
30 self.gufw = gufw30 self.gufw = gufw
31 self.previous_report = []31 self.previous_report = []
32 self.running_listening = True32 self.running_listening = True
33 self.paused_listening = False
33 34
34 self._show_report()35 self._show_report()
35 36
@@ -55,7 +56,12 @@
55 def stopping(self):56 def stopping(self):
56 self.running_listening = False57 self.running_listening = False
57 58
59 def set_pause(self, value):
60 self.paused_listening = value
61
58 def _view_report(self, report, previous_report):62 def _view_report(self, report, previous_report):
63 if self.paused_listening:
64 return
59 # Selected?65 # Selected?
60 protocol = port = address = app = ''66 protocol = port = address = app = ''
61 (model, rows) = self.gufw.tv_report.get_selection().get_selected_rows()67 (model, rows) = self.gufw.tv_report.get_selection().get_selected_rows()
6268
=== modified file 'po/gufw.pot'
--- po/gufw.pot 2016-11-08 19:14:11 +0000
+++ po/gufw.pot 2016-11-09 19:48:13 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2016-09-04 12:30+0200\n"11"POT-Creation-Date: 2016-11-09 20:46+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,3160 +26,3216 @@
26msgstr ""26msgstr ""
2727
28#: ../DEV_extra_translations/extra_translations.py:528#: ../DEV_extra_translations/extra_translations.py:5
29msgid "F-22 Lightning 3"29msgid "Clonk"
30msgstr ""30msgstr ""
3131
32#: ../DEV_extra_translations/extra_translations.py:632#: ../DEV_extra_translations/extra_translations.py:6
33#: ../DEV_extra_translations/extra_translations.py:24633msgid "An action/RTS/platform game by RedWolf Design; standard ports"
34msgid "A F-22 Raptor simulation by NovaLogic"
35msgstr ""34msgstr ""
3635
37#: ../DEV_extra_translations/extra_translations.py:736#: ../DEV_extra_translations/extra_translations.py:7
38msgid "Games;Simulation;"37msgid "Games;Action;"
39msgstr ""38msgstr ""
4039
41#: ../DEV_extra_translations/extra_translations.py:840#: ../DEV_extra_translations/extra_translations.py:8
42msgid "Assault Cube"41msgid "Clonk Host"
43msgstr ""42msgstr ""
4443
45#: ../DEV_extra_translations/extra_translations.py:944#: ../DEV_extra_translations/extra_translations.py:9
46msgid "A free, multiplayer, first-person shooter game"45msgid "An action/RTS/platform game by RedWolf Design; host ports"
47msgstr ""46msgstr ""
4847
49#: ../DEV_extra_translations/extra_translations.py:1048#: ../DEV_extra_translations/extra_translations.py:10
50msgid "Games;Action;"49msgid "Clonk LAN"
51msgstr ""50msgstr ""
5251
53#: ../DEV_extra_translations/extra_translations.py:1152#: ../DEV_extra_translations/extra_translations.py:11
54msgid "Joint Operations: Typhoon Rising"53msgid "An action/RTS/platform game by RedWolf Design; LAN game discovery port"
55msgstr ""54msgstr ""
5655
57#: ../DEV_extra_translations/extra_translations.py:1256#: ../DEV_extra_translations/extra_translations.py:12
58#: ../DEV_extra_translations/extra_translations.py:50357msgid "Shogo: Mobile Armour Division"
59#: ../DEV_extra_translations/extra_translations.py:581
60#: ../DEV_extra_translations/extra_translations.py:681
61msgid "A FPS combat game by NovaLogic"
62msgstr ""58msgstr ""
6359
64#: ../DEV_extra_translations/extra_translations.py:1360#: ../DEV_extra_translations/extra_translations.py:13
65msgid "Warzone 2100"61msgid "A FPS by Monolith Productions"
66msgstr ""62msgstr ""
6763
68#: ../DEV_extra_translations/extra_translations.py:1464#: ../DEV_extra_translations/extra_translations.py:14
69msgid "A RTS game by Pumpkin Studios"65msgid "DirectX 7"
70msgstr ""66msgstr ""
7167
72#: ../DEV_extra_translations/extra_translations.py:1568#: ../DEV_extra_translations/extra_translations.py:15
73msgid "Games;Strategy;"69msgid "Network games using DirectX 7 API"
74msgstr ""70msgstr ""
7571
76#: ../DEV_extra_translations/extra_translations.py:1672#: ../DEV_extra_translations/extra_translations.py:16
77#: ../DEV_extra_translations/extra_translations.py:30073msgid "Network;"
78msgid "hddtemp"
79msgstr ""74msgstr ""
8075
81#: ../DEV_extra_translations/extra_translations.py:1776#: ../DEV_extra_translations/extra_translations.py:17
82msgid "Data storage device temperature data server"77msgid "DirectX 8"
83msgstr ""78msgstr ""
8479
85#: ../DEV_extra_translations/extra_translations.py:1880#: ../DEV_extra_translations/extra_translations.py:18
86msgid "System;Monitor;"81msgid "Network games using DirectX 8 API"
87msgstr ""82msgstr ""
8883
89#: ../DEV_extra_translations/extra_translations.py:1984#: ../DEV_extra_translations/extra_translations.py:19
90msgid "Abuse"85msgid "Cube 2: Sauerbraten"
91msgstr ""86msgstr ""
9287
93#: ../DEV_extra_translations/extra_translations.py:2088#: ../DEV_extra_translations/extra_translations.py:20
94msgid "A dark 2D side-scrolling platform game developed by Crack dot Com"89msgid "A FPS game based on the Cube engine"
95msgstr ""90msgstr ""
9691
97#: ../DEV_extra_translations/extra_translations.py:2192#: ../DEV_extra_translations/extra_translations.py:21
98msgid "monopd"93msgid "Socks Proxy"
99msgstr ""94msgstr ""
10095
101#: ../DEV_extra_translations/extra_translations.py:2296#: ../DEV_extra_translations/extra_translations.py:22
102msgid "A game server for Monopoly-like board games"97msgid "SOCKS protocol for proxy server support"
103msgstr ""98msgstr ""
10499
105#: ../DEV_extra_translations/extra_translations.py:23100#: ../DEV_extra_translations/extra_translations.py:23
106msgid "Games;Board;"101msgid "Network;Services;"
107msgstr ""102msgstr ""
108103
109#: ../DEV_extra_translations/extra_translations.py:24104#: ../DEV_extra_translations/extra_translations.py:24
110msgid "UPnP"105msgid "Transparent Proxy"
111msgstr ""106msgstr ""
112107
113#: ../DEV_extra_translations/extra_translations.py:25108#: ../DEV_extra_translations/extra_translations.py:25
114msgid ""109msgid "Transparent proxy"
115"Universal Plug and Play. It is a framework which can be used to make "
116"networked applications"
117msgstr ""110msgstr ""
118111
119#: ../DEV_extra_translations/extra_translations.py:26112#: ../DEV_extra_translations/extra_translations.py:26
120msgid "System;General;"113msgid "Warsow"
121msgstr ""114msgstr ""
122115
123#: ../DEV_extra_translations/extra_translations.py:27116#: ../DEV_extra_translations/extra_translations.py:27
124msgid "Camfrog"117msgid "A competitive FPS based on the Qfusion 3D/id tech 2 engine"
125msgstr ""118msgstr ""
126119
127#: ../DEV_extra_translations/extra_translations.py:28120#: ../DEV_extra_translations/extra_translations.py:28
128#: ../DEV_extra_translations/extra_translations.py:456121msgid "FreeLords"
129#: ../DEV_extra_translations/extra_translations.py:457
130msgid "H.323 Call Signaling"
131msgstr ""122msgstr ""
132123
133#: ../DEV_extra_translations/extra_translations.py:29124#: ../DEV_extra_translations/extra_translations.py:29
134msgid "Network;Telephony;Video Conference;"125msgid "A clone of Warlords"
135msgstr ""126msgstr ""
136127
137#: ../DEV_extra_translations/extra_translations.py:30128#: ../DEV_extra_translations/extra_translations.py:30
138#: ../DEV_extra_translations/extra_translations.py:788129msgid "Games;Strategy;"
139msgid "FTP"
140msgstr ""130msgstr ""
141131
142#: ../DEV_extra_translations/extra_translations.py:31132#: ../DEV_extra_translations/extra_translations.py:31
143#: ../DEV_extra_translations/extra_translations.py:789133msgid "Dropbox LanSync"
144msgid "File Transfer Protocol"
145msgstr ""134msgstr ""
146135
147#: ../DEV_extra_translations/extra_translations.py:32136#: ../DEV_extra_translations/extra_translations.py:32
137msgid "A web-based file hosting service"
138msgstr ""
139
140#: ../DEV_extra_translations/extra_translations.py:33
148msgid "Network;File Transfer;"141msgid "Network;File Transfer;"
149msgstr ""142msgstr ""
150143
151#: ../DEV_extra_translations/extra_translations.py:33
152msgid "WINE: Starcraft"
153msgstr ""
154
155#: ../DEV_extra_translations/extra_translations.py:34144#: ../DEV_extra_translations/extra_translations.py:34
156#: ../DEV_extra_translations/extra_translations.py:723145msgid "Heavy Gear II"
157msgid "A strategy game by Blizzard Entertainment"
158msgstr ""146msgstr ""
159147
160#: ../DEV_extra_translations/extra_translations.py:35148#: ../DEV_extra_translations/extra_translations.py:35
161msgid "Kerberos v5 KDC"149msgid ""
150"A mech FPS based on the Dream Pod 9 universe from Activision and Loki "
151"Software"
162msgstr ""152msgstr ""
163153
164#: ../DEV_extra_translations/extra_translations.py:36154#: ../DEV_extra_translations/extra_translations.py:36
165msgid "Kerberos v5 KDC server"155msgid "WINE: Starcraft"
166msgstr ""156msgstr ""
167157
168#: ../DEV_extra_translations/extra_translations.py:37158#: ../DEV_extra_translations/extra_translations.py:37
169msgid "Network;"159#: ../DEV_extra_translations/extra_translations.py:756
160msgid "A strategy game by Blizzard Entertainment"
170msgstr ""161msgstr ""
171162
172#: ../DEV_extra_translations/extra_translations.py:38163#: ../DEV_extra_translations/extra_translations.py:38
173msgid "Kerberos v5 admin"164msgid "OpenArena"
174msgstr ""165msgstr ""
175166
176#: ../DEV_extra_translations/extra_translations.py:39167#: ../DEV_extra_translations/extra_translations.py:39
177#: ../DEV_extra_translations/extra_translations.py:43168msgid "A competitive FPS based on ioquake3/id tech 3 engine"
178msgid "Kerberos v5 server"
179msgstr ""169msgstr ""
180170
181#: ../DEV_extra_translations/extra_translations.py:40171#: ../DEV_extra_translations/extra_translations.py:40
172msgid "FooBillard"
173msgstr ""
174
182#: ../DEV_extra_translations/extra_translations.py:41175#: ../DEV_extra_translations/extra_translations.py:41
183msgid "Kerberos v5 password"176msgid "Cue sports simulation with Carambol, Snooker, and Pool"
184msgstr ""177msgstr ""
185178
186#: ../DEV_extra_translations/extra_translations.py:42179#: ../DEV_extra_translations/extra_translations.py:42
187msgid "Kerberos v5 Full"180msgid "Games;Sports;"
181msgstr ""
182
183#: ../DEV_extra_translations/extra_translations.py:43
184msgid "Kingpin: Life of Crime"
188msgstr ""185msgstr ""
189186
190#: ../DEV_extra_translations/extra_translations.py:44187#: ../DEV_extra_translations/extra_translations.py:44
191msgid "LDAP"188msgid "A FPS by Xatrix Entertainment"
192msgstr ""189msgstr ""
193190
194#: ../DEV_extra_translations/extra_translations.py:45191#: ../DEV_extra_translations/extra_translations.py:45
195msgid "LDAP server"192msgid "NFS"
196msgstr ""193msgstr ""
197194
198#: ../DEV_extra_translations/extra_translations.py:46195#: ../DEV_extra_translations/extra_translations.py:46
199msgid "LDAPS"196msgid "Network File System"
200msgstr ""197msgstr ""
201198
202#: ../DEV_extra_translations/extra_translations.py:47199#: ../DEV_extra_translations/extra_translations.py:47
203msgid "LDAP server (LDAPS)"200msgid "NFS (jhansonxi)"
204msgstr ""201msgstr ""
205202
206#: ../DEV_extra_translations/extra_translations.py:48203#: ../DEV_extra_translations/extra_translations.py:48
207msgid "OpenArena"204msgid ""
205"Network File System protocol with static ports at relatively unused "
206"4194:4197 (4195 broadcast out)"
208msgstr ""207msgstr ""
209208
210#: ../DEV_extra_translations/extra_translations.py:49209#: ../DEV_extra_translations/extra_translations.py:49
211msgid "A competitive FPS based on ioquake3/id tech 3 engine"210msgid "NFS Quota (jhansonxi)"
212msgstr ""211msgstr ""
213212
214#: ../DEV_extra_translations/extra_translations.py:50213#: ../DEV_extra_translations/extra_translations.py:50
215msgid "Conquest"214msgid ""
215"Network File System protocol with filesystem usage quota support with static "
216"ports at relatively unused 4194:4198 (4195 broadcast out)"
216msgstr ""217msgstr ""
217218
218#: ../DEV_extra_translations/extra_translations.py:51219#: ../DEV_extra_translations/extra_translations.py:51
220msgid "Diablo"
221msgstr ""
222
223#: ../DEV_extra_translations/extra_translations.py:52
224#: ../DEV_extra_translations/extra_translations.py:627
225msgid "Fantasy combat game by Blizzard Entertainment"
226msgstr ""
227
219#: ../DEV_extra_translations/extra_translations.py:53228#: ../DEV_extra_translations/extra_translations.py:53
220msgid "A space warfare game"229msgid "Kerberos v5 KDC"
221msgstr ""
222
223#: ../DEV_extra_translations/extra_translations.py:52
224msgid "Conquest Metaserver"
225msgstr ""230msgstr ""
226231
227#: ../DEV_extra_translations/extra_translations.py:54232#: ../DEV_extra_translations/extra_translations.py:54
228msgid "Dopewars"233msgid "Kerberos v5 KDC server"
229msgstr ""234msgstr ""
230235
231#: ../DEV_extra_translations/extra_translations.py:55236#: ../DEV_extra_translations/extra_translations.py:55
232#: ../DEV_extra_translations/extra_translations.py:210237msgid "Kerberos v5 admin"
233#: ../DEV_extra_translations/extra_translations.py:284
234#: ../DEV_extra_translations/extra_translations.py:450
235#: ../DEV_extra_translations/extra_translations.py:455
236#: ../DEV_extra_translations/extra_translations.py:513
237msgid "A FPS by id Software"
238msgstr ""238msgstr ""
239239
240#: ../DEV_extra_translations/extra_translations.py:56240#: ../DEV_extra_translations/extra_translations.py:56
241msgid "Transmission Daemon"241#: ../DEV_extra_translations/extra_translations.py:60
242msgid "Kerberos v5 server"
242msgstr ""243msgstr ""
243244
244#: ../DEV_extra_translations/extra_translations.py:57245#: ../DEV_extra_translations/extra_translations.py:57
245msgid "Remote control for Transmission"
246msgstr ""
247
248#: ../DEV_extra_translations/extra_translations.py:58246#: ../DEV_extra_translations/extra_translations.py:58
249msgid "Network;P2P;"247msgid "Kerberos v5 password"
250msgstr ""248msgstr ""
251249
252#: ../DEV_extra_translations/extra_translations.py:59250#: ../DEV_extra_translations/extra_translations.py:59
253#: ../DEV_extra_translations/extra_translations.py:113251msgid "Kerberos v5 Full"
254#: ../DEV_extra_translations/extra_translations.py:351
255#: ../DEV_extra_translations/extra_translations.py:388
256#: ../DEV_extra_translations/extra_translations.py:397
257#: ../DEV_extra_translations/extra_translations.py:544
258#: ../DEV_extra_translations/extra_translations.py:547
259#: ../DEV_extra_translations/extra_translations.py:550
260#: ../DEV_extra_translations/extra_translations.py:601
261#: ../DEV_extra_translations/extra_translations.py:662
262#: ../DEV_extra_translations/extra_translations.py:669
263#: ../DEV_extra_translations/extra_translations.py:747
264msgid "Remember to open the ports on the router"
265msgstr ""
266
267#: ../DEV_extra_translations/extra_translations.py:60
268msgid "London Law"
269msgstr ""252msgstr ""
270253
271#: ../DEV_extra_translations/extra_translations.py:61254#: ../DEV_extra_translations/extra_translations.py:61
272msgid "An online multiplayer adaptation of the Scotland Yard board game"255msgid "LDAP"
273msgstr ""256msgstr ""
274257
275#: ../DEV_extra_translations/extra_translations.py:62258#: ../DEV_extra_translations/extra_translations.py:62
276msgid "MPD"259msgid "LDAP server"
277msgstr ""260msgstr ""
278261
279#: ../DEV_extra_translations/extra_translations.py:63262#: ../DEV_extra_translations/extra_translations.py:63
280msgid "Music Player Daemon. A server for streaming music"263msgid "LDAPS"
281msgstr ""264msgstr ""
282265
283#: ../DEV_extra_translations/extra_translations.py:64266#: ../DEV_extra_translations/extra_translations.py:64
284msgid "Network;Audio Video;Audio;"267msgid "LDAP server (LDAPS)"
285msgstr ""268msgstr ""
286269
287#: ../DEV_extra_translations/extra_translations.py:65270#: ../DEV_extra_translations/extra_translations.py:65
288msgid "Hedgewars"271msgid "Alien Arena"
289msgstr ""272msgstr ""
290273
291#: ../DEV_extra_translations/extra_translations.py:66274#: ../DEV_extra_translations/extra_translations.py:66
292#: ../DEV_extra_translations/extra_translations.py:749275msgid "A SciFi competitive FPS based on the CRX/id Tech 2 engine"
293msgid "An arcade combat game inspired by Worms from Team17 Software"
294msgstr ""276msgstr ""
295277
296#: ../DEV_extra_translations/extra_translations.py:67278#: ../DEV_extra_translations/extra_translations.py:67
297msgid "Games;Arcade;"279msgid "Subversion Server"
298msgstr ""280msgstr ""
299281
300#: ../DEV_extra_translations/extra_translations.py:68282#: ../DEV_extra_translations/extra_translations.py:68
301msgid "MiniDLNA"283msgid "Subversion server for access to Subversion repositories"
302msgstr ""284msgstr ""
303285
304#: ../DEV_extra_translations/extra_translations.py:69286#: ../DEV_extra_translations/extra_translations.py:69
305msgid "Serves media files (music, pictures, and video) to clients on a network"287msgid "People Nearby"
306msgstr ""288msgstr ""
307289
308#: ../DEV_extra_translations/extra_translations.py:70290#: ../DEV_extra_translations/extra_translations.py:70
309msgid "Audio Video;TV;"291msgid "People Nearby (Bonjour/Salut) functionality in Empathy"
310msgstr ""292msgstr ""
311293
312#: ../DEV_extra_translations/extra_translations.py:71294#: ../DEV_extra_translations/extra_translations.py:71
313msgid "Tachyon: The Fringe"295msgid "Network;Telephony;Instant Messaging;"
314msgstr ""296msgstr ""
315297
316#: ../DEV_extra_translations/extra_translations.py:72298#: ../DEV_extra_translations/extra_translations.py:72
317msgid "A 3D space combat game by NovaLogic"299msgid "Bonjour"
318msgstr ""300msgstr ""
319301
320#: ../DEV_extra_translations/extra_translations.py:73302#: ../DEV_extra_translations/extra_translations.py:73
321msgid "MSN Gaming Zone"303msgid "Bonjour protocol"
322msgstr ""304msgstr ""
323305
324#: ../DEV_extra_translations/extra_translations.py:74306#: ../DEV_extra_translations/extra_translations.py:74
325msgid "Games using MSN Gaming Zone API"307msgid "MSN Chat"
326msgstr ""308msgstr ""
327309
328#: ../DEV_extra_translations/extra_translations.py:75310#: ../DEV_extra_translations/extra_translations.py:75
329msgid "Network;Games;"311msgid "MSN chat protocol (with file transfer and voice)"
330msgstr ""312msgstr ""
331313
332#: ../DEV_extra_translations/extra_translations.py:76314#: ../DEV_extra_translations/extra_translations.py:76
333msgid "Myth II: Soulblighter"315msgid "MSN Chat (SSL)"
334msgstr ""316msgstr ""
335317
336#: ../DEV_extra_translations/extra_translations.py:77318#: ../DEV_extra_translations/extra_translations.py:77
337msgid "A real-time tactics game from Bungie"319msgid "MSN chat protocol SSL"
338msgstr ""320msgstr ""
339321
340#: ../DEV_extra_translations/extra_translations.py:78322#: ../DEV_extra_translations/extra_translations.py:78
341msgid "NTP"323msgid "AIM Talk"
342msgstr ""324msgstr ""
343325
344#: ../DEV_extra_translations/extra_translations.py:79326#: ../DEV_extra_translations/extra_translations.py:79
345msgid "Network Time Protocol"327msgid "AIM talk protocol"
346msgstr ""328msgstr ""
347329
348#: ../DEV_extra_translations/extra_translations.py:80330#: ../DEV_extra_translations/extra_translations.py:80
349msgid "Network;Time;"331msgid "Yahoo Chat"
350msgstr ""332msgstr ""
351333
352#: ../DEV_extra_translations/extra_translations.py:81334#: ../DEV_extra_translations/extra_translations.py:81
353msgid "Ubuntu One"335msgid "Yahoo chat protocol"
354msgstr ""336msgstr ""
355337
356#: ../DEV_extra_translations/extra_translations.py:82338#: ../DEV_extra_translations/extra_translations.py:82
357msgid ""339msgid "Multicast DNS"
358"Store files online and sync them between computers and mobile devices, as "
359"well as stream audio and music from cloud to mobile devices"
360msgstr ""340msgstr ""
361341
362#: ../DEV_extra_translations/extra_translations.py:83342#: ../DEV_extra_translations/extra_translations.py:83
363msgid "Network;Cloud;"343msgid "Multicast DNS (Avahi, Bonjour)"
364msgstr ""344msgstr ""
365345
366#: ../DEV_extra_translations/extra_translations.py:84346#: ../DEV_extra_translations/extra_translations.py:84
367msgid "NAT"347msgid "IRC - 194/tcp"
368msgstr ""348msgstr ""
369349
370#: ../DEV_extra_translations/extra_translations.py:85350#: ../DEV_extra_translations/extra_translations.py:85
371msgid "Port Mapping Protocol"351msgid "Internet Relay Chat on official port 194 (rarely used)"
372msgstr ""352msgstr ""
373353
374#: ../DEV_extra_translations/extra_translations.py:86354#: ../DEV_extra_translations/extra_translations.py:86
375msgid "SAMBA"355msgid "Network;IRC;"
376msgstr ""356msgstr ""
377357
378#: ../DEV_extra_translations/extra_translations.py:87358#: ../DEV_extra_translations/extra_translations.py:87
379msgid ""359msgid "IRC"
380"SMB/CIFS protocol for Unix systems, allowing you to serve files and printers "
381"to Windows, NT, OS/2 and DOS clients"
382msgstr ""360msgstr ""
383361
384#: ../DEV_extra_translations/extra_translations.py:88362#: ../DEV_extra_translations/extra_translations.py:88
385msgid "Network;Services;|Network;File Transfer"363msgid ""
364"Internet Relay Chat on common default port 6667, using nf_conntrack_irc DCC "
365"helper"
386msgstr ""366msgstr ""
387367
388#: ../DEV_extra_translations/extra_translations.py:89368#: ../DEV_extra_translations/extra_translations.py:89
389msgid "Nagios Plugin"369msgid "IRC SSL"
390msgstr ""370msgstr ""
391371
392#: ../DEV_extra_translations/extra_translations.py:90372#: ../DEV_extra_translations/extra_translations.py:90
393msgid "Remote Plugin Executor"373msgid "Internet Relay Chat on SSL default port 6697"
394msgstr ""374msgstr ""
395375
396#: ../DEV_extra_translations/extra_translations.py:91376#: ../DEV_extra_translations/extra_translations.py:91
397msgid "PulseAudio"377msgid "gpsd"
398msgstr ""378msgstr ""
399379
400#: ../DEV_extra_translations/extra_translations.py:92380#: ../DEV_extra_translations/extra_translations.py:92
401msgid "Networked sound server"381msgid "Interface daemon for GPS receivers"
402msgstr ""382msgstr ""
403383
404#: ../DEV_extra_translations/extra_translations.py:93384#: ../DEV_extra_translations/extra_translations.py:93
405msgid "Kingpin: Life of Crime"385msgid "Network;Geography;"
406msgstr ""386msgstr ""
407387
408#: ../DEV_extra_translations/extra_translations.py:94388#: ../DEV_extra_translations/extra_translations.py:94
409msgid "A FPS by Xatrix Entertainment"389msgid "OpenTTD server"
410msgstr ""390msgstr ""
411391
412#: ../DEV_extra_translations/extra_translations.py:95392#: ../DEV_extra_translations/extra_translations.py:95
413msgid "XBMC Remote"393msgid "An enhanced clone of Chris Sawyer's Transport Tycoon Deluxe"
414msgstr ""394msgstr ""
415395
416#: ../DEV_extra_translations/extra_translations.py:96396#: ../DEV_extra_translations/extra_translations.py:96
417msgid "Remote control for XBMC"397msgid "Games;Simulation;"
418msgstr ""398msgstr ""
419399
420#: ../DEV_extra_translations/extra_translations.py:97400#: ../DEV_extra_translations/extra_translations.py:97
421msgid "Globulation 2"401msgid "Pioneers"
422msgstr ""402msgstr ""
423403
424#: ../DEV_extra_translations/extra_translations.py:98404#: ../DEV_extra_translations/extra_translations.py:98
425msgid "A RTS"405msgid "A game based on The Settlers of Catan by Klaus Teuber"
426msgstr ""406msgstr ""
427407
428#: ../DEV_extra_translations/extra_translations.py:99408#: ../DEV_extra_translations/extra_translations.py:99
429msgid "Snowball Surprise (SnowballZ)"409msgid "Games;Board;"
430msgstr ""410msgstr ""
431411
432#: ../DEV_extra_translations/extra_translations.py:100412#: ../DEV_extra_translations/extra_translations.py:100
433msgid "A RTS snowball fight"413msgid "Pioneers Metaserver"
434msgstr ""414msgstr ""
435415
436#: ../DEV_extra_translations/extra_translations.py:101416#: ../DEV_extra_translations/extra_translations.py:101
437msgid "Quake III - 27960/udp"417msgid "Metaserver for Pioneers"
438msgstr ""418msgstr ""
439419
440#: ../DEV_extra_translations/extra_translations.py:102420#: ../DEV_extra_translations/extra_translations.py:102
441msgid "A FPS by id Software, server on port 27660"421msgid "Rune"
442msgstr ""422msgstr ""
443423
444#: ../DEV_extra_translations/extra_translations.py:103424#: ../DEV_extra_translations/extra_translations.py:103
445msgid "Quake III - 27961/udp"425msgid "A third-person fantasy combat game by Human Head Studios"
446msgstr ""426msgstr ""
447427
448#: ../DEV_extra_translations/extra_translations.py:104428#: ../DEV_extra_translations/extra_translations.py:104
449msgid "A FPS by id Software, server on port 27961"429msgid "Rune admin"
450msgstr ""430msgstr ""
451431
452#: ../DEV_extra_translations/extra_translations.py:105432#: ../DEV_extra_translations/extra_translations.py:105
453msgid "Quake III - 27962/udp"433msgid "Web-based administration for the Rune game by Human Head Studios"
454msgstr ""434msgstr ""
455435
456#: ../DEV_extra_translations/extra_translations.py:106436#: ../DEV_extra_translations/extra_translations.py:106
457msgid "A FPS by id Software, server on port 27962"437msgid "RTMP Real Time Messaging Protocol"
458msgstr ""438msgstr ""
459439
460#: ../DEV_extra_translations/extra_translations.py:107440#: ../DEV_extra_translations/extra_translations.py:107
461msgid "Quake III - 27963/udp"441msgid "Real Time Messaging Protocol (Adobe Flash)"
462msgstr ""442msgstr ""
463443
464#: ../DEV_extra_translations/extra_translations.py:108444#: ../DEV_extra_translations/extra_translations.py:108
465msgid "A FPS by id Software, server on port 27963"445msgid "VNC"
466msgstr ""446msgstr ""
467447
468#: ../DEV_extra_translations/extra_translations.py:109448#: ../DEV_extra_translations/extra_translations.py:109
469msgid "Tether"449msgid "Virtual Network Computing"
470msgstr ""450msgstr ""
471451
472#: ../DEV_extra_translations/extra_translations.py:110452#: ../DEV_extra_translations/extra_translations.py:110
473msgid "A clone of strategy game Moonbase Commander by Humongous Entertainment"453msgid "Network;Remote Access;"
474msgstr ""454msgstr ""
475455
476#: ../DEV_extra_translations/extra_translations.py:111456#: ../DEV_extra_translations/extra_translations.py:111
477msgid "Nicotine"457#: ../DEV_extra_translations/extra_translations.py:360
458#: ../DEV_extra_translations/extra_translations.py:363
459#: ../DEV_extra_translations/extra_translations.py:366
460#: ../DEV_extra_translations/extra_translations.py:369
461#: ../DEV_extra_translations/extra_translations.py:372
462#: ../DEV_extra_translations/extra_translations.py:375
463#: ../DEV_extra_translations/extra_translations.py:378
464#: ../DEV_extra_translations/extra_translations.py:381
465#: ../DEV_extra_translations/extra_translations.py:839
466#: ../DEV_extra_translations/extra_translations.py:850
467msgid "It may be a security risk to use a default allow policy for RDP"
478msgstr ""468msgstr ""
479469
480#: ../DEV_extra_translations/extra_translations.py:112470#: ../DEV_extra_translations/extra_translations.py:112
481msgid ""471msgid "Camfrog"
482"Nicotine is a SoulSeek client written in Python, based on the PySoulSeek "472msgstr ""
483"project"473
474#: ../DEV_extra_translations/extra_translations.py:113
475#: ../DEV_extra_translations/extra_translations.py:445
476#: ../DEV_extra_translations/extra_translations.py:446
477msgid "H.323 Call Signaling"
484msgstr ""478msgstr ""
485479
486#: ../DEV_extra_translations/extra_translations.py:114480#: ../DEV_extra_translations/extra_translations.py:114
487msgid "SSH"481msgid "Network;Telephony;Video Conference;"
488msgstr ""482msgstr ""
489483
490#: ../DEV_extra_translations/extra_translations.py:115484#: ../DEV_extra_translations/extra_translations.py:115
491msgid "Secure Shell"485msgid "Delta Force: LW"
492msgstr ""486msgstr ""
493487
494#: ../DEV_extra_translations/extra_translations.py:116488#: ../DEV_extra_translations/extra_translations.py:116
495msgid "Network;Services;"489msgid "Land Warrior. A FPS combat game by NovaLogic"
496msgstr ""490msgstr ""
497491
498#: ../DEV_extra_translations/extra_translations.py:117492#: ../DEV_extra_translations/extra_translations.py:117
499msgid "It may be a security risk to use a default allow policy for SSH"493msgid "Transmission Daemon"
500msgstr ""494msgstr ""
501495
502#: ../DEV_extra_translations/extra_translations.py:118496#: ../DEV_extra_translations/extra_translations.py:118
503msgid "SSDP"497msgid "Remote control for Transmission"
504msgstr ""498msgstr ""
505499
506#: ../DEV_extra_translations/extra_translations.py:119500#: ../DEV_extra_translations/extra_translations.py:119
507msgid "Simple Service Discovery Protocol"501msgid "Network;P2P;"
508msgstr ""502msgstr ""
509503
510#: ../DEV_extra_translations/extra_translations.py:120504#: ../DEV_extra_translations/extra_translations.py:120
511msgid "Sid Meier's Alpha Centauri"505#: ../DEV_extra_translations/extra_translations.py:178
506#: ../DEV_extra_translations/extra_translations.py:185
507#: ../DEV_extra_translations/extra_translations.py:260
508#: ../DEV_extra_translations/extra_translations.py:388
509#: ../DEV_extra_translations/extra_translations.py:550
510#: ../DEV_extra_translations/extra_translations.py:724
511#: ../DEV_extra_translations/extra_translations.py:790
512#: ../DEV_extra_translations/extra_translations.py:797
513#: ../DEV_extra_translations/extra_translations.py:826
514#: ../DEV_extra_translations/extra_translations.py:829
515#: ../DEV_extra_translations/extra_translations.py:832
516msgid "Remember to open the ports on the router"
512msgstr ""517msgstr ""
513518
514#: ../DEV_extra_translations/extra_translations.py:121519#: ../DEV_extra_translations/extra_translations.py:121
515msgid "SciFi strategy game by Firaxis"520msgid "Castle-Combat - 50386/tcp"
516msgstr ""521msgstr ""
517522
518#: ../DEV_extra_translations/extra_translations.py:122523#: ../DEV_extra_translations/extra_translations.py:122
519msgid "Murmur"524#: ../DEV_extra_translations/extra_translations.py:125
525msgid "A clone of Rampart from Atari Games"
520msgstr ""526msgstr ""
521527
522#: ../DEV_extra_translations/extra_translations.py:123528#: ../DEV_extra_translations/extra_translations.py:123
523msgid "Murmur voice chat server (counterpart to Mumble client)"529msgid "Games;Arcade;"
524msgstr ""530msgstr ""
525531
526#: ../DEV_extra_translations/extra_translations.py:124532#: ../DEV_extra_translations/extra_translations.py:124
527msgid "Network;Telephony;"533msgid "Castle-Combat - 8787/tcp"
528msgstr ""
529
530#: ../DEV_extra_translations/extra_translations.py:125
531msgid "RTMP Real Time Messaging Protocol"
532msgstr ""534msgstr ""
533535
534#: ../DEV_extra_translations/extra_translations.py:126536#: ../DEV_extra_translations/extra_translations.py:126
535msgid "Real Time Messaging Protocol (Adobe Flash)"537msgid "SIP"
536msgstr ""538msgstr ""
537539
538#: ../DEV_extra_translations/extra_translations.py:127540#: ../DEV_extra_translations/extra_translations.py:127
539msgid "Nagios"541msgid "Session Initiation Protocol, unencrypted, using nf_conntrack_sip module"
540msgstr ""542msgstr ""
541543
542#: ../DEV_extra_translations/extra_translations.py:128544#: ../DEV_extra_translations/extra_translations.py:128
543msgid ""545msgid "Network;Telephony;"
544"Computer system monitor, network monitoring and infrastructure monitoring "
545"software application"
546msgstr ""546msgstr ""
547547
548#: ../DEV_extra_translations/extra_translations.py:129548#: ../DEV_extra_translations/extra_translations.py:129
549msgid "OpenTTD server"549msgid "SIP TLS"
550msgstr ""550msgstr ""
551551
552#: ../DEV_extra_translations/extra_translations.py:130552#: ../DEV_extra_translations/extra_translations.py:130
553msgid "An enhanced clone of Chris Sawyer's Transport Tycoon Deluxe"553msgid "Session Initiation Protocol with TLS encryption"
554msgstr ""554msgstr ""
555555
556#: ../DEV_extra_translations/extra_translations.py:131556#: ../DEV_extra_translations/extra_translations.py:131
557msgid "Blood II: The Chosen"557msgid "Thousand Parsec"
558msgstr ""558msgstr ""
559559
560#: ../DEV_extra_translations/extra_translations.py:132560#: ../DEV_extra_translations/extra_translations.py:132
561msgid "A FPS from Monolith Productions"561#: ../DEV_extra_translations/extra_translations.py:134
562#: ../DEV_extra_translations/extra_translations.py:136
563msgid "A common framework for building turn based space empire building games"
562msgstr ""564msgstr ""
563565
564#: ../DEV_extra_translations/extra_translations.py:133566#: ../DEV_extra_translations/extra_translations.py:133
565msgid "STUN"567msgid "Thousand Parsec SSL"
566msgstr ""
567
568#: ../DEV_extra_translations/extra_translations.py:134
569msgid "Session Traversal Utilities for NAT"
570msgstr ""568msgstr ""
571569
572#: ../DEV_extra_translations/extra_translations.py:135570#: ../DEV_extra_translations/extra_translations.py:135
573msgid "STUN TLS"571msgid "Thousand Parsec Admin"
574msgstr ""
575
576#: ../DEV_extra_translations/extra_translations.py:136
577msgid "Session Traversal Utilities for NAT with TLS encryption"
578msgstr ""572msgstr ""
579573
580#: ../DEV_extra_translations/extra_translations.py:137574#: ../DEV_extra_translations/extra_translations.py:137
581msgid "DirectX 7"575msgid "London Law"
582msgstr ""576msgstr ""
583577
584#: ../DEV_extra_translations/extra_translations.py:138578#: ../DEV_extra_translations/extra_translations.py:138
585msgid "Network games using DirectX 7 API"579msgid "An online multiplayer adaptation of the Scotland Yard board game"
586msgstr ""580msgstr ""
587581
588#: ../DEV_extra_translations/extra_translations.py:139582#: ../DEV_extra_translations/extra_translations.py:139
589msgid "DirectX 8"583msgid "Urban Terror - 27960/udp"
590msgstr ""584msgstr ""
591585
592#: ../DEV_extra_translations/extra_translations.py:140586#: ../DEV_extra_translations/extra_translations.py:140
593msgid "Network games using DirectX 8 API"587msgid ""
588"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
589"port 27660"
594msgstr ""590msgstr ""
595591
596#: ../DEV_extra_translations/extra_translations.py:141592#: ../DEV_extra_translations/extra_translations.py:141
597msgid "Full Metal Soccer server"593msgid "Urban Terror - 27961/udp"
598msgstr ""594msgstr ""
599595
600#: ../DEV_extra_translations/extra_translations.py:142596#: ../DEV_extra_translations/extra_translations.py:142
601#: ../DEV_extra_translations/extra_translations.py:145597msgid ""
602#: ../DEV_extra_translations/extra_translations.py:147598"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
603msgid "A soccer game played with tanks by QuantiCode"599"port 27961"
604msgstr ""600msgstr ""
605601
606#: ../DEV_extra_translations/extra_translations.py:143602#: ../DEV_extra_translations/extra_translations.py:143
607msgid "Games;Sports;"603msgid "Urban Terror - 27962/udp"
608msgstr ""604msgstr ""
609605
610#: ../DEV_extra_translations/extra_translations.py:144606#: ../DEV_extra_translations/extra_translations.py:144
611msgid "Full Metal Soccer ranking server"607msgid ""
608"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
609"port 27962"
610msgstr ""
611
612#: ../DEV_extra_translations/extra_translations.py:145
613msgid "Urban Terror - 27963/udp"
612msgstr ""614msgstr ""
613615
614#: ../DEV_extra_translations/extra_translations.py:146616#: ../DEV_extra_translations/extra_translations.py:146
615msgid "Full Metal Soccer master server"617msgid ""
618"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
619"port 27963"
620msgstr ""
621
622#: ../DEV_extra_translations/extra_translations.py:147
623msgid "OpenRPG"
616msgstr ""624msgstr ""
617625
618#: ../DEV_extra_translations/extra_translations.py:148626#: ../DEV_extra_translations/extra_translations.py:148
619msgid "EDuke32"627msgid ""
628"A map/chat/dice-rolling tool to allow players to play tabletop games on-line"
620msgstr ""629msgstr ""
621630
622#: ../DEV_extra_translations/extra_translations.py:149631#: ../DEV_extra_translations/extra_translations.py:149
623msgid "An enhanced version of Duke Nukem 3D"632msgid "Network;Games;"
624msgstr ""633msgstr ""
625634
626#: ../DEV_extra_translations/extra_translations.py:150635#: ../DEV_extra_translations/extra_translations.py:150
627msgid "Diablo II"636msgid "Ubuntu One"
628msgstr ""637msgstr ""
629638
630#: ../DEV_extra_translations/extra_translations.py:151639#: ../DEV_extra_translations/extra_translations.py:151
631#: ../DEV_extra_translations/extra_translations.py:685640msgid ""
632msgid "Fantasy combat game by Blizzard Entertainment"641"Store files online and sync them between computers and mobile devices, as "
642"well as stream audio and music from cloud to mobile devices"
633msgstr ""643msgstr ""
634644
635#: ../DEV_extra_translations/extra_translations.py:152645#: ../DEV_extra_translations/extra_translations.py:152
636msgid "IRC - 194/tcp"646msgid "Network;Cloud;"
637msgstr ""647msgstr ""
638648
639#: ../DEV_extra_translations/extra_translations.py:153649#: ../DEV_extra_translations/extra_translations.py:153
640msgid "Internet Relay Chat on official port 194 (rarely used)"650msgid "Blobby Volley 2"
641msgstr ""651msgstr ""
642652
643#: ../DEV_extra_translations/extra_translations.py:154653#: ../DEV_extra_translations/extra_translations.py:154
644msgid "Network;IRC;"654msgid "A volleyball game"
645msgstr ""655msgstr ""
646656
647#: ../DEV_extra_translations/extra_translations.py:155657#: ../DEV_extra_translations/extra_translations.py:155
648msgid "IRC"658msgid "OpenMeetings Secure RTMP"
649msgstr ""659msgstr ""
650660
651#: ../DEV_extra_translations/extra_translations.py:156661#: ../DEV_extra_translations/extra_translations.py:156
652msgid ""662msgid "OpenMeetings Real Time Messaging Protocol over SSL"
653"Internet Relay Chat on common default port 6667, using nf_conntrack_irc DCC "
654"helper"
655msgstr ""663msgstr ""
656664
657#: ../DEV_extra_translations/extra_translations.py:157665#: ../DEV_extra_translations/extra_translations.py:157
658msgid "IRC SSL"666msgid "Network;Video Conference;"
659msgstr ""667msgstr ""
660668
661#: ../DEV_extra_translations/extra_translations.py:158669#: ../DEV_extra_translations/extra_translations.py:158
662msgid "Internet Relay Chat on SSL default port 6697"670msgid "OpenMeetings Tunneled RTMP"
663msgstr ""671msgstr ""
664672
665#: ../DEV_extra_translations/extra_translations.py:159673#: ../DEV_extra_translations/extra_translations.py:159
666msgid "Battlefield 1942"674msgid "OpenMeetings Real Time Messaging Protocol over HTTP"
667msgstr ""675msgstr ""
668676
669#: ../DEV_extra_translations/extra_translations.py:160677#: ../DEV_extra_translations/extra_translations.py:160
670msgid "A WWII FPS from Digital Illusions CE"678msgid "OpenMeetings HTTP"
671msgstr ""679msgstr ""
672680
673#: ../DEV_extra_translations/extra_translations.py:161681#: ../DEV_extra_translations/extra_translations.py:161
674msgid "Battlefield 1942 Console"682msgid "OpenMeetings HTTP server"
675msgstr ""683msgstr ""
676684
677#: ../DEV_extra_translations/extra_translations.py:162685#: ../DEV_extra_translations/extra_translations.py:162
678msgid "The RemoteConsole administration tool for Battlefield 1942"686msgid "OpenMeetings DSP"
679msgstr ""687msgstr ""
680688
681#: ../DEV_extra_translations/extra_translations.py:163689#: ../DEV_extra_translations/extra_translations.py:163
682msgid "Chocolate Doom"690msgid "OpenMeetings Desktop Sharing Protocol (ODSP)"
683msgstr ""691msgstr ""
684692
685#: ../DEV_extra_translations/extra_translations.py:164693#: ../DEV_extra_translations/extra_translations.py:164
686msgid ""694msgid "Armagetron Advanced"
687"A Doom source port that accurately reproduces the experience of Doom as it "
688"was played in the 1990s"
689msgstr ""695msgstr ""
690696
691#: ../DEV_extra_translations/extra_translations.py:165697#: ../DEV_extra_translations/extra_translations.py:165
692msgid "Widelands"698msgid "A 3D clone of the Light Cycle game in Tron"
693msgstr ""699msgstr ""
694700
695#: ../DEV_extra_translations/extra_translations.py:166701#: ../DEV_extra_translations/extra_translations.py:166
696msgid "A RTS similar to The Settlers I & II from Blue Byte Software"702msgid "World of Warcraft"
697msgstr ""703msgstr ""
698704
699#: ../DEV_extra_translations/extra_translations.py:167705#: ../DEV_extra_translations/extra_translations.py:167
700msgid "VLC HTTP stream"706msgid "A MMORPG game by Blizzard Entertainment"
701msgstr ""707msgstr ""
702708
703#: ../DEV_extra_translations/extra_translations.py:168709#: ../DEV_extra_translations/extra_translations.py:168
704msgid "VLC media player HTTP stream default port"710msgid "Quake III - 27960/udp"
705msgstr ""711msgstr ""
706712
707#: ../DEV_extra_translations/extra_translations.py:169713#: ../DEV_extra_translations/extra_translations.py:169
708msgid "Audio Video;"714msgid "A FPS by id Software, server on port 27660"
709msgstr ""715msgstr ""
710716
711#: ../DEV_extra_translations/extra_translations.py:170717#: ../DEV_extra_translations/extra_translations.py:170
712msgid "VLC MMS HTTP stream"718msgid "Quake III - 27961/udp"
713msgstr ""719msgstr ""
714720
715#: ../DEV_extra_translations/extra_translations.py:171721#: ../DEV_extra_translations/extra_translations.py:171
716msgid ""722msgid "A FPS by id Software, server on port 27961"
717"VLC media player Microsoft Media Server stream over HTTP (Windows Media HTTP "
718"Streaming Protocol/MS-WMSP) default port"
719msgstr ""723msgstr ""
720724
721#: ../DEV_extra_translations/extra_translations.py:172725#: ../DEV_extra_translations/extra_translations.py:172
722msgid "VLC RTP stream"726msgid "Quake III - 27962/udp"
723msgstr ""727msgstr ""
724728
725#: ../DEV_extra_translations/extra_translations.py:173729#: ../DEV_extra_translations/extra_translations.py:173
726msgid "VLC media player Real-time Transport Protocol default port"730msgid "A FPS by id Software, server on port 27962"
727msgstr ""731msgstr ""
728732
729#: ../DEV_extra_translations/extra_translations.py:174733#: ../DEV_extra_translations/extra_translations.py:174
730msgid "VLC UDP stream"734msgid "Quake III - 27963/udp"
731msgstr ""735msgstr ""
732736
733#: ../DEV_extra_translations/extra_translations.py:175737#: ../DEV_extra_translations/extra_translations.py:175
734msgid "VLC media player User Datagram Protocol default port"738msgid "A FPS by id Software, server on port 27963"
735msgstr ""739msgstr ""
736740
737#: ../DEV_extra_translations/extra_translations.py:176741#: ../DEV_extra_translations/extra_translations.py:176
738#: ../DEV_extra_translations/extra_translations.py:296742msgid "Nicotine"
739msgid "Icecast stream"
740msgstr ""743msgstr ""
741744
742#: ../DEV_extra_translations/extra_translations.py:177745#: ../DEV_extra_translations/extra_translations.py:177
743msgid "VLC media player Icecast stream default port"746msgid ""
744msgstr ""747"Nicotine is a SoulSeek client written in Python, based on the PySoulSeek "
745748"project"
746#: ../DEV_extra_translations/extra_translations.py:178
747msgid "Multicast DNS"
748msgstr ""749msgstr ""
749750
750#: ../DEV_extra_translations/extra_translations.py:179751#: ../DEV_extra_translations/extra_translations.py:179
751msgid "Multicast DNS (Avahi, Bonjour)"752msgid "Tribes 2"
752msgstr ""753msgstr ""
753754
754#: ../DEV_extra_translations/extra_translations.py:180755#: ../DEV_extra_translations/extra_translations.py:180
755msgid "Syslog"756msgid "A multiplayer combat online game by Dynamix - main port"
756msgstr ""757msgstr ""
757758
758#: ../DEV_extra_translations/extra_translations.py:181759#: ../DEV_extra_translations/extra_translations.py:181
759msgid "System logging"760msgid "Tribes 2 - 28000:29000/tcp/udp"
760msgstr ""761msgstr ""
761762
762#: ../DEV_extra_translations/extra_translations.py:182763#: ../DEV_extra_translations/extra_translations.py:182
763msgid "System;"764msgid "A multiplayer combat online game by Dynamix, all suggested ports open"
764msgstr ""765msgstr ""
765766
766#: ../DEV_extra_translations/extra_translations.py:183767#: ../DEV_extra_translations/extra_translations.py:183
767msgid "DHCP"768msgid "KTorrent"
768msgstr ""769msgstr ""
769770
770#: ../DEV_extra_translations/extra_translations.py:184771#: ../DEV_extra_translations/extra_translations.py:184
771msgid "Dynamic Host Configuration Protocol"772msgid "Feature rich BitTorrent client by KDE"
772msgstr ""
773
774#: ../DEV_extra_translations/extra_translations.py:185
775msgid "Tribes 2"
776msgstr ""773msgstr ""
777774
778#: ../DEV_extra_translations/extra_translations.py:186775#: ../DEV_extra_translations/extra_translations.py:186
779msgid "A multiplayer combat online game by Dynamix - main port"776msgid "netPanzer"
780msgstr ""777msgstr ""
781778
782#: ../DEV_extra_translations/extra_translations.py:187779#: ../DEV_extra_translations/extra_translations.py:187
783msgid "Tribes 2 - 28000:29000/tcp/udp"780msgid "An online multiplayer tactical warfare game"
784msgstr ""781msgstr ""
785782
786#: ../DEV_extra_translations/extra_translations.py:188783#: ../DEV_extra_translations/extra_translations.py:188
787msgid "A multiplayer combat online game by Dynamix, all suggested ports open"784msgid "Vendetta Online"
788msgstr ""785msgstr ""
789786
790#: ../DEV_extra_translations/extra_translations.py:189787#: ../DEV_extra_translations/extra_translations.py:189
791msgid "Freeciv"788msgid ""
789"A twitch-based, science fiction massively multiplayer online role-playing "
790"game (MMORPG)"
792msgstr ""791msgstr ""
793792
794#: ../DEV_extra_translations/extra_translations.py:190793#: ../DEV_extra_translations/extra_translations.py:190
795msgid "A turn-based strategy game similar to Civilization I & II by Microprose"794msgid "Games;Role;"
796msgstr ""795msgstr ""
797796
798#: ../DEV_extra_translations/extra_translations.py:191797#: ../DEV_extra_translations/extra_translations.py:191
799msgid "DAAP"798msgid "Yura.net Domination (jRisk)"
800msgstr ""799msgstr ""
801800
802#: ../DEV_extra_translations/extra_translations.py:192801#: ../DEV_extra_translations/extra_translations.py:192
803msgid "Digital Audio Access Protocol"802msgid "A clone of Risk"
804msgstr ""803msgstr ""
805804
806#: ../DEV_extra_translations/extra_translations.py:193805#: ../DEV_extra_translations/extra_translations.py:193
807msgid "Yet Another Netplay Guider"806msgid "Ur-Quan Masters"
808msgstr ""807msgstr ""
809808
810#: ../DEV_extra_translations/extra_translations.py:194809#: ../DEV_extra_translations/extra_translations.py:194
811msgid "YANG - Yet Another Netplay Guider, default game connection"810msgid "An enhanced version of Star Control II from 3DO"
812msgstr ""811msgstr ""
813812
814#: ../DEV_extra_translations/extra_translations.py:195813#: ../DEV_extra_translations/extra_translations.py:195
815msgid "Games;"814msgid "Games;Adventure;"
816msgstr ""815msgstr ""
817816
818#: ../DEV_extra_translations/extra_translations.py:196817#: ../DEV_extra_translations/extra_translations.py:196
819msgid "Yet Another Netplay Guider Hosting"818msgid "Armored Fist 3"
820msgstr ""819msgstr ""
821820
822#: ../DEV_extra_translations/extra_translations.py:197821#: ../DEV_extra_translations/extra_translations.py:197
823msgid "YANG - Yet Another Netplay Guider, room hosting"822msgid "A M1A2 Abrams tank simulation by NovaLogic"
824msgstr ""823msgstr ""
825824
826#: ../DEV_extra_translations/extra_translations.py:198825#: ../DEV_extra_translations/extra_translations.py:198
827msgid "DXX-Rebirth on YANG"826msgid "Widelands"
828msgstr ""827msgstr ""
829828
830#: ../DEV_extra_translations/extra_translations.py:199829#: ../DEV_extra_translations/extra_translations.py:199
831msgid "DXX-Rebirth, a source port of Descent, connected through YANG"830msgid "A RTS similar to The Settlers I & II from Blue Byte Software"
832msgstr ""831msgstr ""
833832
834#: ../DEV_extra_translations/extra_translations.py:200833#: ../DEV_extra_translations/extra_translations.py:200
835msgid "FreeCol"834msgid "USB Redirector"
836msgstr ""835msgstr ""
837836
838#: ../DEV_extra_translations/extra_translations.py:201837#: ../DEV_extra_translations/extra_translations.py:201
839msgid "A turn-based strategy game similar to Colonization by Microprose"838msgid "USB device sharing system from INCENTIVES Pro"
840msgstr ""839msgstr ""
841840
842#: ../DEV_extra_translations/extra_translations.py:202841#: ../DEV_extra_translations/extra_translations.py:202
843msgid "Sid Meier's Civilization IV"842msgid "NFS (Chris Lowth)"
844msgstr ""843msgstr ""
845844
846#: ../DEV_extra_translations/extra_translations.py:203845#: ../DEV_extra_translations/extra_translations.py:203
847msgid "A turn-based strategy game from Firaxis Games"846msgid ""
847"Network File System protocol with static ports at 4000:4002 (some conflicts "
848"with popular games; statd broadcast on random port)"
848msgstr ""849msgstr ""
849850
850#: ../DEV_extra_translations/extra_translations.py:204851#: ../DEV_extra_translations/extra_translations.py:204
851msgid "Ryzom"852msgid "NFS Quota (Chris Lowth)"
852msgstr ""853msgstr ""
853854
854#: ../DEV_extra_translations/extra_translations.py:205855#: ../DEV_extra_translations/extra_translations.py:205
855msgid ""856msgid ""
856"It's also known as The Saga of Ryzom, is a massively multiplayer online role-"857"NFS with user/group filesystem usage quota support with static ports at "
857"playing game (MMORPG)"858"4000:4003 (some conflicts with popular games; statd broadcast on random port)"
858msgstr ""859msgstr ""
859860
860#: ../DEV_extra_translations/extra_translations.py:206861#: ../DEV_extra_translations/extra_translations.py:206
861msgid "Games;Role;"862msgid "ThinkTanks"
862msgstr ""863msgstr ""
863864
864#: ../DEV_extra_translations/extra_translations.py:207865#: ../DEV_extra_translations/extra_translations.py:207
865msgid "Optimized Link State Routing"866msgid ""
867"A 3D tank combat game by BraveTree Productions using the Torque Game Engine"
866msgstr ""868msgstr ""
867869
868#: ../DEV_extra_translations/extra_translations.py:208870#: ../DEV_extra_translations/extra_translations.py:208
869msgid "A mesh networking protocol"871msgid "Minecraft"
870msgstr ""872msgstr ""
871873
872#: ../DEV_extra_translations/extra_translations.py:209874#: ../DEV_extra_translations/extra_translations.py:209
873msgid "Quake"875msgid "A 3D sandbox construction game by Markus Persson"
876msgstr ""
877
878#: ../DEV_extra_translations/extra_translations.py:210
879msgid "Games;"
874msgstr ""880msgstr ""
875881
876#: ../DEV_extra_translations/extra_translations.py:211882#: ../DEV_extra_translations/extra_translations.py:211
877msgid "QuakeWorld"883msgid "SEDS Serious Sam"
878msgstr ""884msgstr ""
879885
880#: ../DEV_extra_translations/extra_translations.py:212886#: ../DEV_extra_translations/extra_translations.py:212
881msgid "An enhanced multiplayer version of Quake by id Software"887msgid "Dedicated server for the FPS by Croteam"
882msgstr ""888msgstr ""
883889
884#: ../DEV_extra_translations/extra_translations.py:213890#: ../DEV_extra_translations/extra_translations.py:213
885msgid "Dropbox"891msgid "SEDS Remote Admin"
886msgstr ""892msgstr ""
887893
888#: ../DEV_extra_translations/extra_translations.py:214894#: ../DEV_extra_translations/extra_translations.py:214
889msgid ""895msgid ""
890"File hosting service, that offers cloud storage, file synchronization and "896"Default remote administration Telnet port for Serious Engine dedicated server"
891"client software"
892msgstr ""897msgstr ""
893898
894#: ../DEV_extra_translations/extra_translations.py:215899#: ../DEV_extra_translations/extra_translations.py:215
895msgid "Legends"900msgid "SEDS - port 25601"
896msgstr ""901msgstr ""
897902
898#: ../DEV_extra_translations/extra_translations.py:216903#: ../DEV_extra_translations/extra_translations.py:216
899msgid "A FPS based on the Torque Engine"904msgid "Dedicated server for the FPS by Croteam, alternate game port 25601"
900msgstr ""905msgstr ""
901906
902#: ../DEV_extra_translations/extra_translations.py:217907#: ../DEV_extra_translations/extra_translations.py:217
903msgid "SEDS Serious Sam"908msgid "SEDS Admin - port 25600"
904msgstr ""909msgstr ""
905910
906#: ../DEV_extra_translations/extra_translations.py:218911#: ../DEV_extra_translations/extra_translations.py:218
907msgid "Dedicated server for the FPS by Croteam"912msgid ""
913"Alternate 25600 remote administration Telnet port for Serious Engine "
914"dedicated server"
908msgstr ""915msgstr ""
909916
910#: ../DEV_extra_translations/extra_translations.py:219917#: ../DEV_extra_translations/extra_translations.py:219
911msgid "SEDS Remote Admin"918msgid "TeamSpeak 3"
912msgstr ""919msgstr ""
913920
914#: ../DEV_extra_translations/extra_translations.py:220921#: ../DEV_extra_translations/extra_translations.py:220
915msgid ""922msgid "TeamSpeak 3 voice service"
916"Default remote administration Telnet port for Serious Engine dedicated server"
917msgstr ""923msgstr ""
918924
919#: ../DEV_extra_translations/extra_translations.py:221925#: ../DEV_extra_translations/extra_translations.py:221
920msgid "SEDS - port 25601"926msgid "TeamSpeak 3 File"
921msgstr ""927msgstr ""
922928
923#: ../DEV_extra_translations/extra_translations.py:222929#: ../DEV_extra_translations/extra_translations.py:222
924msgid "Dedicated server for the FPS by Croteam, alternate game port 25601"930msgid "TeamSpeak 3 file transfer"
925msgstr ""931msgstr ""
926932
927#: ../DEV_extra_translations/extra_translations.py:223933#: ../DEV_extra_translations/extra_translations.py:223
928msgid "SEDS Admin - port 25600"934msgid "TeamSpeak 3 Query"
929msgstr ""935msgstr ""
930936
931#: ../DEV_extra_translations/extra_translations.py:224937#: ../DEV_extra_translations/extra_translations.py:224
932msgid ""938msgid "TeamSpeak 3 TCP query"
933"Alternate 25600 remote administration Telnet port for Serious Engine "
934"dedicated server"
935msgstr ""939msgstr ""
936940
937#: ../DEV_extra_translations/extra_translations.py:225941#: ../DEV_extra_translations/extra_translations.py:225
938msgid "ManiaDrive game server"942msgid "Delta Force: Xtreme"
939msgstr ""943msgstr ""
940944
941#: ../DEV_extra_translations/extra_translations.py:226945#: ../DEV_extra_translations/extra_translations.py:226
942msgid "A clone of TrackMania from Nadeo"946#: ../DEV_extra_translations/extra_translations.py:233
947#: ../DEV_extra_translations/extra_translations.py:292
948#: ../DEV_extra_translations/extra_translations.py:357
949msgid "A FPS combat game by NovaLogic"
943msgstr ""950msgstr ""
944951
945#: ../DEV_extra_translations/extra_translations.py:227952#: ../DEV_extra_translations/extra_translations.py:227
946msgid "ManiaDrive HTTP server "953msgid "Webmin"
947msgstr ""954msgstr ""
948955
949#: ../DEV_extra_translations/extra_translations.py:228956#: ../DEV_extra_translations/extra_translations.py:228
950msgid "ManiaDrive/Raydium game monitor HTTP server"957#: ../DEV_extra_translations/extra_translations.py:231
958msgid "Web-page based system management utility"
951msgstr ""959msgstr ""
952960
953#: ../DEV_extra_translations/extra_translations.py:229961#: ../DEV_extra_translations/extra_translations.py:229
954msgid "Wakfu"962msgid "Network;Shell;"
955msgstr ""963msgstr ""
956964
957#: ../DEV_extra_translations/extra_translations.py:230965#: ../DEV_extra_translations/extra_translations.py:230
958msgid "An online tactical turn-based MMORPG"966msgid "Webmin fast RPC"
959msgstr ""
960
961#: ../DEV_extra_translations/extra_translations.py:231
962msgid "World of Padman - 27960/udp"
963msgstr ""967msgstr ""
964968
965#: ../DEV_extra_translations/extra_translations.py:232969#: ../DEV_extra_translations/extra_translations.py:232
966msgid ""970msgid "Delta Force 2"
967"A FPS by Padworld Entertainment based on Quake III, server on port 27960"
968msgstr ""
969
970#: ../DEV_extra_translations/extra_translations.py:233
971msgid "World of Padman - 27961/udp"
972msgstr ""971msgstr ""
973972
974#: ../DEV_extra_translations/extra_translations.py:234973#: ../DEV_extra_translations/extra_translations.py:234
975msgid ""974msgid "MiniDLNA"
976"A FPS by Padworld Entertainment based on Quake III, server on port 27961"
977msgstr ""975msgstr ""
978976
979#: ../DEV_extra_translations/extra_translations.py:235977#: ../DEV_extra_translations/extra_translations.py:235
980msgid "World of Padman - 27962/udp"978msgid "Serves media files (music, pictures, and video) to clients on a network"
981msgstr ""979msgstr ""
982980
983#: ../DEV_extra_translations/extra_translations.py:236981#: ../DEV_extra_translations/extra_translations.py:236
984msgid ""982msgid "Audio Video;TV;"
985"A FPS by Padworld Entertainment based on Quake III, server on port 27962"
986msgstr ""983msgstr ""
987984
988#: ../DEV_extra_translations/extra_translations.py:237985#: ../DEV_extra_translations/extra_translations.py:237
989msgid "World of Padman - 27963/udp"986msgid "DOSBox IPX"
990msgstr ""987msgstr ""
991988
992#: ../DEV_extra_translations/extra_translations.py:238989#: ../DEV_extra_translations/extra_translations.py:238
993msgid ""990#: ../DEV_extra_translations/extra_translations.py:241
994"A FPS by Padworld Entertainment based on Quake III, server on port 27963"991msgid "DOS system emulator"
995msgstr ""992msgstr ""
996993
997#: ../DEV_extra_translations/extra_translations.py:239994#: ../DEV_extra_translations/extra_translations.py:239
998msgid "D2X-XL"995msgid "System;Emulator;"
999msgstr ""996msgstr ""
1000997
1001#: ../DEV_extra_translations/extra_translations.py:240998#: ../DEV_extra_translations/extra_translations.py:240
1002msgid "A source port of Descent II, the 3D Flying FPS by Outrage Entertainment"999msgid "DOSBox Modem"
1003msgstr ""
1004
1005#: ../DEV_extra_translations/extra_translations.py:241
1006msgid "The Battle for Wesnoth"
1007msgstr ""1000msgstr ""
10081001
1009#: ../DEV_extra_translations/extra_translations.py:2421002#: ../DEV_extra_translations/extra_translations.py:242
1010msgid "Turn-based tactical strategy game"1003msgid "PLEX"
1011msgstr ""1004msgstr ""
10121005
1013#: ../DEV_extra_translations/extra_translations.py:2431006#: ../DEV_extra_translations/extra_translations.py:243
1014msgid "Balazar III"1007msgid "Plex Media Server (Main port)"
1015msgstr ""1008msgstr ""
10161009
1017#: ../DEV_extra_translations/extra_translations.py:2441010#: ../DEV_extra_translations/extra_translations.py:244
1018msgid "A 2D/3D dungeon adventure game"1011msgid "Network;Audio Video;"
1019msgstr ""1012msgstr ""
10201013
1021#: ../DEV_extra_translations/extra_translations.py:2451014#: ../DEV_extra_translations/extra_translations.py:245
1022msgid "F-22 Raptor"1015msgid "PLEX DLNA"
1016msgstr ""
1017
1018#: ../DEV_extra_translations/extra_translations.py:246
1019msgid "Access to the Plex DLNA Server"
1023msgstr ""1020msgstr ""
10241021
1025#: ../DEV_extra_translations/extra_translations.py:2471022#: ../DEV_extra_translations/extra_translations.py:247
1023msgid "PLEX Companion"
1024msgstr ""
1025
1026#: ../DEV_extra_translations/extra_translations.py:2481026#: ../DEV_extra_translations/extra_translations.py:248
1027msgid "GameSpy"1027msgid "Controlling Plex Home Theater via Plex Companion"
1028msgstr ""1028msgstr ""
10291029
1030#: ../DEV_extra_translations/extra_translations.py:2491030#: ../DEV_extra_translations/extra_translations.py:249
1031msgid "GameSpy Arcade"1031msgid "PLEX Avahi discovery"
1032msgstr ""1032msgstr ""
10331033
1034#: ../DEV_extra_translations/extra_translations.py:2501034#: ../DEV_extra_translations/extra_translations.py:250
1035msgid "GameSpy Arcade gaming network"1035msgid "Older Bonjour/Avahi network discovery"
1036msgstr ""1036msgstr ""
10371037
1038#: ../DEV_extra_translations/extra_translations.py:2511038#: ../DEV_extra_translations/extra_translations.py:251
1039msgid "Cube 2: Sauerbraten"1039msgid "PLEX Roku"
1040msgstr ""1040msgstr ""
10411041
1042#: ../DEV_extra_translations/extra_translations.py:2521042#: ../DEV_extra_translations/extra_translations.py:252
1043msgid "A FPS game based on the Cube engine"1043msgid "Controlling Plex for Roku via Plex Companion"
1044msgstr ""1044msgstr ""
10451045
1046#: ../DEV_extra_translations/extra_translations.py:2531046#: ../DEV_extra_translations/extra_translations.py:253
1047msgid "Armagetron Advanced"1047msgid "PLEX GDM"
1048msgstr ""1048msgstr ""
10491049
1050#: ../DEV_extra_translations/extra_translations.py:2541050#: ../DEV_extra_translations/extra_translations.py:254
1051msgid "A 3D clone of the Light Cycle game in Tron"1051msgid "GDM network discovery"
1052msgstr ""1052msgstr ""
10531053
1054#: ../DEV_extra_translations/extra_translations.py:2551054#: ../DEV_extra_translations/extra_translations.py:255
1055msgid "DNS"1055msgid "PLEX DLNA Server (Other port)"
1056msgstr ""1056msgstr ""
10571057
1058#: ../DEV_extra_translations/extra_translations.py:2561058#: ../DEV_extra_translations/extra_translations.py:256
1059msgid "Domain Name System"1059msgid "Another port for Plex DLNA Server"
1060msgstr ""1060msgstr ""
10611061
1062#: ../DEV_extra_translations/extra_translations.py:2571062#: ../DEV_extra_translations/extra_translations.py:257
1063msgid "Alien Arena"1063msgid "Frostwire"
1064msgstr ""1064msgstr ""
10651065
1066#: ../DEV_extra_translations/extra_translations.py:2581066#: ../DEV_extra_translations/extra_translations.py:258
1067msgid "A SciFi competitive FPS based on the CRX/id Tech 2 engine"1067msgid "Frostwire peer-peer file sharing on default port"
1068msgstr ""1068msgstr ""
10691069
1070#: ../DEV_extra_translations/extra_translations.py:2591070#: ../DEV_extra_translations/extra_translations.py:259
1071msgid "Descent 3"1071msgid "Network;File Transfer;P2P;"
1072msgstr ""
1073
1074#: ../DEV_extra_translations/extra_translations.py:260
1075msgid "3D Flying FPS by Outrage Entertainment"
1076msgstr ""1072msgstr ""
10771073
1078#: ../DEV_extra_translations/extra_translations.py:2611074#: ../DEV_extra_translations/extra_translations.py:261
1079msgid "Soldier of Fortune"1075msgid "Neverwinter Nights server"
1080msgstr ""1076msgstr ""
10811077
1082#: ../DEV_extra_translations/extra_translations.py:2621078#: ../DEV_extra_translations/extra_translations.py:262
1083msgid "Soldier of Fortune - A FPS by Raven Software"1079msgid "Default port for Neverwinter Nights, a RPG from Bioware"
1084msgstr ""1080msgstr ""
10851081
1086#: ../DEV_extra_translations/extra_translations.py:2631082#: ../DEV_extra_translations/extra_translations.py:263
1087msgid "Thousand Parsec"1083msgid "DXX-Rebirth"
1088msgstr ""1084msgstr ""
10891085
1090#: ../DEV_extra_translations/extra_translations.py:2641086#: ../DEV_extra_translations/extra_translations.py:264
1087msgid "A source port of Descent, the 3D Flying FPS by Outrage Entertainment"
1088msgstr ""
1089
1090#: ../DEV_extra_translations/extra_translations.py:265
1091msgid "Bos Wars"
1092msgstr ""
1093
1091#: ../DEV_extra_translations/extra_translations.py:2661094#: ../DEV_extra_translations/extra_translations.py:266
1095msgid "A futuristic RTS based on the Stratagus engine"
1096msgstr ""
1097
1098#: ../DEV_extra_translations/extra_translations.py:267
1099msgid "MySQL"
1100msgstr ""
1101
1092#: ../DEV_extra_translations/extra_translations.py:2681102#: ../DEV_extra_translations/extra_translations.py:268
1093msgid "A common framework for building turn based space empire building games"1103msgid "MySQL Database"
1094msgstr ""
1095
1096#: ../DEV_extra_translations/extra_translations.py:265
1097msgid "Thousand Parsec SSL"
1098msgstr ""
1099
1100#: ../DEV_extra_translations/extra_translations.py:267
1101msgid "Thousand Parsec Admin"
1102msgstr ""1104msgstr ""
11031105
1104#: ../DEV_extra_translations/extra_translations.py:2691106#: ../DEV_extra_translations/extra_translations.py:269
1105msgid "Castle-Combat - 50386/tcp"1107msgid "Office;Database;"
1106msgstr ""1108msgstr ""
11071109
1108#: ../DEV_extra_translations/extra_translations.py:2701110#: ../DEV_extra_translations/extra_translations.py:270
1111msgid "rsync daemon"
1112msgstr ""
1113
1114#: ../DEV_extra_translations/extra_translations.py:271
1115msgid "File synchronization utility"
1116msgstr ""
1117
1109#: ../DEV_extra_translations/extra_translations.py:2721118#: ../DEV_extra_translations/extra_translations.py:272
1110msgid "A clone of Rampart from Atari Games"1119msgid "UPnP"
1111msgstr ""
1112
1113#: ../DEV_extra_translations/extra_translations.py:271
1114msgid "Castle-Combat - 8787/tcp"
1115msgstr ""1120msgstr ""
11161121
1117#: ../DEV_extra_translations/extra_translations.py:2731122#: ../DEV_extra_translations/extra_translations.py:273
1118msgid "Postfix Mail Server SMTP"1123msgid ""
1124"Universal Plug and Play. It is a framework which can be used to make "
1125"networked applications"
1119msgstr ""1126msgstr ""
11201127
1121#: ../DEV_extra_translations/extra_translations.py:2741128#: ../DEV_extra_translations/extra_translations.py:274
1129msgid "System;General;"
1130msgstr ""
1131
1132#: ../DEV_extra_translations/extra_translations.py:275
1133msgid "Myth II: Soulblighter"
1134msgstr ""
1135
1122#: ../DEV_extra_translations/extra_translations.py:2761136#: ../DEV_extra_translations/extra_translations.py:276
1137msgid "A real-time tactics game from Bungie"
1138msgstr ""
1139
1140#: ../DEV_extra_translations/extra_translations.py:277
1141msgid "SSDP"
1142msgstr ""
1143
1123#: ../DEV_extra_translations/extra_translations.py:2781144#: ../DEV_extra_translations/extra_translations.py:278
1124msgid "Postfix is a high-performance mail transport agent"1145msgid "Simple Service Discovery Protocol"
1125msgstr ""
1126
1127#: ../DEV_extra_translations/extra_translations.py:275
1128msgid "Postfix Mail Server SMTPS"
1129msgstr ""
1130
1131#: ../DEV_extra_translations/extra_translations.py:277
1132msgid "Postfix Mail Server Submission"
1133msgstr ""1146msgstr ""
11341147
1135#: ../DEV_extra_translations/extra_translations.py:2791148#: ../DEV_extra_translations/extra_translations.py:279
1136msgid "Castle Vox"1149msgid "HTTP"
1137msgstr ""1150msgstr ""
11381151
1139#: ../DEV_extra_translations/extra_translations.py:2801152#: ../DEV_extra_translations/extra_translations.py:280
1140msgid ""1153msgid "WWW standard protocol on port 80/tcp (IANA/Debian www, http)"
1141"A simultaneous-turns strategy game from Sillysoft influenced by Diplomacy "
1142"and Axis & Allies"
1143msgstr ""1154msgstr ""
11441155
1145#: ../DEV_extra_translations/extra_translations.py:2811156#: ../DEV_extra_translations/extra_translations.py:281
1146msgid "Teeworlds"1157msgid "HTTPS"
1147msgstr ""1158msgstr ""
11481159
1149#: ../DEV_extra_translations/extra_translations.py:2821160#: ../DEV_extra_translations/extra_translations.py:282
1150msgid "An open source sidescrolling multiplayer shooting game"1161msgid "WWW standard protocol with SSL/TLS on port 443/tcp (IANA https)"
1151msgstr ""1162msgstr ""
11521163
1153#: ../DEV_extra_translations/extra_translations.py:2831164#: ../DEV_extra_translations/extra_translations.py:283
1154msgid "Quake II"1165msgid "HTTP - 8008/tcp"
1166msgstr ""
1167
1168#: ../DEV_extra_translations/extra_translations.py:284
1169msgid "WWW standard protocol on port 8008/tcp (IANA http-alt)"
1155msgstr ""1170msgstr ""
11561171
1157#: ../DEV_extra_translations/extra_translations.py:2851172#: ../DEV_extra_translations/extra_translations.py:285
1158msgid "NFS"
1159msgstr ""
1160
1161#: ../DEV_extra_translations/extra_translations.py:2861173#: ../DEV_extra_translations/extra_translations.py:286
1162msgid "Network File System"1174msgid "Web Server (HTTP,HTTPS)"
1163msgstr ""1175msgstr ""
11641176
1165#: ../DEV_extra_translations/extra_translations.py:2871177#: ../DEV_extra_translations/extra_translations.py:287
1166msgid "0 A.D."
1167msgstr ""
1168
1169#: ../DEV_extra_translations/extra_translations.py:2881178#: ../DEV_extra_translations/extra_translations.py:288
1170msgid "A free/open-source RTS game of ancient warfare from Wildfire Games"1179msgid "Web Server (8080)"
1171msgstr ""1180msgstr ""
11721181
1173#: ../DEV_extra_translations/extra_translations.py:2891182#: ../DEV_extra_translations/extra_translations.py:289
1174msgid "Lux"1183msgid "HTTP - 8090/tcp"
1175msgstr ""1184msgstr ""
11761185
1177#: ../DEV_extra_translations/extra_translations.py:2901186#: ../DEV_extra_translations/extra_translations.py:290
1178msgid ""1187msgid ""
1179"Delux, Ancient Empires and American History: A turn-based strategy game from "1188"WWW standard protocol on port 8090/tcp (IANA unassigned, commonly "
1180"Sillysoft influenced by Risk"1189"http_alt_alt)"
1181msgstr ""1190msgstr ""
11821191
1183#: ../DEV_extra_translations/extra_translations.py:2911192#: ../DEV_extra_translations/extra_translations.py:291
1184msgid "GGZ Gaming Zone"1193msgid "Delta Force"
1185msgstr ""
1186
1187#: ../DEV_extra_translations/extra_translations.py:292
1188msgid "Network support for GNOME Games"
1189msgstr ""1194msgstr ""
11901195
1191#: ../DEV_extra_translations/extra_translations.py:2931196#: ../DEV_extra_translations/extra_translations.py:293
1192msgid "GNUMP3d"1197msgid "Toribash - 20184"
1193msgstr ""1198msgstr ""
11941199
1195#: ../DEV_extra_translations/extra_translations.py:2941200#: ../DEV_extra_translations/extra_translations.py:294
1196msgid "An audio streaming server"1201#: ../DEV_extra_translations/extra_translations.py:296
1202#: ../DEV_extra_translations/extra_translations.py:298
1203#: ../DEV_extra_translations/extra_translations.py:300
1204#: ../DEV_extra_translations/extra_translations.py:302
1205msgid ""
1206"A fighting game based on the physics sandbox model with customizable moves"
1197msgstr ""1207msgstr ""
11981208
1199#: ../DEV_extra_translations/extra_translations.py:2951209#: ../DEV_extra_translations/extra_translations.py:295
1200msgid "Icecast"1210msgid "Toribash - 20185"
1201msgstr ""1211msgstr ""
12021212
1203#: ../DEV_extra_translations/extra_translations.py:2971213#: ../DEV_extra_translations/extra_translations.py:297
1204msgid "Network;Audio Video;"1214msgid "Toribash - 20186"
1205msgstr ""
1206
1207#: ../DEV_extra_translations/extra_translations.py:298
1208msgid "Icecast - 8000:8001/tcp"
1209msgstr ""1215msgstr ""
12101216
1211#: ../DEV_extra_translations/extra_translations.py:2991217#: ../DEV_extra_translations/extra_translations.py:299
1212msgid "Icecast with SHOUTcast-compatible stream"1218msgid "Toribash - 20187"
1213msgstr ""1219msgstr ""
12141220
1215#: ../DEV_extra_translations/extra_translations.py:3011221#: ../DEV_extra_translations/extra_translations.py:301
1216msgid "Trivial File Transfer Protocol"1222msgid "Toribash Full"
1217msgstr ""
1218
1219#: ../DEV_extra_translations/extra_translations.py:302
1220msgid "Minecraft"
1221msgstr ""1223msgstr ""
12221224
1223#: ../DEV_extra_translations/extra_translations.py:3031225#: ../DEV_extra_translations/extra_translations.py:303
1224msgid "A 3D sandbox construction game by Markus Persson"1226msgid "DEFCON"
1225msgstr ""1227msgstr ""
12261228
1227#: ../DEV_extra_translations/extra_translations.py:3041229#: ../DEV_extra_translations/extra_translations.py:304
1228msgid "Comanche 4"1230msgid "A thermo-nuclear war strategy game from Introversion Software"
1229msgstr ""1231msgstr ""
12301232
1231#: ../DEV_extra_translations/extra_translations.py:3051233#: ../DEV_extra_translations/extra_translations.py:305
1232msgid "A Comanche RAH-66 helicopter simulation by NovaLogic"1234msgid "Doom II"
1233msgstr ""1235msgstr ""
12341236
1235#: ../DEV_extra_translations/extra_translations.py:3061237#: ../DEV_extra_translations/extra_translations.py:306
1236msgid "SiN"1238#: ../DEV_extra_translations/extra_translations.py:458
1239#: ../DEV_extra_translations/extra_translations.py:527
1240#: ../DEV_extra_translations/extra_translations.py:641
1241#: ../DEV_extra_translations/extra_translations.py:649
1242#: ../DEV_extra_translations/extra_translations.py:680
1243msgid "A FPS by id Software"
1237msgstr ""1244msgstr ""
12381245
1239#: ../DEV_extra_translations/extra_translations.py:3071246#: ../DEV_extra_translations/extra_translations.py:307
1240msgid "A FPS by Ritual Entertainment"1247msgid "Full Metal Soccer server"
1241msgstr ""1248msgstr ""
12421249
1243#: ../DEV_extra_translations/extra_translations.py:3081250#: ../DEV_extra_translations/extra_translations.py:308
1244msgid "rsync daemon"1251#: ../DEV_extra_translations/extra_translations.py:310
1252#: ../DEV_extra_translations/extra_translations.py:312
1253msgid "A soccer game played with tanks by QuantiCode"
1245msgstr ""1254msgstr ""
12461255
1247#: ../DEV_extra_translations/extra_translations.py:3091256#: ../DEV_extra_translations/extra_translations.py:309
1248msgid "File synchronization utility"1257msgid "Full Metal Soccer ranking server"
1249msgstr ""
1250
1251#: ../DEV_extra_translations/extra_translations.py:310
1252msgid "Rune"
1253msgstr ""1258msgstr ""
12541259
1255#: ../DEV_extra_translations/extra_translations.py:3111260#: ../DEV_extra_translations/extra_translations.py:311
1256msgid "A third-person fantasy combat game by Human Head Studios"1261msgid "Full Metal Soccer master server"
1257msgstr ""
1258
1259#: ../DEV_extra_translations/extra_translations.py:312
1260msgid "Rune admin"
1261msgstr ""1262msgstr ""
12621263
1263#: ../DEV_extra_translations/extra_translations.py:3131264#: ../DEV_extra_translations/extra_translations.py:313
1264msgid "Web-based administration for the Rune game by Human Head Studios"1265msgid "Warzone 2100"
1265msgstr ""1266msgstr ""
12661267
1267#: ../DEV_extra_translations/extra_translations.py:3141268#: ../DEV_extra_translations/extra_translations.py:314
1268msgid "Liquid War"1269msgid "A RTS game by Pumpkin Studios"
1269msgstr ""1270msgstr ""
12701271
1271#: ../DEV_extra_translations/extra_translations.py:3151272#: ../DEV_extra_translations/extra_translations.py:315
1272msgid "An original shortest path algorithm and core concept"1273msgid "iMaze"
1273msgstr ""1274msgstr ""
12741275
1275#: ../DEV_extra_translations/extra_translations.py:3161276#: ../DEV_extra_translations/extra_translations.py:316
1276msgid "The Mana World"1277msgid "A maze combat game in 3D"
1277msgstr ""1278msgstr ""
12781279
1279#: ../DEV_extra_translations/extra_translations.py:3171280#: ../DEV_extra_translations/extra_translations.py:317
1280msgid "A fantasy MMORPG"1281msgid "Conquest"
1281msgstr ""1282msgstr ""
12821283
1283#: ../DEV_extra_translations/extra_translations.py:3181284#: ../DEV_extra_translations/extra_translations.py:318
1284msgid "Drakan: Order of the Flame"1285#: ../DEV_extra_translations/extra_translations.py:320
1286msgid "A space warfare game"
1285msgstr ""1287msgstr ""
12861288
1287#: ../DEV_extra_translations/extra_translations.py:3191289#: ../DEV_extra_translations/extra_translations.py:319
1288msgid "A dragon-riding action-adventure from Surreal Software"1290msgid "Conquest Metaserver"
1289msgstr ""
1290
1291#: ../DEV_extra_translations/extra_translations.py:320
1292msgid "HTTP"
1293msgstr ""1291msgstr ""
12941292
1295#: ../DEV_extra_translations/extra_translations.py:3211293#: ../DEV_extra_translations/extra_translations.py:321
1296msgid "WWW standard protocol on port 80/tcp (IANA/Debian www, http)"1294msgid "PvPGN"
1297msgstr ""1295msgstr ""
12981296
1299#: ../DEV_extra_translations/extra_translations.py:3221297#: ../DEV_extra_translations/extra_translations.py:322
1300msgid "HTTPS"1298msgid "Player vs Player Gaming Network server emulation based on bnetd"
1301msgstr ""1299msgstr ""
13021300
1303#: ../DEV_extra_translations/extra_translations.py:3231301#: ../DEV_extra_translations/extra_translations.py:323
1304msgid "WWW standard protocol with SSL/TLS on port 443/tcp (IANA https)"1302msgid "PvPGN Address Translation"
1305msgstr ""1303msgstr ""
13061304
1307#: ../DEV_extra_translations/extra_translations.py:3241305#: ../DEV_extra_translations/extra_translations.py:324
1308msgid "HTTP - 8008/tcp"1306msgid "Player vs Player Gaming Network Address translation port"
1309msgstr ""1307msgstr ""
13101308
1311#: ../DEV_extra_translations/extra_translations.py:3251309#: ../DEV_extra_translations/extra_translations.py:325
1312msgid "WWW standard protocol on port 8008/tcp (IANA http-alt)"1310msgid "ManiaDrive game server"
1313msgstr ""1311msgstr ""
13141312
1315#: ../DEV_extra_translations/extra_translations.py:3261313#: ../DEV_extra_translations/extra_translations.py:326
1314msgid "A clone of TrackMania from Nadeo"
1315msgstr ""
1316
1316#: ../DEV_extra_translations/extra_translations.py:3271317#: ../DEV_extra_translations/extra_translations.py:327
1317msgid "Web Server (HTTP,HTTPS)"1318msgid "ManiaDrive HTTP server "
1318msgstr ""1319msgstr ""
13191320
1320#: ../DEV_extra_translations/extra_translations.py:3281321#: ../DEV_extra_translations/extra_translations.py:328
1322msgid "ManiaDrive/Raydium game monitor HTTP server"
1323msgstr ""
1324
1321#: ../DEV_extra_translations/extra_translations.py:3291325#: ../DEV_extra_translations/extra_translations.py:329
1322msgid "Web Server (8080)"1326msgid "GameRanger"
1323msgstr ""1327msgstr ""
13241328
1325#: ../DEV_extra_translations/extra_translations.py:3301329#: ../DEV_extra_translations/extra_translations.py:330
1326msgid "HTTP - 8090/tcp"1330msgid "A game server browser from GameRanger Technologies"
1327msgstr ""1331msgstr ""
13281332
1329#: ../DEV_extra_translations/extra_translations.py:3311333#: ../DEV_extra_translations/extra_translations.py:331
1330msgid ""1334msgid "Firefly Media Server"
1331"WWW standard protocol on port 8090/tcp (IANA unassigned, commonly "
1332"http_alt_alt)"
1333msgstr ""1335msgstr ""
13341336
1335#: ../DEV_extra_translations/extra_translations.py:3321337#: ../DEV_extra_translations/extra_translations.py:332
1336msgid "UPS Tools daemon"1338msgid "DAAP audio server formerly known as mt-daapd"
1337msgstr ""1339msgstr ""
13381340
1339#: ../DEV_extra_translations/extra_translations.py:3331341#: ../DEV_extra_translations/extra_translations.py:333
1340msgid "Network UPS Tools"1342msgid "Network;Audio Video;Audio;"
1341msgstr ""1343msgstr ""
13421344
1343#: ../DEV_extra_translations/extra_translations.py:3341345#: ../DEV_extra_translations/extra_translations.py:334
1344msgid "XMPP"1346msgid "Descent 3"
1345msgstr ""1347msgstr ""
13461348
1347#: ../DEV_extra_translations/extra_translations.py:3351349#: ../DEV_extra_translations/extra_translations.py:335
1348msgid "Extensible Messaging and Presence Protocol client connection (Jabber)"1350msgid "3D Flying FPS by Outrage Entertainment"
1349msgstr ""1351msgstr ""
13501352
1351#: ../DEV_extra_translations/extra_translations.py:3361353#: ../DEV_extra_translations/extra_translations.py:336
1352msgid "Network;Telephony;Instant Messaging;"1354msgid "Teeworlds"
1353msgstr ""1355msgstr ""
13541356
1355#: ../DEV_extra_translations/extra_translations.py:3371357#: ../DEV_extra_translations/extra_translations.py:337
1356msgid "XMPP SSL"1358msgid "An open source sidescrolling multiplayer shooting game"
1357msgstr ""1359msgstr ""
13581360
1359#: ../DEV_extra_translations/extra_translations.py:3381361#: ../DEV_extra_translations/extra_translations.py:338
1360msgid ""1362msgid "SSH"
1361"Extensible Messaging and Presence Protocol (Jabber) client connection with "
1362"SSL encryption"
1363msgstr ""1363msgstr ""
13641364
1365#: ../DEV_extra_translations/extra_translations.py:3391365#: ../DEV_extra_translations/extra_translations.py:339
1366msgid "XMPP Interserver"1366msgid "Secure Shell"
1367msgstr ""1367msgstr ""
13681368
1369#: ../DEV_extra_translations/extra_translations.py:3401369#: ../DEV_extra_translations/extra_translations.py:340
1370msgid "Extensible Messaging and Presence Protocol server-server connection"1370msgid "It may be a security risk to use a default allow policy for SSH"
1371msgstr ""1371msgstr ""
13721372
1373#: ../DEV_extra_translations/extra_translations.py:3411373#: ../DEV_extra_translations/extra_translations.py:341
1374msgid "XMPP Serverless"1374msgid "Majesty: The Fantasy Kingdom Sim"
1375msgstr ""1375msgstr ""
13761376
1377#: ../DEV_extra_translations/extra_translations.py:3421377#: ../DEV_extra_translations/extra_translations.py:342
1378msgid ""1378msgid "A RTS by Cyberlore Studios, ported to Linux by Linux Game Publishing"
1379"Extensible Messaging and Presence Protocol link-local messaging/serverless "
1380"messaging"
1381msgstr ""1379msgstr ""
13821380
1383#: ../DEV_extra_translations/extra_translations.py:3431381#: ../DEV_extra_translations/extra_translations.py:343
1384msgid "FreeSpace 2"1382msgid "Glest"
1385msgstr ""1383msgstr ""
13861384
1387#: ../DEV_extra_translations/extra_translations.py:3441385#: ../DEV_extra_translations/extra_translations.py:344
1388msgid "Space combat simulation by Volition"1386msgid "A free, open source 3D RTS game server"
1389msgstr ""1387msgstr ""
13901388
1391#: ../DEV_extra_translations/extra_translations.py:3451389#: ../DEV_extra_translations/extra_translations.py:345
1392msgid "Dark Horizons: LI"1390msgid "VLC HTTP stream"
1393msgstr ""1391msgstr ""
13941392
1395#: ../DEV_extra_translations/extra_translations.py:3461393#: ../DEV_extra_translations/extra_translations.py:346
1396msgid ""1394msgid "VLC media player HTTP stream default port"
1397"Lore Invasion. A mech-style FPS by Max Gaming Technologies using the Torque "
1398"Game Engine"
1399msgstr ""1395msgstr ""
14001396
1401#: ../DEV_extra_translations/extra_translations.py:3471397#: ../DEV_extra_translations/extra_translations.py:347
1402msgid "YS FLIGHT SIMULATION 2000"1398msgid "Audio Video;"
1403msgstr ""1399msgstr ""
14041400
1405#: ../DEV_extra_translations/extra_translations.py:3481401#: ../DEV_extra_translations/extra_translations.py:348
1406msgid "A 3D flight simulator"1402msgid "VLC MMS HTTP stream"
1407msgstr ""1403msgstr ""
14081404
1409#: ../DEV_extra_translations/extra_translations.py:3491405#: ../DEV_extra_translations/extra_translations.py:349
1410msgid "KTorrent"1406msgid ""
1407"VLC media player Microsoft Media Server stream over HTTP (Windows Media HTTP "
1408"Streaming Protocol/MS-WMSP) default port"
1411msgstr ""1409msgstr ""
14121410
1413#: ../DEV_extra_translations/extra_translations.py:3501411#: ../DEV_extra_translations/extra_translations.py:350
1414msgid "Feature rich BitTorrent client by KDE"1412msgid "VLC RTP stream"
1413msgstr ""
1414
1415#: ../DEV_extra_translations/extra_translations.py:351
1416msgid "VLC media player Real-time Transport Protocol default port"
1415msgstr ""1417msgstr ""
14161418
1417#: ../DEV_extra_translations/extra_translations.py:3521419#: ../DEV_extra_translations/extra_translations.py:352
1418msgid "Glest"1420msgid "VLC UDP stream"
1419msgstr ""1421msgstr ""
14201422
1421#: ../DEV_extra_translations/extra_translations.py:3531423#: ../DEV_extra_translations/extra_translations.py:353
1422msgid "A free, open source 3D RTS game server"1424msgid "VLC media player User Datagram Protocol default port"
1423msgstr ""1425msgstr ""
14241426
1425#: ../DEV_extra_translations/extra_translations.py:3541427#: ../DEV_extra_translations/extra_translations.py:354
1426msgid "Sacred - port 2005"1428#: ../DEV_extra_translations/extra_translations.py:433
1429msgid "Icecast stream"
1427msgstr ""1430msgstr ""
14281431
1429#: ../DEV_extra_translations/extra_translations.py:3551432#: ../DEV_extra_translations/extra_translations.py:355
1430#: ../DEV_extra_translations/extra_translations.py:3571433msgid "VLC media player Icecast stream default port"
1434msgstr ""
1435
1436#: ../DEV_extra_translations/extra_translations.py:356
1437msgid "Joint Operations: Typhoon Rising"
1438msgstr ""
1439
1440#: ../DEV_extra_translations/extra_translations.py:358
1441msgid "VNC server display :0"
1442msgstr ""
1443
1431#: ../DEV_extra_translations/extra_translations.py:3591444#: ../DEV_extra_translations/extra_translations.py:359
1445msgid "Virtual Network Computing standard server display :0"
1446msgstr ""
1447
1432#: ../DEV_extra_translations/extra_translations.py:3611448#: ../DEV_extra_translations/extra_translations.py:361
1433#: ../DEV_extra_translations/extra_translations.py:3631449#: ../DEV_extra_translations/extra_translations.py:373
1434#: ../DEV_extra_translations/extra_translations.py:3651450msgid "VNC displays :0-:1"
1435msgid "Server port for the fantasy RPG by Ascaron Entertainment"
1436msgstr ""
1437
1438#: ../DEV_extra_translations/extra_translations.py:356
1439msgid "Sacred - ports 2005:2006"
1440msgstr ""
1441
1442#: ../DEV_extra_translations/extra_translations.py:358
1443msgid "Sacred - ports 2005:2007"
1444msgstr ""
1445
1446#: ../DEV_extra_translations/extra_translations.py:360
1447msgid "Sacred - ports 2005:2008"
1448msgstr ""1451msgstr ""
14491452
1450#: ../DEV_extra_translations/extra_translations.py:3621453#: ../DEV_extra_translations/extra_translations.py:362
1451msgid "Sacred - ports 2005:2009"1454msgid "Virtual Network Computing standard server displays :0 through :1"
1452msgstr ""1455msgstr ""
14531456
1454#: ../DEV_extra_translations/extra_translations.py:3641457#: ../DEV_extra_translations/extra_translations.py:364
1455msgid "Sacred - ports 2005:2010"1458#: ../DEV_extra_translations/extra_translations.py:376
1459msgid "VNC displays :0-:3"
1456msgstr ""1460msgstr ""
14571461
1458#: ../DEV_extra_translations/extra_translations.py:3661462#: ../DEV_extra_translations/extra_translations.py:365
1459msgid "Hexen II - 26900/udp"1463msgid "Virtual Network Computing standard server displays :0 through :3"
1460msgstr ""1464msgstr ""
14611465
1462#: ../DEV_extra_translations/extra_translations.py:3671466#: ../DEV_extra_translations/extra_translations.py:367
1463msgid "A fantasy FPS by Raven Software, server on port 27660"1467#: ../DEV_extra_translations/extra_translations.py:379
1468msgid "VNC displays :0-:7"
1464msgstr ""1469msgstr ""
14651470
1466#: ../DEV_extra_translations/extra_translations.py:3681471#: ../DEV_extra_translations/extra_translations.py:368
1467msgid "Hexen II - 26901/udp"1472msgid "Virtual Network Computing standard server displays :0 through :7"
1468msgstr ""
1469
1470#: ../DEV_extra_translations/extra_translations.py:369
1471msgid "A fantasy FPS by Raven Software, server on port 26901"
1472msgstr ""1473msgstr ""
14731474
1474#: ../DEV_extra_translations/extra_translations.py:3701475#: ../DEV_extra_translations/extra_translations.py:370
1475msgid "Hexen II - 26902/udp"1476msgid "VNC http server display :0"
1476msgstr ""1477msgstr ""
14771478
1478#: ../DEV_extra_translations/extra_translations.py:3711479#: ../DEV_extra_translations/extra_translations.py:371
1479msgid "A fantasy FPS by Raven Software, server on port 26902"1480msgid "Virtual Network Computing http server display :0"
1480msgstr ""
1481
1482#: ../DEV_extra_translations/extra_translations.py:372
1483msgid "Hexen II - 26903/udp"
1484msgstr ""
1485
1486#: ../DEV_extra_translations/extra_translations.py:373
1487msgid "A fantasy FPS by Raven Software, server on port 26903"
1488msgstr ""1481msgstr ""
14891482
1490#: ../DEV_extra_translations/extra_translations.py:3741483#: ../DEV_extra_translations/extra_translations.py:374
1491msgid "HexenWorld - 26950/udp"1484msgid "Virtual Network Computing http server displays :0 through :1"
1492msgstr ""
1493
1494#: ../DEV_extra_translations/extra_translations.py:375
1495msgid "HexenWorld server by Raven Software"
1496msgstr ""
1497
1498#: ../DEV_extra_translations/extra_translations.py:376
1499msgid "NSClient++"
1500msgstr ""1485msgstr ""
15011486
1502#: ../DEV_extra_translations/extra_translations.py:3771487#: ../DEV_extra_translations/extra_translations.py:377
1503msgid "Used to monitor Windows machines from a Nagios Server"1488msgid "Virtual Network Computing http server displays :0 through :3"
1504msgstr ""
1505
1506#: ../DEV_extra_translations/extra_translations.py:378
1507msgid "Knights and Merchants TSK"
1508msgstr ""
1509
1510#: ../DEV_extra_translations/extra_translations.py:379
1511msgid "A RTS by Joymania"
1512msgstr ""1489msgstr ""
15131490
1514#: ../DEV_extra_translations/extra_translations.py:3801491#: ../DEV_extra_translations/extra_translations.py:380
1515msgid "Mumble"1492msgid "Virtual Network Computing http server displays :0 through :7"
1516msgstr ""
1517
1518#: ../DEV_extra_translations/extra_translations.py:381
1519msgid "A voice chat application for groups"
1520msgstr ""1493msgstr ""
15211494
1522#: ../DEV_extra_translations/extra_translations.py:3821495#: ../DEV_extra_translations/extra_translations.py:382
1523msgid "Gamer's Internet Tunnel"1496msgid "LPD"
1524msgstr ""1497msgstr ""
15251498
1526#: ../DEV_extra_translations/extra_translations.py:3831499#: ../DEV_extra_translations/extra_translations.py:383
1527msgid "IPX network emulator from Morpheus Software"1500msgid "LPD server"
1528msgstr ""1501msgstr ""
15291502
1530#: ../DEV_extra_translations/extra_translations.py:3841503#: ../DEV_extra_translations/extra_translations.py:384
1531msgid "OpenRPG"1504msgid "DNS"
1532msgstr ""1505msgstr ""
15331506
1534#: ../DEV_extra_translations/extra_translations.py:3851507#: ../DEV_extra_translations/extra_translations.py:385
1535msgid ""1508msgid "Domain Name System"
1536"A map/chat/dice-rolling tool to allow players to play tabletop games on-line"
1537msgstr ""1509msgstr ""
15381510
1539#: ../DEV_extra_translations/extra_translations.py:3861511#: ../DEV_extra_translations/extra_translations.py:386
1540msgid "Deluge Torrent"1512msgid "qBittorent"
1541msgstr ""1513msgstr ""
15421514
1543#: ../DEV_extra_translations/extra_translations.py:3871515#: ../DEV_extra_translations/extra_translations.py:387
1544msgid "Cross-platform BitTorrent client written with Python and GTK+"1516msgid "Cross-platform BitTorrent client GUI written with Qt4"
1545msgstr ""1517msgstr ""
15461518
1547#: ../DEV_extra_translations/extra_translations.py:3891519#: ../DEV_extra_translations/extra_translations.py:389
1548msgid "TeamSpeak 3"1520msgid "Doomsday"
1549msgstr ""1521msgstr ""
15501522
1551#: ../DEV_extra_translations/extra_translations.py:3901523#: ../DEV_extra_translations/extra_translations.py:390
1552msgid "TeamSpeak 3 voice service"1524msgid ""
1525"A source port of id Software's Doom engine which supports Doom, Heretic, and "
1526"Hexen"
1553msgstr ""1527msgstr ""
15541528
1555#: ../DEV_extra_translations/extra_translations.py:3911529#: ../DEV_extra_translations/extra_translations.py:391
1556msgid "TeamSpeak 3 File"1530msgid "XPilot"
1557msgstr ""1531msgstr ""
15581532
1559#: ../DEV_extra_translations/extra_translations.py:3921533#: ../DEV_extra_translations/extra_translations.py:392
1560msgid "TeamSpeak 3 file transfer"
1561msgstr ""
1562
1563#: ../DEV_extra_translations/extra_translations.py:393
1564msgid "TeamSpeak 3 Query"
1565msgstr ""
1566
1567#: ../DEV_extra_translations/extra_translations.py:3941534#: ../DEV_extra_translations/extra_translations.py:394
1568msgid "TeamSpeak 3 TCP query"
1569msgstr ""
1570
1571#: ../DEV_extra_translations/extra_translations.py:395
1572msgid "Amule"
1573msgstr ""
1574
1575#: ../DEV_extra_translations/extra_translations.py:3961535#: ../DEV_extra_translations/extra_translations.py:396
1576msgid ""
1577"Free peer-to-peer file sharing application that works with the EDonkey "
1578"network and the Kad network"
1579msgstr ""
1580
1581#: ../DEV_extra_translations/extra_translations.py:3981536#: ../DEV_extra_translations/extra_translations.py:398
1582msgid "Warcraft II Battle.net"1537#: ../DEV_extra_translations/extra_translations.py:400
1538msgid "A 2D space combat game"
1539msgstr ""
1540
1541#: ../DEV_extra_translations/extra_translations.py:393
1542msgid "XPilot 2-players"
1543msgstr ""
1544
1545#: ../DEV_extra_translations/extra_translations.py:395
1546msgid "XPilot 4-players"
1547msgstr ""
1548
1549#: ../DEV_extra_translations/extra_translations.py:397
1550msgid "XPilot 8-players"
1583msgstr ""1551msgstr ""
15841552
1585#: ../DEV_extra_translations/extra_translations.py:3991553#: ../DEV_extra_translations/extra_translations.py:399
1586msgid "Strategy game by Blizzard Entertainment"1554msgid "XPilot 16-players"
1587msgstr ""
1588
1589#: ../DEV_extra_translations/extra_translations.py:400
1590msgid "World of Warcraft"
1591msgstr ""1555msgstr ""
15921556
1593#: ../DEV_extra_translations/extra_translations.py:4011557#: ../DEV_extra_translations/extra_translations.py:401
1594msgid "A MMORPG game by Blizzard Entertainment"1558#: ../DEV_extra_translations/extra_translations.py:701
1559msgid "FTP"
1595msgstr ""1560msgstr ""
15961561
1597#: ../DEV_extra_translations/extra_translations.py:4021562#: ../DEV_extra_translations/extra_translations.py:402
1598msgid "UFO: Alien Invasion"1563#: ../DEV_extra_translations/extra_translations.py:702
1564msgid "File Transfer Protocol"
1599msgstr ""1565msgstr ""
16001566
1601#: ../DEV_extra_translations/extra_translations.py:4031567#: ../DEV_extra_translations/extra_translations.py:403
1602msgid "An open-source 3D RTS inspired by X-COM"1568msgid "Soldier of Fortune"
1603msgstr ""1569msgstr ""
16041570
1605#: ../DEV_extra_translations/extra_translations.py:4041571#: ../DEV_extra_translations/extra_translations.py:404
1606msgid "Subversion Server"1572msgid "Soldier of Fortune - A FPS by Raven Software"
1607msgstr ""1573msgstr ""
16081574
1609#: ../DEV_extra_translations/extra_translations.py:4051575#: ../DEV_extra_translations/extra_translations.py:405
1610msgid "Subversion server for access to Subversion repositories"1576msgid "Counter-Strike 2D"
1611msgstr ""1577msgstr ""
16121578
1613#: ../DEV_extra_translations/extra_translations.py:4061579#: ../DEV_extra_translations/extra_translations.py:406
1614msgid "Heavy Gear II"1580msgid ""
1581"A top-down 2D clone of Valve Software's Counter-Strike by Unreal Software"
1615msgstr ""1582msgstr ""
16161583
1617#: ../DEV_extra_translations/extra_translations.py:4071584#: ../DEV_extra_translations/extra_translations.py:407
1618msgid ""1585msgid "NTP"
1619"A mech FPS based on the Dream Pod 9 universe from Activision and Loki "
1620"Software"
1621msgstr ""1586msgstr ""
16221587
1623#: ../DEV_extra_translations/extra_translations.py:4081588#: ../DEV_extra_translations/extra_translations.py:408
1624msgid "Steam"1589msgid "Network Time Protocol"
1625msgstr ""1590msgstr ""
16261591
1627#: ../DEV_extra_translations/extra_translations.py:4091592#: ../DEV_extra_translations/extra_translations.py:409
1628msgid "Software distribution service and game server browser from Valve"1593msgid "Network;Time;"
1629msgstr ""1594msgstr ""
16301595
1631#: ../DEV_extra_translations/extra_translations.py:4101596#: ../DEV_extra_translations/extra_translations.py:410
1632msgid "For Steam Client see the category: Games / Steam"1597msgid "Telnet"
1633msgstr ""1598msgstr ""
16341599
1635#: ../DEV_extra_translations/extra_translations.py:4111600#: ../DEV_extra_translations/extra_translations.py:411
1636msgid "AMANDA"1601msgid "Text-based remote access (like SSH but without the security)"
1637msgstr ""1602msgstr ""
16381603
1639#: ../DEV_extra_translations/extra_translations.py:4121604#: ../DEV_extra_translations/extra_translations.py:412
1640msgid "Backup server from Zmanda; standard port with nf_conntrack_amanda"1605msgid ""
1606"Telnet is like SSH but without security. It'd be better to use the 'Telnet "
1607"SSL'"
1641msgstr ""1608msgstr ""
16421609
1643#: ../DEV_extra_translations/extra_translations.py:4131610#: ../DEV_extra_translations/extra_translations.py:413
1644msgid "Network;Archiving;"1611msgid "Telnet TLS/SSL"
1645msgstr ""1612msgstr ""
16461613
1647#: ../DEV_extra_translations/extra_translations.py:4141614#: ../DEV_extra_translations/extra_translations.py:414
1648msgid "Delta Force: BHD"1615msgid "Text-based remote access (like SSH but without the security) SSL"
1649msgstr ""1616msgstr ""
16501617
1651#: ../DEV_extra_translations/extra_translations.py:4151618#: ../DEV_extra_translations/extra_translations.py:415
1652msgid "Black Hawk Down. A FPS combat game by NovaLogic"1619msgid "Asterisk"
1653msgstr ""1620msgstr ""
16541621
1655#: ../DEV_extra_translations/extra_translations.py:4161622#: ../DEV_extra_translations/extra_translations.py:416
1656msgid "Daimonin"1623msgid "An open source telephony switching and private branch exchange service"
1657msgstr ""1624msgstr ""
16581625
1659#: ../DEV_extra_translations/extra_translations.py:4171626#: ../DEV_extra_translations/extra_translations.py:417
1660msgid "An open-source MMORPG"1627msgid "Review that ports are the same in /etc/asterisk/rtp.conf"
1661msgstr ""1628msgstr ""
16621629
1663#: ../DEV_extra_translations/extra_translations.py:4181630#: ../DEV_extra_translations/extra_translations.py:418
1664#: ../DEV_extra_translations/extra_translations.py:6521631msgid "Skype Normal"
1665msgid "SANE scanner"
1666msgstr ""1632msgstr ""
16671633
1668#: ../DEV_extra_translations/extra_translations.py:4191634#: ../DEV_extra_translations/extra_translations.py:419
1669#: ../DEV_extra_translations/extra_translations.py:6531635msgid "Proprietary Voice over IP service and software application"
1670msgid "Scanner Access Now Easy - scanner sharing server"
1671msgstr ""1636msgstr ""
16721637
1673#: ../DEV_extra_translations/extra_translations.py:4201638#: ../DEV_extra_translations/extra_translations.py:420
1674msgid "F-16 Multirole Fighter"1639msgid "UPS Tools daemon"
1675msgstr ""1640msgstr ""
16761641
1677#: ../DEV_extra_translations/extra_translations.py:4211642#: ../DEV_extra_translations/extra_translations.py:421
1678msgid "A F-16 simulation by NovaLogic"1643msgid "Network UPS Tools"
1679msgstr ""1644msgstr ""
16801645
1681#: ../DEV_extra_translations/extra_translations.py:4221646#: ../DEV_extra_translations/extra_translations.py:422
1682msgid "usbip"1647msgid "System;"
1683msgstr ""1648msgstr ""
16841649
1685#: ../DEV_extra_translations/extra_translations.py:4231650#: ../DEV_extra_translations/extra_translations.py:423
1686msgid "A Peripheral Bus Extension for Device Sharing over IP Network"1651msgid "MPD"
1687msgstr ""1652msgstr ""
16881653
1689#: ../DEV_extra_translations/extra_translations.py:4241654#: ../DEV_extra_translations/extra_translations.py:424
1690msgid "Kali"1655msgid "Music Player Daemon. A server for streaming music"
1691msgstr ""1656msgstr ""
16921657
1693#: ../DEV_extra_translations/extra_translations.py:4251658#: ../DEV_extra_translations/extra_translations.py:425
1694msgid "Internet game browser and IPX network emulator"1659msgid "Vibe Streamer"
1695msgstr ""1660msgstr ""
16961661
1697#: ../DEV_extra_translations/extra_translations.py:4261662#: ../DEV_extra_translations/extra_translations.py:426
1698msgid "Shogo: Mobile Armour Division"1663msgid "A free MP3 streaming server"
1699msgstr ""1664msgstr ""
17001665
1701#: ../DEV_extra_translations/extra_translations.py:4271666#: ../DEV_extra_translations/extra_translations.py:427
1702msgid "A FPS by Monolith Productions"1667#: ../DEV_extra_translations/extra_translations.py:711
1668msgid "hddtemp"
1703msgstr ""1669msgstr ""
17041670
1705#: ../DEV_extra_translations/extra_translations.py:4281671#: ../DEV_extra_translations/extra_translations.py:428
1706msgid "IPP"1672msgid "Data storage device temperature data server"
1707msgstr ""1673msgstr ""
17081674
1709#: ../DEV_extra_translations/extra_translations.py:4291675#: ../DEV_extra_translations/extra_translations.py:429
1710msgid "Internet Printing Protocol"1676msgid "System;Monitor;"
1711msgstr ""1677msgstr ""
17121678
1713#: ../DEV_extra_translations/extra_translations.py:4301679#: ../DEV_extra_translations/extra_translations.py:430
1714msgid "Network;Printing;"1680msgid "XBMC Remote"
1715msgstr ""1681msgstr ""
17161682
1717#: ../DEV_extra_translations/extra_translations.py:4311683#: ../DEV_extra_translations/extra_translations.py:431
1718msgid "Enemy Territory: Quake Wars"1684msgid "Remote control for XBMC"
1719msgstr ""1685msgstr ""
17201686
1721#: ../DEV_extra_translations/extra_translations.py:4321687#: ../DEV_extra_translations/extra_translations.py:432
1722msgid "A FPS by Splash Damage"1688msgid "Icecast"
1723msgstr ""
1724
1725#: ../DEV_extra_translations/extra_translations.py:433
1726msgid "Delta Force: TFD"
1727msgstr ""1689msgstr ""
17281690
1729#: ../DEV_extra_translations/extra_translations.py:4341691#: ../DEV_extra_translations/extra_translations.py:434
1730msgid "Task Force Dagger. A FPS combat game by NovaLogic"1692msgid "Icecast - 8000:8001/tcp"
1731msgstr ""1693msgstr ""
17321694
1733#: ../DEV_extra_translations/extra_translations.py:4351695#: ../DEV_extra_translations/extra_translations.py:435
1734msgid "Nexuiz"1696msgid "Icecast with SHOUTcast-compatible stream"
1735msgstr ""1697msgstr ""
17361698
1737#: ../DEV_extra_translations/extra_translations.py:4361699#: ../DEV_extra_translations/extra_translations.py:436
1738msgid "A FPS based on Darkplaces/Quake engine by id Software"1700msgid "Serious Sam"
1739msgstr ""1701msgstr ""
17401702
1741#: ../DEV_extra_translations/extra_translations.py:4371703#: ../DEV_extra_translations/extra_translations.py:437
1742msgid "Savage 2: A Tortured Soul"1704#: ../DEV_extra_translations/extra_translations.py:836
1705msgid "FPS by Croteam"
1743msgstr ""1706msgstr ""
17441707
1745#: ../DEV_extra_translations/extra_translations.py:4381708#: ../DEV_extra_translations/extra_translations.py:438
1746#: ../DEV_extra_translations/extra_translations.py:7991709msgid "MegaMek"
1747msgid "A RTS/FPS from S2 Games"
1748msgstr ""1710msgstr ""
17491711
1750#: ../DEV_extra_translations/extra_translations.py:4391712#: ../DEV_extra_translations/extra_translations.py:439
1751msgid "SIP"1713msgid "A unofficial online BattleTech game"
1752msgstr ""1714msgstr ""
17531715
1754#: ../DEV_extra_translations/extra_translations.py:4401716#: ../DEV_extra_translations/extra_translations.py:440
1755msgid "Session Initiation Protocol, unencrypted, using nf_conntrack_sip module"1717msgid "Games;Strategy;Java;"
1756msgstr ""1718msgstr ""
17571719
1758#: ../DEV_extra_translations/extra_translations.py:4411720#: ../DEV_extra_translations/extra_translations.py:441
1759msgid "SIP TLS"1721msgid "Nagios"
1760msgstr ""1722msgstr ""
17611723
1762#: ../DEV_extra_translations/extra_translations.py:4421724#: ../DEV_extra_translations/extra_translations.py:442
1763msgid "Session Initiation Protocol with TLS encryption"1725msgid ""
1726"Computer system monitor, network monitoring and infrastructure monitoring "
1727"software application"
1764msgstr ""1728msgstr ""
17651729
1766#: ../DEV_extra_translations/extra_translations.py:4431730#: ../DEV_extra_translations/extra_translations.py:443
1767msgid "Scorched 3D server"1731msgid "GNUMP3d"
1768msgstr ""1732msgstr ""
17691733
1770#: ../DEV_extra_translations/extra_translations.py:4441734#: ../DEV_extra_translations/extra_translations.py:444
1771msgid "A modernization of the classic DOS game Scorched Earth"1735msgid "An audio streaming server"
1772msgstr ""
1773
1774#: ../DEV_extra_translations/extra_translations.py:445
1775msgid "Pioneers"
1776msgstr ""
1777
1778#: ../DEV_extra_translations/extra_translations.py:446
1779msgid "A game based on The Settlers of Catan by Klaus Teuber"
1780msgstr ""1736msgstr ""
17811737
1782#: ../DEV_extra_translations/extra_translations.py:4471738#: ../DEV_extra_translations/extra_translations.py:447
1783msgid "Pioneers Metaserver"1739msgid "H.323 discovery"
1784msgstr ""1740msgstr ""
17851741
1786#: ../DEV_extra_translations/extra_translations.py:4481742#: ../DEV_extra_translations/extra_translations.py:448
1787msgid "Metaserver for Pioneers"1743msgid "H.323 multicast gatekeeper discovery (H.225)"
1788msgstr ""1744msgstr ""
17891745
1790#: ../DEV_extra_translations/extra_translations.py:4491746#: ../DEV_extra_translations/extra_translations.py:449
1791msgid "Quake 4"1747msgid "H.323 RAS"
1748msgstr ""
1749
1750#: ../DEV_extra_translations/extra_translations.py:450
1751msgid "H.323 Gatekeeper Registration, Admission and Status (H.225)"
1792msgstr ""1752msgstr ""
17931753
1794#: ../DEV_extra_translations/extra_translations.py:4511754#: ../DEV_extra_translations/extra_translations.py:451
1795msgid "MySQL"1755msgid "Yet Another Netplay Guider"
1796msgstr ""1756msgstr ""
17971757
1798#: ../DEV_extra_translations/extra_translations.py:4521758#: ../DEV_extra_translations/extra_translations.py:452
1799msgid "MySQL Database"1759msgid "YANG - Yet Another Netplay Guider, default game connection"
1800msgstr ""1760msgstr ""
18011761
1802#: ../DEV_extra_translations/extra_translations.py:4531762#: ../DEV_extra_translations/extra_translations.py:453
1803msgid "Office;Database;"1763msgid "Yet Another Netplay Guider Hosting"
1804msgstr ""1764msgstr ""
18051765
1806#: ../DEV_extra_translations/extra_translations.py:4541766#: ../DEV_extra_translations/extra_translations.py:454
1807msgid "Doom3"1767msgid "YANG - Yet Another Netplay Guider, room hosting"
1808msgstr ""1768msgstr ""
18091769
1810#: ../DEV_extra_translations/extra_translations.py:4581770#: ../DEV_extra_translations/extra_translations.py:455
1811msgid "H.323 discovery"1771msgid "DXX-Rebirth on YANG"
1772msgstr ""
1773
1774#: ../DEV_extra_translations/extra_translations.py:456
1775msgid "DXX-Rebirth, a source port of Descent, connected through YANG"
1776msgstr ""
1777
1778#: ../DEV_extra_translations/extra_translations.py:457
1779msgid "Quake II"
1812msgstr ""1780msgstr ""
18131781
1814#: ../DEV_extra_translations/extra_translations.py:4591782#: ../DEV_extra_translations/extra_translations.py:459
1815msgid "H.323 multicast gatekeeper discovery (H.225)"1783msgid "Railroad Tycoon II"
1816msgstr ""1784msgstr ""
18171785
1818#: ../DEV_extra_translations/extra_translations.py:4601786#: ../DEV_extra_translations/extra_translations.py:460
1819msgid "H.323 RAS"1787msgid "Railroad strategy game by PopTop Software"
1820msgstr ""1788msgstr ""
18211789
1822#: ../DEV_extra_translations/extra_translations.py:4611790#: ../DEV_extra_translations/extra_translations.py:461
1823msgid "H.323 Gatekeeper Registration, Admission and Status (H.225)"1791msgid "Castle Vox"
1824msgstr ""1792msgstr ""
18251793
1826#: ../DEV_extra_translations/extra_translations.py:4621794#: ../DEV_extra_translations/extra_translations.py:462
1827msgid "Delta Force: LW"1795msgid ""
1796"A simultaneous-turns strategy game from Sillysoft influenced by Diplomacy "
1797"and Axis & Allies"
1828msgstr ""1798msgstr ""
18291799
1830#: ../DEV_extra_translations/extra_translations.py:4631800#: ../DEV_extra_translations/extra_translations.py:463
1831msgid "Land Warrior. A FPS combat game by NovaLogic"1801msgid "Snowball Surprise (SnowballZ)"
1832msgstr ""1802msgstr ""
18331803
1834#: ../DEV_extra_translations/extra_translations.py:4641804#: ../DEV_extra_translations/extra_translations.py:464
1835msgid "Dropbox LanSync"1805msgid "A RTS snowball fight"
1836msgstr ""1806msgstr ""
18371807
1838#: ../DEV_extra_translations/extra_translations.py:4651808#: ../DEV_extra_translations/extra_translations.py:465
1839msgid "A web-based file hosting service"1809msgid "Balazar III"
1840msgstr ""1810msgstr ""
18411811
1842#: ../DEV_extra_translations/extra_translations.py:4661812#: ../DEV_extra_translations/extra_translations.py:466
1843msgid "Asterisk"1813msgid "A 2D/3D dungeon adventure game"
1844msgstr ""1814msgstr ""
18451815
1846#: ../DEV_extra_translations/extra_translations.py:4671816#: ../DEV_extra_translations/extra_translations.py:467
1847msgid "An open source telephony switching and private branch exchange service"1817msgid "Savage 2: A Tortured Soul"
1848msgstr ""1818msgstr ""
18491819
1850#: ../DEV_extra_translations/extra_translations.py:4681820#: ../DEV_extra_translations/extra_translations.py:468
1851msgid "Review that ports are the same in /etc/asterisk/rtp.conf"1821#: ../DEV_extra_translations/extra_translations.py:645
1822msgid "A RTS/FPS from S2 Games"
1852msgstr ""1823msgstr ""
18531824
1854#: ../DEV_extra_translations/extra_translations.py:4691825#: ../DEV_extra_translations/extra_translations.py:469
1855msgid "Webmin"1826msgid "Freeciv"
1856msgstr ""1827msgstr ""
18571828
1858#: ../DEV_extra_translations/extra_translations.py:4701829#: ../DEV_extra_translations/extra_translations.py:470
1859#: ../DEV_extra_translations/extra_translations.py:4731830msgid "A turn-based strategy game similar to Civilization I & II by Microprose"
1860msgid "Web-page based system management utility"
1861msgstr ""1831msgstr ""
18621832
1863#: ../DEV_extra_translations/extra_translations.py:4711833#: ../DEV_extra_translations/extra_translations.py:471
1864msgid "Network;Shell;"1834msgid "Sacred - port 2005"
1865msgstr ""1835msgstr ""
18661836
1867#: ../DEV_extra_translations/extra_translations.py:4721837#: ../DEV_extra_translations/extra_translations.py:472
1868msgid "Webmin fast RPC"
1869msgstr ""
1870
1871#: ../DEV_extra_translations/extra_translations.py:4741838#: ../DEV_extra_translations/extra_translations.py:474
1872msgid "Armored Fist 3"1839#: ../DEV_extra_translations/extra_translations.py:476
1840#: ../DEV_extra_translations/extra_translations.py:478
1841#: ../DEV_extra_translations/extra_translations.py:480
1842#: ../DEV_extra_translations/extra_translations.py:482
1843msgid "Server port for the fantasy RPG by Ascaron Entertainment"
1844msgstr ""
1845
1846#: ../DEV_extra_translations/extra_translations.py:473
1847msgid "Sacred - ports 2005:2006"
1873msgstr ""1848msgstr ""
18741849
1875#: ../DEV_extra_translations/extra_translations.py:4751850#: ../DEV_extra_translations/extra_translations.py:475
1876msgid "A M1A2 Abrams tank simulation by NovaLogic"1851msgid "Sacred - ports 2005:2007"
1877msgstr ""
1878
1879#: ../DEV_extra_translations/extra_translations.py:476
1880msgid "Firefly Media Server"
1881msgstr ""1852msgstr ""
18821853
1883#: ../DEV_extra_translations/extra_translations.py:4771854#: ../DEV_extra_translations/extra_translations.py:477
1884msgid "DAAP audio server formerly known as mt-daapd"1855msgid "Sacred - ports 2005:2008"
1885msgstr ""
1886
1887#: ../DEV_extra_translations/extra_translations.py:478
1888msgid "Majesty: The Fantasy Kingdom Sim"
1889msgstr ""1856msgstr ""
18901857
1891#: ../DEV_extra_translations/extra_translations.py:4791858#: ../DEV_extra_translations/extra_translations.py:479
1892msgid "A RTS by Cyberlore Studios, ported to Linux by Linux Game Publishing"1859msgid "Sacred - ports 2005:2009"
1893msgstr ""
1894
1895#: ../DEV_extra_translations/extra_translations.py:480
1896msgid "FooBillard"
1897msgstr ""1860msgstr ""
18981861
1899#: ../DEV_extra_translations/extra_translations.py:4811862#: ../DEV_extra_translations/extra_translations.py:481
1900msgid "Cue sports simulation with Carambol, Snooker, and Pool"1863msgid "Sacred - ports 2005:2010"
1901msgstr ""
1902
1903#: ../DEV_extra_translations/extra_translations.py:482
1904msgid "Skype - 23399"
1905msgstr ""1864msgstr ""
19061865
1907#: ../DEV_extra_translations/extra_translations.py:4831866#: ../DEV_extra_translations/extra_translations.py:483
1908msgid "VoIP client"1867msgid "Enemy Territory: Quake Wars"
1909msgstr ""1868msgstr ""
19101869
1911#: ../DEV_extra_translations/extra_translations.py:4841870#: ../DEV_extra_translations/extra_translations.py:484
1912msgid "Skype - 23398"1871msgid "A FPS by Splash Damage"
1913msgstr ""1872msgstr ""
19141873
1915#: ../DEV_extra_translations/extra_translations.py:4851874#: ../DEV_extra_translations/extra_translations.py:485
1875msgid "Heroes of Might and Magic III"
1876msgstr ""
1877
1878#: ../DEV_extra_translations/extra_translations.py:486
1879msgid "A fantasy strategy game by 3DO"
1880msgstr ""
1881
1916#: ../DEV_extra_translations/extra_translations.py:4871882#: ../DEV_extra_translations/extra_translations.py:487
1883msgid "Lux"
1884msgstr ""
1885
1886#: ../DEV_extra_translations/extra_translations.py:488
1887msgid ""
1888"Delux, Ancient Empires and American History: A turn-based strategy game from "
1889"Sillysoft influenced by Risk"
1890msgstr ""
1891
1917#: ../DEV_extra_translations/extra_translations.py:4891892#: ../DEV_extra_translations/extra_translations.py:489
1893msgid "GNUnet"
1894msgstr ""
1895
1896#: ../DEV_extra_translations/extra_translations.py:490
1897msgid ""
1898"A decentralized peer-to-peer networking framework with file sharing and "
1899"messaging"
1900msgstr ""
1901
1918#: ../DEV_extra_translations/extra_translations.py:4911902#: ../DEV_extra_translations/extra_translations.py:491
1903msgid "Tachyon: The Fringe"
1904msgstr ""
1905
1906#: ../DEV_extra_translations/extra_translations.py:492
1907msgid "A 3D space combat game by NovaLogic"
1908msgstr ""
1909
1919#: ../DEV_extra_translations/extra_translations.py:4931910#: ../DEV_extra_translations/extra_translations.py:493
1911msgid "FreeCol"
1912msgstr ""
1913
1914#: ../DEV_extra_translations/extra_translations.py:494
1915msgid "A turn-based strategy game similar to Colonization by Microprose"
1916msgstr ""
1917
1920#: ../DEV_extra_translations/extra_translations.py:4951918#: ../DEV_extra_translations/extra_translations.py:495
1921#: ../DEV_extra_translations/extra_translations.py:4971919msgid "NASCAR Racing 2002/03 1 player"
1922#: ../DEV_extra_translations/extra_translations.py:499
1923#: ../DEV_extra_translations/extra_translations.py:501
1924msgid "VoIP client, suggested alternate port"
1925msgstr ""
1926
1927#: ../DEV_extra_translations/extra_translations.py:486
1928msgid "Skype - 23397"
1929msgstr ""
1930
1931#: ../DEV_extra_translations/extra_translations.py:488
1932msgid "Skype - 23396"
1933msgstr ""
1934
1935#: ../DEV_extra_translations/extra_translations.py:490
1936msgid "Skype - 23395"
1937msgstr ""
1938
1939#: ../DEV_extra_translations/extra_translations.py:492
1940msgid "Skype - 23394"
1941msgstr ""
1942
1943#: ../DEV_extra_translations/extra_translations.py:494
1944msgid "Skype - 23393"
1945msgstr ""1920msgstr ""
19461921
1947#: ../DEV_extra_translations/extra_translations.py:4961922#: ../DEV_extra_translations/extra_translations.py:496
1948msgid "Skype - 23392"
1949msgstr ""
1950
1951#: ../DEV_extra_translations/extra_translations.py:4981923#: ../DEV_extra_translations/extra_translations.py:498
1952msgid "Skype - 23391"
1953msgstr ""
1954
1955#: ../DEV_extra_translations/extra_translations.py:5001924#: ../DEV_extra_translations/extra_translations.py:500
1956msgid "Skype - 23390"
1957msgstr ""
1958
1959#: ../DEV_extra_translations/extra_translations.py:5021925#: ../DEV_extra_translations/extra_translations.py:502
1960msgid "Delta Force"
1961msgstr ""
1962
1963#: ../DEV_extra_translations/extra_translations.py:5041926#: ../DEV_extra_translations/extra_translations.py:504
1964msgid "Red Eclipse"1927#: ../DEV_extra_translations/extra_translations.py:506
1928#: ../DEV_extra_translations/extra_translations.py:508
1929msgid "Racing simulators from Papyrus Design Group"
1930msgstr ""
1931
1932#: ../DEV_extra_translations/extra_translations.py:497
1933msgid "NASCAR Racing 2002/03 2 players"
1934msgstr ""
1935
1936#: ../DEV_extra_translations/extra_translations.py:499
1937msgid "NASCAR Racing 2002/03 4 players"
1938msgstr ""
1939
1940#: ../DEV_extra_translations/extra_translations.py:501
1941msgid "NASCAR Racing 2002/03 8 players"
1942msgstr ""
1943
1944#: ../DEV_extra_translations/extra_translations.py:503
1945msgid "NASCAR Racing 2002/03 16 players"
1965msgstr ""1946msgstr ""
19661947
1967#: ../DEV_extra_translations/extra_translations.py:5051948#: ../DEV_extra_translations/extra_translations.py:505
1968msgid "An open source first-person shooter that runs on the Cube Engine 2"1949msgid "NASCAR Racing 2002/03 32 players"
1969msgstr ""
1970
1971#: ../DEV_extra_translations/extra_translations.py:506
1972msgid "Postal 2"
1973msgstr ""1950msgstr ""
19741951
1975#: ../DEV_extra_translations/extra_translations.py:5071952#: ../DEV_extra_translations/extra_translations.py:507
1976msgid "A FPS by Running with Scissors (uses the Unreal engine)"1953msgid "NASCAR Racing 2002/03 42 players"
1977msgstr ""
1978
1979#: ../DEV_extra_translations/extra_translations.py:508
1980msgid "Spring game engine"
1981msgstr ""1954msgstr ""
19821955
1983#: ../DEV_extra_translations/extra_translations.py:5091956#: ../DEV_extra_translations/extra_translations.py:509
1984msgid ""1957msgid "Vuze"
1985"An enhanced clone of RTS game Total Annihilation by Cavedog Entertainment"
1986msgstr ""1958msgstr ""
19871959
1988#: ../DEV_extra_translations/extra_translations.py:5101960#: ../DEV_extra_translations/extra_translations.py:510
1989msgid "HPLIP"1961msgid ""
1962"BitTorrent client used to transfer files via the BitTorrent protocol. Vuze "
1963"uses the Azureus Engine"
1990msgstr ""1964msgstr ""
19911965
1992#: ../DEV_extra_translations/extra_translations.py:5111966#: ../DEV_extra_translations/extra_translations.py:511
1993msgid "HP Linux Imaging and Printing"1967msgid ""
1968"You need to add the main random port too that you selected the first time"
1994msgstr ""1969msgstr ""
19951970
1996#: ../DEV_extra_translations/extra_translations.py:5121971#: ../DEV_extra_translations/extra_translations.py:512
1997msgid "Doom II"1972msgid "DAAP"
1973msgstr ""
1974
1975#: ../DEV_extra_translations/extra_translations.py:513
1976msgid "Digital Audio Access Protocol"
1998msgstr ""1977msgstr ""
19991978
2000#: ../DEV_extra_translations/extra_translations.py:5141979#: ../DEV_extra_translations/extra_translations.py:514
2001msgid "Doomsday"1980msgid "Sid Meier's Alpha Centauri"
2002msgstr ""1981msgstr ""
20031982
2004#: ../DEV_extra_translations/extra_translations.py:5151983#: ../DEV_extra_translations/extra_translations.py:515
2005msgid ""1984msgid "SciFi strategy game by Firaxis"
2006"A source port of id Software's Doom engine which supports Doom, Heretic, and "
2007"Hexen"
2008msgstr ""1985msgstr ""
20091986
2010#: ../DEV_extra_translations/extra_translations.py:5161987#: ../DEV_extra_translations/extra_translations.py:516
2011msgid "NFS (jhansonxi)"1988msgid "LBreakout2 - 8001/udp"
2012msgstr ""1989msgstr ""
20131990
2014#: ../DEV_extra_translations/extra_translations.py:5171991#: ../DEV_extra_translations/extra_translations.py:517
2015msgid ""1992#: ../DEV_extra_translations/extra_translations.py:519
2016"Network File System protocol with static ports at relatively unused "1993msgid "A Breakout clone"
2017"4194:4197 (4195 broadcast out)"
2018msgstr ""1994msgstr ""
20191995
2020#: ../DEV_extra_translations/extra_translations.py:5181996#: ../DEV_extra_translations/extra_translations.py:518
2021msgid "NFS Quota (jhansonxi)"1997msgid "LBreakout2 - 2002/udp"
2022msgstr ""
2023
2024#: ../DEV_extra_translations/extra_translations.py:519
2025msgid ""
2026"Network File System protocol with filesystem usage quota support with static "
2027"ports at relatively unused 4194:4198 (4195 broadcast out)"
2028msgstr ""1998msgstr ""
20291999
2030#: ../DEV_extra_translations/extra_translations.py:5202000#: ../DEV_extra_translations/extra_translations.py:520
2031msgid "Postal"2001msgid "Aleph One"
2032msgstr ""2002msgstr ""
20332003
2034#: ../DEV_extra_translations/extra_translations.py:5212004#: ../DEV_extra_translations/extra_translations.py:521
2035msgid "Violent combat game from Running With Scissors"2005msgid "An enhanced port of Marathon 2: Durandal from Bungie Software"
2036msgstr ""2006msgstr ""
20372007
2038#: ../DEV_extra_translations/extra_translations.py:5222008#: ../DEV_extra_translations/extra_translations.py:522
2039msgid "Heroes of Might and Magic III"2009msgid "Daimonin"
2040msgstr ""2010msgstr ""
20412011
2042#: ../DEV_extra_translations/extra_translations.py:5232012#: ../DEV_extra_translations/extra_translations.py:523
2043msgid "A fantasy strategy game by 3DO"2013msgid "An open-source MMORPG"
2044msgstr ""2014msgstr ""
20452015
2046#: ../DEV_extra_translations/extra_translations.py:5242016#: ../DEV_extra_translations/extra_translations.py:524
2047msgid "BZFlag"2017msgid "MiG-29 Fulcrum"
2048msgstr ""2018msgstr ""
20492019
2050#: ../DEV_extra_translations/extra_translations.py:5252020#: ../DEV_extra_translations/extra_translations.py:525
2051msgid "A FPS tank battle capture the flag game"2021msgid "A Mikoyan-Gurevich MiG-29 Fulcrum simulation by NovaLogic"
2052msgstr ""2022msgstr ""
20532023
2054#: ../DEV_extra_translations/extra_translations.py:5262024#: ../DEV_extra_translations/extra_translations.py:526
2055msgid "Toribash - 20184"2025msgid "Quake 4"
2056msgstr ""2026msgstr ""
20572027
2058#: ../DEV_extra_translations/extra_translations.py:5272028#: ../DEV_extra_translations/extra_translations.py:528
2029msgid "All Services"
2030msgstr ""
2031
2059#: ../DEV_extra_translations/extra_translations.py:5292032#: ../DEV_extra_translations/extra_translations.py:529
2033msgid "Client, dedicated servers, P2P and voice chat"
2034msgstr ""
2035
2036#: ../DEV_extra_translations/extra_translations.py:530
2037msgid "Games;Steam;"
2038msgstr ""
2039
2060#: ../DEV_extra_translations/extra_translations.py:5312040#: ../DEV_extra_translations/extra_translations.py:531
2041msgid "Client, Dedicated Servers, P2P and Voice Chat"
2042msgstr ""
2043
2044#: ../DEV_extra_translations/extra_translations.py:532
2045msgid "Client"
2046msgstr ""
2047
2061#: ../DEV_extra_translations/extra_translations.py:5332048#: ../DEV_extra_translations/extra_translations.py:533
2049msgid "Game client traffic, typically Matchmaking and HLTV and Steam downloads"
2050msgstr ""
2051
2052#: ../DEV_extra_translations/extra_translations.py:534
2053msgid "Dedicated Servers"
2054msgstr ""
2055
2062#: ../DEV_extra_translations/extra_translations.py:5352056#: ../DEV_extra_translations/extra_translations.py:535
2063msgid ""2057msgid "SRCDS Rcon port"
2064"A fighting game based on the physics sandbox model with customizable moves"
2065msgstr ""
2066
2067#: ../DEV_extra_translations/extra_translations.py:528
2068msgid "Toribash - 20185"
2069msgstr ""
2070
2071#: ../DEV_extra_translations/extra_translations.py:530
2072msgid "Toribash - 20186"
2073msgstr ""
2074
2075#: ../DEV_extra_translations/extra_translations.py:532
2076msgid "Toribash - 20187"
2077msgstr ""
2078
2079#: ../DEV_extra_translations/extra_translations.py:534
2080msgid "Toribash Full"
2081msgstr ""2058msgstr ""
20822059
2083#: ../DEV_extra_translations/extra_translations.py:5362060#: ../DEV_extra_translations/extra_translations.py:536
2084msgid "Counter-Strike 2D"2061msgid "P2P and Voice Chat"
2085msgstr ""2062msgstr ""
20862063
2087#: ../DEV_extra_translations/extra_translations.py:5372064#: ../DEV_extra_translations/extra_translations.py:537
2088msgid ""2065msgid "Steamworks P2P Networking and Steam Voice Chat"
2089"A top-down 2D clone of Valve Software's Counter-Strike by Unreal Software"
2090msgstr ""2066msgstr ""
20912067
2092#: ../DEV_extra_translations/extra_translations.py:5382068#: ../DEV_extra_translations/extra_translations.py:538
2093msgid "Socks Proxy"2069msgid "Call of Duty"
2094msgstr ""2070msgstr ""
20952071
2096#: ../DEV_extra_translations/extra_translations.py:5392072#: ../DEV_extra_translations/extra_translations.py:539
2097msgid "SOCKS protocol for proxy server support"2073msgid "Additional Ports for Call of Duty: Modern Warfare 2 Multiplayer"
2098msgstr ""2074msgstr ""
20992075
2100#: ../DEV_extra_translations/extra_translations.py:5402076#: ../DEV_extra_translations/extra_translations.py:540
2101msgid "Transparent Proxy"2077msgid "Kali"
2102msgstr ""2078msgstr ""
21032079
2104#: ../DEV_extra_translations/extra_translations.py:5412080#: ../DEV_extra_translations/extra_translations.py:541
2105msgid "Transparent proxy"2081msgid "Internet game browser and IPX network emulator"
2106msgstr ""2082msgstr ""
21072083
2108#: ../DEV_extra_translations/extra_translations.py:5422084#: ../DEV_extra_translations/extra_translations.py:542
2109msgid "BitTorrent Minimum"2085msgid "Dofus"
2110msgstr ""2086msgstr ""
21112087
2112#: ../DEV_extra_translations/extra_translations.py:5432088#: ../DEV_extra_translations/extra_translations.py:543
2089msgid "A massively multiplayer online role-playing game"
2090msgstr ""
2091
2092#: ../DEV_extra_translations/extra_translations.py:544
2093#: ../DEV_extra_translations/extra_translations.py:697
2094msgid "Tremulous"
2095msgstr ""
2096
2097#: ../DEV_extra_translations/extra_translations.py:545
2098msgid "Team-based SciFi/alien FPS from Dark Legion Development"
2099msgstr ""
2100
2113#: ../DEV_extra_translations/extra_translations.py:5462101#: ../DEV_extra_translations/extra_translations.py:546
2102msgid "Evil Islands: CotLS"
2103msgstr ""
2104
2105#: ../DEV_extra_translations/extra_translations.py:547
2106msgid "A RTS game with RPG and stealth elements from Nival Interactive"
2107msgstr ""
2108
2109#: ../DEV_extra_translations/extra_translations.py:548
2110msgid "Vuze Remote"
2111msgstr ""
2112
2114#: ../DEV_extra_translations/extra_translations.py:5492113#: ../DEV_extra_translations/extra_translations.py:549
2115msgid "BitTorrent peer-peer file sharing"2114msgid "Remote control for Vuze"
2116msgstr ""
2117
2118#: ../DEV_extra_translations/extra_translations.py:545
2119msgid "BitTorrent"
2120msgstr ""
2121
2122#: ../DEV_extra_translations/extra_translations.py:548
2123msgid "BitTorrent Full"
2124msgstr ""2115msgstr ""
21252116
2126#: ../DEV_extra_translations/extra_translations.py:5512117#: ../DEV_extra_translations/extra_translations.py:551
2127msgid "Railroad Tycoon II"2118msgid "GGZ Gaming Zone"
2128msgstr ""2119msgstr ""
21292120
2130#: ../DEV_extra_translations/extra_translations.py:5522121#: ../DEV_extra_translations/extra_translations.py:552
2131msgid "Railroad strategy game by PopTop Software"2122msgid "Network support for GNOME Games"
2132msgstr ""2123msgstr ""
21332124
2134#: ../DEV_extra_translations/extra_translations.py:5532125#: ../DEV_extra_translations/extra_translations.py:553
2135msgid "Mechwarrior 4"2126msgid "Postal"
2136msgstr ""2127msgstr ""
21372128
2138#: ../DEV_extra_translations/extra_translations.py:5542129#: ../DEV_extra_translations/extra_translations.py:554
2139msgid "A FPS based on the Fasa Battletech universe"2130msgid "Violent combat game from Running With Scissors"
2140msgstr ""2131msgstr ""
21412132
2142#: ../DEV_extra_translations/extra_translations.py:5552133#: ../DEV_extra_translations/extra_translations.py:555
2143msgid "Yura.net Domination (jRisk)"2134msgid "POP3"
2144msgstr ""2135msgstr ""
21452136
2146#: ../DEV_extra_translations/extra_translations.py:5562137#: ../DEV_extra_translations/extra_translations.py:556
2147msgid "A clone of Risk"2138msgid "Post Office Protocol"
2148msgstr ""2139msgstr ""
21492140
2150#: ../DEV_extra_translations/extra_translations.py:5572141#: ../DEV_extra_translations/extra_translations.py:557
2151msgid "Ur-Quan Masters"2142msgid "POP3S"
2152msgstr ""2143msgstr ""
21532144
2154#: ../DEV_extra_translations/extra_translations.py:5582145#: ../DEV_extra_translations/extra_translations.py:558
2155msgid "An enhanced version of Star Control II from 3DO"2146#: ../DEV_extra_translations/extra_translations.py:562
2147msgid "Secure mail server"
2156msgstr ""2148msgstr ""
21572149
2158#: ../DEV_extra_translations/extra_translations.py:5592150#: ../DEV_extra_translations/extra_translations.py:559
2159msgid "Games;Adventure;"2151msgid "IMAP"
2160msgstr ""2152msgstr ""
21612153
2162#: ../DEV_extra_translations/extra_translations.py:5602154#: ../DEV_extra_translations/extra_translations.py:560
2163msgid "netPanzer"2155msgid "Internet Message Access Protocol"
2164msgstr ""2156msgstr ""
21652157
2166#: ../DEV_extra_translations/extra_translations.py:5612158#: ../DEV_extra_translations/extra_translations.py:561
2167msgid "An online multiplayer tactical warfare game"2159msgid "IMAPS"
2168msgstr ""
2169
2170#: ../DEV_extra_translations/extra_translations.py:562
2171msgid "Neverwinter Nights server"
2172msgstr ""2160msgstr ""
21732161
2174#: ../DEV_extra_translations/extra_translations.py:5632162#: ../DEV_extra_translations/extra_translations.py:563
2175msgid "Default port for Neverwinter Nights, a RPG from Bioware"2163msgid "SMTP"
2176msgstr ""2164msgstr ""
21772165
2178#: ../DEV_extra_translations/extra_translations.py:5642166#: ../DEV_extra_translations/extra_translations.py:564
2179msgid "Unreal Tournament 2004"2167msgid "Simple Mail Transfer Protocol"
2180msgstr ""2168msgstr ""
21812169
2182#: ../DEV_extra_translations/extra_translations.py:5652170#: ../DEV_extra_translations/extra_translations.py:565
2183msgid "A FPS by Epic Games"2171msgid "Postfix Mail Server SMTP"
2184msgstr ""2172msgstr ""
21852173
2186#: ../DEV_extra_translations/extra_translations.py:5662174#: ../DEV_extra_translations/extra_translations.py:566
2187msgid "Unreal Tournament 2004 Admin"2175#: ../DEV_extra_translations/extra_translations.py:568
2176#: ../DEV_extra_translations/extra_translations.py:570
2177msgid "Postfix is a high-performance mail transport agent"
2188msgstr ""2178msgstr ""
21892179
2190#: ../DEV_extra_translations/extra_translations.py:5672180#: ../DEV_extra_translations/extra_translations.py:567
2191msgid "Web-based administration for the FPS by Epic Games"2181msgid "Postfix Mail Server SMTPS"
2192msgstr ""
2193
2194#: ../DEV_extra_translations/extra_translations.py:568
2195msgid "Evil Islands: CotLS"
2196msgstr ""2182msgstr ""
21972183
2198#: ../DEV_extra_translations/extra_translations.py:5692184#: ../DEV_extra_translations/extra_translations.py:569
2199msgid "A RTS game with RPG and stealth elements from Nival Interactive"2185msgid "Postfix Mail Server Submission"
2200msgstr ""
2201
2202#: ../DEV_extra_translations/extra_translations.py:570
2203msgid "FreeOrion"
2204msgstr ""2186msgstr ""
22052187
2206#: ../DEV_extra_translations/extra_translations.py:5712188#: ../DEV_extra_translations/extra_translations.py:571
2207msgid ""2189msgid "monopd"
2208"A turn-based 4X strategy game inspired by Master of Orion from MicroProse"
2209msgstr ""2190msgstr ""
22102191
2211#: ../DEV_extra_translations/extra_translations.py:5722192#: ../DEV_extra_translations/extra_translations.py:572
2212msgid "Telnet"2193msgid "A game server for Monopoly-like board games"
2213msgstr ""2194msgstr ""
22142195
2215#: ../DEV_extra_translations/extra_translations.py:5732196#: ../DEV_extra_translations/extra_translations.py:573
2216msgid "Text-based remote access (like SSH but without the security)"2197msgid "FreeSpace 2"
2217msgstr ""2198msgstr ""
22182199
2219#: ../DEV_extra_translations/extra_translations.py:5742200#: ../DEV_extra_translations/extra_translations.py:574
2220msgid ""2201msgid "Space combat simulation by Volition"
2221"Telnet is like SSH but without security. It'd be better to use the 'Telnet "
2222"SSL'"
2223msgstr ""2202msgstr ""
22242203
2225#: ../DEV_extra_translations/extra_translations.py:5752204#: ../DEV_extra_translations/extra_translations.py:575
2226msgid "Telnet TLS/SSL"2205msgid "Crossfire"
2227msgstr ""2206msgstr ""
22282207
2229#: ../DEV_extra_translations/extra_translations.py:5762208#: ../DEV_extra_translations/extra_translations.py:576
2230msgid "Text-based remote access (like SSH but without the security) SSL"2209msgid ""
2210"An open source, cooperative multiplayer graphical RPG and adventure game"
2231msgstr ""2211msgstr ""
22322212
2233#: ../DEV_extra_translations/extra_translations.py:5772213#: ../DEV_extra_translations/extra_translations.py:577
2234msgid "MegaMek"2214msgid "Crossfire Metaserver"
2235msgstr ""2215msgstr ""
22362216
2237#: ../DEV_extra_translations/extra_translations.py:5782217#: ../DEV_extra_translations/extra_translations.py:578
2238msgid "A unofficial online BattleTech game"2218msgid "Metaserver for Crossfire RPG"
2239msgstr ""2219msgstr ""
22402220
2241#: ../DEV_extra_translations/extra_translations.py:5792221#: ../DEV_extra_translations/extra_translations.py:579
2242msgid "Games;Strategy;Java;"2222msgid "Syslog"
2243msgstr ""2223msgstr ""
22442224
2245#: ../DEV_extra_translations/extra_translations.py:5802225#: ../DEV_extra_translations/extra_translations.py:580
2246msgid "Delta Force: Xtreme"2226msgid "System logging"
2227msgstr ""
2228
2229#: ../DEV_extra_translations/extra_translations.py:581
2230msgid "Optimized Link State Routing"
2247msgstr ""2231msgstr ""
22482232
2249#: ../DEV_extra_translations/extra_translations.py:5822233#: ../DEV_extra_translations/extra_translations.py:582
2250msgid "Blobby Volley 2"2234msgid "A mesh networking protocol"
2251msgstr ""2235msgstr ""
22522236
2253#: ../DEV_extra_translations/extra_translations.py:5832237#: ../DEV_extra_translations/extra_translations.py:583
2254msgid "A volleyball game"2238msgid "Ryzom"
2255msgstr ""2239msgstr ""
22562240
2257#: ../DEV_extra_translations/extra_translations.py:5842241#: ../DEV_extra_translations/extra_translations.py:584
2258msgid "Prey"2242msgid ""
2243"It's also known as The Saga of Ryzom, is a massively multiplayer online role-"
2244"playing game (MMORPG)"
2259msgstr ""2245msgstr ""
22602246
2261#: ../DEV_extra_translations/extra_translations.py:5852247#: ../DEV_extra_translations/extra_translations.py:585
2262msgid "A SciFi FPS action adventure by 3D Realms"2248msgid "Gamer's Internet Tunnel"
2263msgstr ""2249msgstr ""
22642250
2265#: ../DEV_extra_translations/extra_translations.py:5862251#: ../DEV_extra_translations/extra_translations.py:586
2266msgid "Windows Messenger"2252msgid "IPX network emulator from Morpheus Software"
2267msgstr ""2253msgstr ""
22682254
2269#: ../DEV_extra_translations/extra_translations.py:5872255#: ../DEV_extra_translations/extra_translations.py:587
2270msgid ""2256msgid "World of Padman - 27960/udp"
2271"Windows Messenger/Windows Live Messenger application sharing and whiteboard "
2272"(requires SIP)"
2273msgstr ""2257msgstr ""
22742258
2275#: ../DEV_extra_translations/extra_translations.py:5882259#: ../DEV_extra_translations/extra_translations.py:588
2276msgid "Windows Messenger File"2260msgid ""
2261"A FPS by Padworld Entertainment based on Quake III, server on port 27960"
2277msgstr ""2262msgstr ""
22782263
2279#: ../DEV_extra_translations/extra_translations.py:5892264#: ../DEV_extra_translations/extra_translations.py:589
2280msgid "Windows Messenger/MSN Messenger file transfer"2265msgid "World of Padman - 27961/udp"
2281msgstr ""2266msgstr ""
22822267
2283#: ../DEV_extra_translations/extra_translations.py:5902268#: ../DEV_extra_translations/extra_translations.py:590
2284msgid "Windows Messenger Assistance"2269msgid ""
2270"A FPS by Padworld Entertainment based on Quake III, server on port 27961"
2285msgstr ""2271msgstr ""
22862272
2287#: ../DEV_extra_translations/extra_translations.py:5912273#: ../DEV_extra_translations/extra_translations.py:591
2288msgid "Remote Assistance/Remote Desktop Protocol/Terminal Services (RDP)"2274msgid "World of Padman - 27962/udp"
2289msgstr ""2275msgstr ""
22902276
2291#: ../DEV_extra_translations/extra_translations.py:5922277#: ../DEV_extra_translations/extra_translations.py:592
2292msgid "Network;Remote Access;"2278msgid ""
2279"A FPS by Padworld Entertainment based on Quake III, server on port 27962"
2293msgstr ""2280msgstr ""
22942281
2295#: ../DEV_extra_translations/extra_translations.py:5932282#: ../DEV_extra_translations/extra_translations.py:593
2296#: ../DEV_extra_translations/extra_translations.py:5962283msgid "World of Padman - 27963/udp"
2297#: ../DEV_extra_translations/extra_translations.py:728
2298#: ../DEV_extra_translations/extra_translations.py:764
2299#: ../DEV_extra_translations/extra_translations.py:767
2300#: ../DEV_extra_translations/extra_translations.py:770
2301#: ../DEV_extra_translations/extra_translations.py:773
2302#: ../DEV_extra_translations/extra_translations.py:776
2303#: ../DEV_extra_translations/extra_translations.py:779
2304#: ../DEV_extra_translations/extra_translations.py:782
2305#: ../DEV_extra_translations/extra_translations.py:785
2306msgid "It may be a security risk to use a default allow policy for RDP"
2307msgstr ""2284msgstr ""
23082285
2309#: ../DEV_extra_translations/extra_translations.py:5942286#: ../DEV_extra_translations/extra_translations.py:594
2310msgid "RDP"2287msgid ""
2288"A FPS by Padworld Entertainment based on Quake III, server on port 27963"
2311msgstr ""2289msgstr ""
23122290
2313#: ../DEV_extra_translations/extra_translations.py:5952291#: ../DEV_extra_translations/extra_translations.py:595
2314msgid "Remote Desktop Protocols"2292msgid "Steam"
2293msgstr ""
2294
2295#: ../DEV_extra_translations/extra_translations.py:596
2296msgid "Software distribution service and game server browser from Valve"
2315msgstr ""2297msgstr ""
23162298
2317#: ../DEV_extra_translations/extra_translations.py:5972299#: ../DEV_extra_translations/extra_translations.py:597
2318#: ../DEV_extra_translations/extra_translations.py:7292300msgid "For Steam Client see the category: Games / Steam"
2319msgid "Tremulous"
2320msgstr ""2301msgstr ""
23212302
2322#: ../DEV_extra_translations/extra_translations.py:5982303#: ../DEV_extra_translations/extra_translations.py:598
2323msgid ""2304msgid "PulseAudio"
2324"A free and open source team-based first-person shooter with real-time "
2325"strategy elements"
2326msgstr ""2305msgstr ""
23272306
2328#: ../DEV_extra_translations/extra_translations.py:5992307#: ../DEV_extra_translations/extra_translations.py:599
2329msgid "Transmission"2308msgid "Networked sound server"
2330msgstr ""2309msgstr ""
23312310
2332#: ../DEV_extra_translations/extra_translations.py:6002311#: ../DEV_extra_translations/extra_translations.py:600
2333msgid ""2312msgid "BZFlag"
2334"BitTorrent client which features a simple interface on top of a cross-"2313msgstr ""
2335"platform backend"2314
2315#: ../DEV_extra_translations/extra_translations.py:601
2316msgid "A FPS tank battle capture the flag game"
2336msgstr ""2317msgstr ""
23372318
2338#: ../DEV_extra_translations/extra_translations.py:6022319#: ../DEV_extra_translations/extra_translations.py:602
2339msgid "Warsow"2320msgid "Wormux"
2340msgstr ""2321msgstr ""
23412322
2342#: ../DEV_extra_translations/extra_translations.py:6032323#: ../DEV_extra_translations/extra_translations.py:603
2343msgid "A competitive FPS based on the Qfusion 3D/id tech 2 engine"2324#: ../DEV_extra_translations/extra_translations.py:609
2325msgid "An arcade combat game inspired by Worms from Team17 Software"
2344msgstr ""2326msgstr ""
23452327
2346#: ../DEV_extra_translations/extra_translations.py:6042328#: ../DEV_extra_translations/extra_translations.py:604
2347msgid "NASCAR Racing 2002/03 1 player"2329msgid "Return To Castle Wolfenstein"
2348msgstr ""2330msgstr ""
23492331
2350#: ../DEV_extra_translations/extra_translations.py:6052332#: ../DEV_extra_translations/extra_translations.py:605
2333msgid ""
2334"WWII FPS and sequel from Splash Damage, Gray Matter Interactive, Nerve "
2335"Software, and id Software"
2336msgstr ""
2337
2338#: ../DEV_extra_translations/extra_translations.py:606
2339msgid "Abuse"
2340msgstr ""
2341
2351#: ../DEV_extra_translations/extra_translations.py:6072342#: ../DEV_extra_translations/extra_translations.py:607
2352#: ../DEV_extra_translations/extra_translations.py:6092343msgid "A dark 2D side-scrolling platform game developed by Crack dot Com"
2353#: ../DEV_extra_translations/extra_translations.py:611
2354#: ../DEV_extra_translations/extra_translations.py:613
2355#: ../DEV_extra_translations/extra_translations.py:615
2356#: ../DEV_extra_translations/extra_translations.py:617
2357msgid "Racing simulators from Papyrus Design Group"
2358msgstr ""
2359
2360#: ../DEV_extra_translations/extra_translations.py:606
2361msgid "NASCAR Racing 2002/03 2 players"
2362msgstr ""2344msgstr ""
23632345
2364#: ../DEV_extra_translations/extra_translations.py:6082346#: ../DEV_extra_translations/extra_translations.py:608
2365msgid "NASCAR Racing 2002/03 4 players"2347msgid "Hedgewars"
2366msgstr ""2348msgstr ""
23672349
2368#: ../DEV_extra_translations/extra_translations.py:6102350#: ../DEV_extra_translations/extra_translations.py:610
2369msgid "NASCAR Racing 2002/03 8 players"2351msgid "0verkill"
2352msgstr ""
2353
2354#: ../DEV_extra_translations/extra_translations.py:611
2355msgid "An ASCII-art 2D deathmatch game"
2370msgstr ""2356msgstr ""
23712357
2372#: ../DEV_extra_translations/extra_translations.py:6122358#: ../DEV_extra_translations/extra_translations.py:612
2373msgid "NASCAR Racing 2002/03 16 players"2359msgid "Delta Force: TFD"
2360msgstr ""
2361
2362#: ../DEV_extra_translations/extra_translations.py:613
2363msgid "Task Force Dagger. A FPS combat game by NovaLogic"
2374msgstr ""2364msgstr ""
23752365
2376#: ../DEV_extra_translations/extra_translations.py:6142366#: ../DEV_extra_translations/extra_translations.py:614
2377msgid "NASCAR Racing 2002/03 32 players"2367msgid "Dark Horizons: LI"
2368msgstr ""
2369
2370#: ../DEV_extra_translations/extra_translations.py:615
2371msgid ""
2372"Lore Invasion. A mech-style FPS by Max Gaming Technologies using the Torque "
2373"Game Engine"
2378msgstr ""2374msgstr ""
23792375
2380#: ../DEV_extra_translations/extra_translations.py:6162376#: ../DEV_extra_translations/extra_translations.py:616
2381msgid "NASCAR Racing 2002/03 42 players"2377msgid "Red Eclipse"
2378msgstr ""
2379
2380#: ../DEV_extra_translations/extra_translations.py:617
2381msgid "An open source first-person shooter that runs on the Cube Engine 2"
2382msgstr ""2382msgstr ""
23832383
2384#: ../DEV_extra_translations/extra_translations.py:6182384#: ../DEV_extra_translations/extra_translations.py:618
2385msgid "All Services"2385msgid "Heretic II"
2386msgstr ""2386msgstr ""
23872387
2388#: ../DEV_extra_translations/extra_translations.py:6192388#: ../DEV_extra_translations/extra_translations.py:619
2389msgid "Client, dedicated servers, P2P and voice chat"2389msgid "Fantasy combat FPS by Raven Software"
2390msgstr ""2390msgstr ""
23912391
2392#: ../DEV_extra_translations/extra_translations.py:6202392#: ../DEV_extra_translations/extra_translations.py:620
2393msgid "Games;Steam;"2393msgid "Blood II: The Chosen"
2394msgstr ""2394msgstr ""
23952395
2396#: ../DEV_extra_translations/extra_translations.py:6212396#: ../DEV_extra_translations/extra_translations.py:621
2397msgid "Client, Dedicated Servers, P2P and Voice Chat"2397msgid "A FPS from Monolith Productions"
2398msgstr ""2398msgstr ""
23992399
2400#: ../DEV_extra_translations/extra_translations.py:6222400#: ../DEV_extra_translations/extra_translations.py:622
2401msgid "Client"2401msgid "Mumble"
2402msgstr ""2402msgstr ""
24032403
2404#: ../DEV_extra_translations/extra_translations.py:6232404#: ../DEV_extra_translations/extra_translations.py:623
2405msgid "Game client traffic, typically Matchmaking and HLTV and Steam downloads"2405msgid "A voice chat application for groups"
2406msgstr ""2406msgstr ""
24072407
2408#: ../DEV_extra_translations/extra_translations.py:6242408#: ../DEV_extra_translations/extra_translations.py:624
2409msgid "Dedicated Servers"2409msgid "Games for Windows - Live"
2410msgstr ""2410msgstr ""
24112411
2412#: ../DEV_extra_translations/extra_translations.py:6252412#: ../DEV_extra_translations/extra_translations.py:625
2413msgid "SRCDS Rcon port"2413msgid "Network games using Games for Windows - Live API"
2414msgstr ""2414msgstr ""
24152415
2416#: ../DEV_extra_translations/extra_translations.py:6262416#: ../DEV_extra_translations/extra_translations.py:626
2417msgid "P2P and Voice Chat"2417msgid "Diablo II"
2418msgstr ""
2419
2420#: ../DEV_extra_translations/extra_translations.py:627
2421msgid "Steamworks P2P Networking and Steam Voice Chat"
2422msgstr ""2418msgstr ""
24232419
2424#: ../DEV_extra_translations/extra_translations.py:6282420#: ../DEV_extra_translations/extra_translations.py:628
2425msgid "Call of Duty"2421msgid "Liquid War"
2426msgstr ""2422msgstr ""
24272423
2428#: ../DEV_extra_translations/extra_translations.py:6292424#: ../DEV_extra_translations/extra_translations.py:629
2429msgid "Additional Ports for Call of Duty: Modern Warfare 2 Multiplayer"2425msgid "An original shortest path algorithm and core concept"
2430msgstr ""2426msgstr ""
24312427
2432#: ../DEV_extra_translations/extra_translations.py:6302428#: ../DEV_extra_translations/extra_translations.py:630
2433msgid "Urban Terror - 27960/udp"2429msgid "MSN Gaming Zone"
2434msgstr ""2430msgstr ""
24352431
2436#: ../DEV_extra_translations/extra_translations.py:6312432#: ../DEV_extra_translations/extra_translations.py:631
2437msgid ""2433msgid "Games using MSN Gaming Zone API"
2438"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
2439"port 27660"
2440msgstr ""2434msgstr ""
24412435
2442#: ../DEV_extra_translations/extra_translations.py:6322436#: ../DEV_extra_translations/extra_translations.py:632
2443msgid "Urban Terror - 27961/udp"2437msgid "F-22 Lightning 3"
2444msgstr ""2438msgstr ""
24452439
2446#: ../DEV_extra_translations/extra_translations.py:6332440#: ../DEV_extra_translations/extra_translations.py:633
2447msgid ""2441#: ../DEV_extra_translations/extra_translations.py:647
2448"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "2442msgid "A F-22 Raptor simulation by NovaLogic"
2449"port 27961"
2450msgstr ""2443msgstr ""
24512444
2452#: ../DEV_extra_translations/extra_translations.py:6342445#: ../DEV_extra_translations/extra_translations.py:634
2453msgid "Urban Terror - 27962/udp"2446msgid "The Mana World"
2454msgstr ""2447msgstr ""
24552448
2456#: ../DEV_extra_translations/extra_translations.py:6352449#: ../DEV_extra_translations/extra_translations.py:635
2457msgid ""2450msgid "A fantasy MMORPG"
2458"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "
2459"port 27962"
2460msgstr ""2451msgstr ""
24612452
2462#: ../DEV_extra_translations/extra_translations.py:6362453#: ../DEV_extra_translations/extra_translations.py:636
2463msgid "Urban Terror - 27963/udp"2454msgid "NFS TLDP NFS"
2464msgstr ""2455msgstr ""
24652456
2466#: ../DEV_extra_translations/extra_translations.py:6372457#: ../DEV_extra_translations/extra_translations.py:637
2467msgid ""2458msgid ""
2468"A realistic FPS by Frozen Sand, based on Quake III by id Software, server on "2459"Network File System protocol with static ports at 32765:32768 (some "
2469"port 27963"2460"conflicts with popular games)"
2470msgstr ""2461msgstr ""
24712462
2472#: ../DEV_extra_translations/extra_translations.py:6382463#: ../DEV_extra_translations/extra_translations.py:638
2473msgid "Heretic II"2464msgid "NFS Quota & TLDP NFS"
2474msgstr ""2465msgstr ""
24752466
2476#: ../DEV_extra_translations/extra_translations.py:6392467#: ../DEV_extra_translations/extra_translations.py:639
2477msgid "Fantasy combat FPS by Raven Software"2468msgid ""
2469"NFS with user/group filesystem usage quota support with static ports at "
2470"32765:32769 (some conflicts with popular games)"
2478msgstr ""2471msgstr ""
24792472
2480#: ../DEV_extra_translations/extra_translations.py:6402473#: ../DEV_extra_translations/extra_translations.py:640
2481msgid "MythTV"2474msgid "Quake"
2482msgstr ""
2483
2484#: ../DEV_extra_translations/extra_translations.py:641
2485msgid "MythTV backend"
2486msgstr ""2475msgstr ""
24872476
2488#: ../DEV_extra_translations/extra_translations.py:6422477#: ../DEV_extra_translations/extra_translations.py:642
2489msgid "POP3"2478msgid "QuakeWorld"
2490msgstr ""2479msgstr ""
24912480
2492#: ../DEV_extra_translations/extra_translations.py:6432481#: ../DEV_extra_translations/extra_translations.py:643
2493msgid "Post Office Protocol"2482msgid "An enhanced multiplayer version of Quake by id Software"
2494msgstr ""2483msgstr ""
24952484
2496#: ../DEV_extra_translations/extra_translations.py:6442485#: ../DEV_extra_translations/extra_translations.py:644
2497msgid "POP3S"2486msgid "Savage: The Battle for Newerth/Savage XR"
2498msgstr ""
2499
2500#: ../DEV_extra_translations/extra_translations.py:645
2501#: ../DEV_extra_translations/extra_translations.py:649
2502msgid "Secure mail server"
2503msgstr ""2487msgstr ""
25042488
2505#: ../DEV_extra_translations/extra_translations.py:6462489#: ../DEV_extra_translations/extra_translations.py:646
2506msgid "IMAP"2490msgid "F-22 Raptor"
2507msgstr ""
2508
2509#: ../DEV_extra_translations/extra_translations.py:647
2510msgid "Internet Message Access Protocol"
2511msgstr ""2491msgstr ""
25122492
2513#: ../DEV_extra_translations/extra_translations.py:6482493#: ../DEV_extra_translations/extra_translations.py:648
2514msgid "IMAPS"2494msgid "Dopewars"
2515msgstr ""2495msgstr ""
25162496
2517#: ../DEV_extra_translations/extra_translations.py:6502497#: ../DEV_extra_translations/extra_translations.py:650
2518msgid "SMTP"2498msgid "Kohan: Immortal Sovereigns"
2519msgstr ""2499msgstr ""
25202500
2521#: ../DEV_extra_translations/extra_translations.py:6512501#: ../DEV_extra_translations/extra_translations.py:651
2522msgid "Simple Mail Transfer Protocol"2502msgid "A real-time strategy game by TimeGate Studios"
2503msgstr ""
2504
2505#: ../DEV_extra_translations/extra_translations.py:652
2506msgid "0 A.D."
2507msgstr ""
2508
2509#: ../DEV_extra_translations/extra_translations.py:653
2510msgid "A free/open-source RTS game of ancient warfare from Wildfire Games"
2523msgstr ""2511msgstr ""
25242512
2525#: ../DEV_extra_translations/extra_translations.py:6542513#: ../DEV_extra_translations/extra_translations.py:654
2526msgid "Network;Scanning;"2514msgid "Chocolate Doom"
2527msgstr ""2515msgstr ""
25282516
2529#: ../DEV_extra_translations/extra_translations.py:6552517#: ../DEV_extra_translations/extra_translations.py:655
2530msgid "SANE Manual"2518msgid ""
2519"A Doom source port that accurately reproduces the experience of Doom as it "
2520"was played in the 1990s"
2531msgstr ""2521msgstr ""
25322522
2533#: ../DEV_extra_translations/extra_translations.py:6562523#: ../DEV_extra_translations/extra_translations.py:656
2534msgid ""2524msgid "HPLIP"
2535"Scanner Access Now Easy - scanner sharing server, manual ports without "
2536"nf_conntrack_sane module"
2537msgstr ""2525msgstr ""
25382526
2539#: ../DEV_extra_translations/extra_translations.py:6572527#: ../DEV_extra_translations/extra_translations.py:657
2540msgid "Vibe Streamer"2528msgid "HP Linux Imaging and Printing"
2541msgstr ""2529msgstr ""
25422530
2543#: ../DEV_extra_translations/extra_translations.py:6582531#: ../DEV_extra_translations/extra_translations.py:658
2544msgid "A free MP3 streaming server"2532msgid "Network;Printing;"
2545msgstr ""2533msgstr ""
25462534
2547#: ../DEV_extra_translations/extra_translations.py:6592535#: ../DEV_extra_translations/extra_translations.py:659
2548msgid "Frostwire"2536msgid "Skype - 23399"
2549msgstr ""2537msgstr ""
25502538
2551#: ../DEV_extra_translations/extra_translations.py:6602539#: ../DEV_extra_translations/extra_translations.py:660
2552msgid "Frostwire peer-peer file sharing on default port"2540msgid "VoIP client"
2553msgstr ""2541msgstr ""
25542542
2555#: ../DEV_extra_translations/extra_translations.py:6612543#: ../DEV_extra_translations/extra_translations.py:661
2556msgid "Network;File Transfer;P2P;"2544msgid "Skype - 23398"
2557msgstr ""2545msgstr ""
25582546
2559#: ../DEV_extra_translations/extra_translations.py:6632547#: ../DEV_extra_translations/extra_translations.py:662
2560msgid "PvPGN"
2561msgstr ""
2562
2563#: ../DEV_extra_translations/extra_translations.py:6642548#: ../DEV_extra_translations/extra_translations.py:664
2564msgid "Player vs Player Gaming Network server emulation based on bnetd"
2565msgstr ""
2566
2567#: ../DEV_extra_translations/extra_translations.py:665
2568msgid "PvPGN Address Translation"
2569msgstr ""
2570
2571#: ../DEV_extra_translations/extra_translations.py:6662549#: ../DEV_extra_translations/extra_translations.py:666
2572msgid "Player vs Player Gaming Network Address translation port"
2573msgstr ""
2574
2575#: ../DEV_extra_translations/extra_translations.py:667
2576msgid "qBittorent"
2577msgstr ""
2578
2579#: ../DEV_extra_translations/extra_translations.py:6682550#: ../DEV_extra_translations/extra_translations.py:668
2580msgid "Cross-platform BitTorrent client GUI written with Qt4"
2581msgstr ""
2582
2583#: ../DEV_extra_translations/extra_translations.py:6702551#: ../DEV_extra_translations/extra_translations.py:670
2584msgid "Clonk"2552#: ../DEV_extra_translations/extra_translations.py:672
2553#: ../DEV_extra_translations/extra_translations.py:674
2554#: ../DEV_extra_translations/extra_translations.py:676
2555#: ../DEV_extra_translations/extra_translations.py:678
2556msgid "VoIP client, suggested alternate port"
2557msgstr ""
2558
2559#: ../DEV_extra_translations/extra_translations.py:663
2560msgid "Skype - 23397"
2561msgstr ""
2562
2563#: ../DEV_extra_translations/extra_translations.py:665
2564msgid "Skype - 23396"
2565msgstr ""
2566
2567#: ../DEV_extra_translations/extra_translations.py:667
2568msgid "Skype - 23395"
2569msgstr ""
2570
2571#: ../DEV_extra_translations/extra_translations.py:669
2572msgid "Skype - 23394"
2585msgstr ""2573msgstr ""
25862574
2587#: ../DEV_extra_translations/extra_translations.py:6712575#: ../DEV_extra_translations/extra_translations.py:671
2588msgid "An action/RTS/platform game by RedWolf Design; standard ports"2576msgid "Skype - 23393"
2589msgstr ""
2590
2591#: ../DEV_extra_translations/extra_translations.py:672
2592msgid "Clonk Host"
2593msgstr ""2577msgstr ""
25942578
2595#: ../DEV_extra_translations/extra_translations.py:6732579#: ../DEV_extra_translations/extra_translations.py:673
2596msgid "An action/RTS/platform game by RedWolf Design; host ports"2580msgid "Skype - 23392"
2597msgstr ""
2598
2599#: ../DEV_extra_translations/extra_translations.py:674
2600msgid "Clonk LAN"
2601msgstr ""2581msgstr ""
26022582
2603#: ../DEV_extra_translations/extra_translations.py:6752583#: ../DEV_extra_translations/extra_translations.py:675
2604msgid "An action/RTS/platform game by RedWolf Design; LAN game discovery port"2584msgid "Skype - 23391"
2605msgstr ""
2606
2607#: ../DEV_extra_translations/extra_translations.py:676
2608msgid "Crossfire"
2609msgstr ""2585msgstr ""
26102586
2611#: ../DEV_extra_translations/extra_translations.py:6772587#: ../DEV_extra_translations/extra_translations.py:677
2612msgid ""2588msgid "Skype - 23390"
2613"An open source, cooperative multiplayer graphical RPG and adventure game"
2614msgstr ""
2615
2616#: ../DEV_extra_translations/extra_translations.py:678
2617msgid "Crossfire Metaserver"
2618msgstr ""2589msgstr ""
26192590
2620#: ../DEV_extra_translations/extra_translations.py:6792591#: ../DEV_extra_translations/extra_translations.py:679
2621msgid "Metaserver for Crossfire RPG"2592msgid "Doom3"
2622msgstr ""2593msgstr ""
26232594
2624#: ../DEV_extra_translations/extra_translations.py:6802595#: ../DEV_extra_translations/extra_translations.py:681
2625msgid "Delta Force 2"2596msgid "Mechwarrior 4"
2626msgstr ""2597msgstr ""
26272598
2628#: ../DEV_extra_translations/extra_translations.py:6822599#: ../DEV_extra_translations/extra_translations.py:682
2629msgid "GameRanger"2600msgid "A FPS based on the Fasa Battletech universe"
2630msgstr ""2601msgstr ""
26312602
2632#: ../DEV_extra_translations/extra_translations.py:6832603#: ../DEV_extra_translations/extra_translations.py:683
2633msgid "A game server browser from GameRanger Technologies"2604msgid "Dropbox"
2634msgstr ""2605msgstr ""
26352606
2636#: ../DEV_extra_translations/extra_translations.py:6842607#: ../DEV_extra_translations/extra_translations.py:684
2637msgid "Diablo"2608msgid ""
2609"File hosting service, that offers cloud storage, file synchronization and "
2610"client software"
2611msgstr ""
2612
2613#: ../DEV_extra_translations/extra_translations.py:685
2614msgid "Hexen II - 26900/udp"
2638msgstr ""2615msgstr ""
26392616
2640#: ../DEV_extra_translations/extra_translations.py:6862617#: ../DEV_extra_translations/extra_translations.py:686
2641msgid "PennMUSH"2618msgid "A fantasy FPS by Raven Software, server on port 27660"
2642msgstr ""2619msgstr ""
26432620
2644#: ../DEV_extra_translations/extra_translations.py:6872621#: ../DEV_extra_translations/extra_translations.py:687
2645msgid "A MUSH/MUD server"2622msgid "Hexen II - 26901/udp"
2646msgstr ""2623msgstr ""
26472624
2648#: ../DEV_extra_translations/extra_translations.py:6882625#: ../DEV_extra_translations/extra_translations.py:688
2649msgid "gpsd"2626msgid "A fantasy FPS by Raven Software, server on port 26901"
2650msgstr ""2627msgstr ""
26512628
2652#: ../DEV_extra_translations/extra_translations.py:6892629#: ../DEV_extra_translations/extra_translations.py:689
2653msgid "Interface daemon for GPS receivers"2630msgid "Hexen II - 26902/udp"
2654msgstr ""2631msgstr ""
26552632
2656#: ../DEV_extra_translations/extra_translations.py:6902633#: ../DEV_extra_translations/extra_translations.py:690
2657msgid "Network;Geography;"2634msgid "A fantasy FPS by Raven Software, server on port 26902"
2658msgstr ""2635msgstr ""
26592636
2660#: ../DEV_extra_translations/extra_translations.py:6912637#: ../DEV_extra_translations/extra_translations.py:691
2661msgid "DOSBox IPX"2638msgid "Hexen II - 26903/udp"
2662msgstr ""2639msgstr ""
26632640
2664#: ../DEV_extra_translations/extra_translations.py:6922641#: ../DEV_extra_translations/extra_translations.py:692
2665#: ../DEV_extra_translations/extra_translations.py:6952642msgid "A fantasy FPS by Raven Software, server on port 26903"
2666msgid "DOS system emulator"
2667msgstr ""2643msgstr ""
26682644
2669#: ../DEV_extra_translations/extra_translations.py:6932645#: ../DEV_extra_translations/extra_translations.py:693
2670msgid "System;Emulator;"2646msgid "HexenWorld - 26950/udp"
2671msgstr ""2647msgstr ""
26722648
2673#: ../DEV_extra_translations/extra_translations.py:6942649#: ../DEV_extra_translations/extra_translations.py:694
2674msgid "DOSBox Modem"2650msgid "HexenWorld server by Raven Software"
2651msgstr ""
2652
2653#: ../DEV_extra_translations/extra_translations.py:695
2654msgid "Postal 2"
2675msgstr ""2655msgstr ""
26762656
2677#: ../DEV_extra_translations/extra_translations.py:6962657#: ../DEV_extra_translations/extra_translations.py:696
2678msgid "People Nearby"2658msgid "A FPS by Running with Scissors (uses the Unreal engine)"
2679msgstr ""
2680
2681#: ../DEV_extra_translations/extra_translations.py:697
2682msgid "People Nearby (Bonjour/Salut) functionality in Empathy"
2683msgstr ""2659msgstr ""
26842660
2685#: ../DEV_extra_translations/extra_translations.py:6982661#: ../DEV_extra_translations/extra_translations.py:698
2686msgid "Bonjour"2662msgid ""
2663"A free and open source team-based first-person shooter with real-time "
2664"strategy elements"
2687msgstr ""2665msgstr ""
26882666
2689#: ../DEV_extra_translations/extra_translations.py:6992667#: ../DEV_extra_translations/extra_translations.py:699
2690msgid "Bonjour protocol"2668msgid "usbip"
2691msgstr ""2669msgstr ""
26922670
2693#: ../DEV_extra_translations/extra_translations.py:7002671#: ../DEV_extra_translations/extra_translations.py:700
2694msgid "MSN Chat"2672msgid "A Peripheral Bus Extension for Device Sharing over IP Network"
2695msgstr ""
2696
2697#: ../DEV_extra_translations/extra_translations.py:701
2698msgid "MSN chat protocol (with file transfer and voice)"
2699msgstr ""
2700
2701#: ../DEV_extra_translations/extra_translations.py:702
2702msgid "MSN Chat (SSL)"
2703msgstr ""2673msgstr ""
27042674
2705#: ../DEV_extra_translations/extra_translations.py:7032675#: ../DEV_extra_translations/extra_translations.py:703
2706msgid "MSN chat protocol SSL"2676msgid "UFO: Alien Invasion"
2707msgstr ""2677msgstr ""
27082678
2709#: ../DEV_extra_translations/extra_translations.py:7042679#: ../DEV_extra_translations/extra_translations.py:704
2710msgid "AIM Talk"2680msgid "An open-source 3D RTS inspired by X-COM"
2711msgstr ""2681msgstr ""
27122682
2713#: ../DEV_extra_translations/extra_translations.py:7052683#: ../DEV_extra_translations/extra_translations.py:705
2714msgid "AIM talk protocol"2684msgid "The Battle for Wesnoth"
2715msgstr ""2685msgstr ""
27162686
2717#: ../DEV_extra_translations/extra_translations.py:7062687#: ../DEV_extra_translations/extra_translations.py:706
2718msgid "Yahoo Chat"2688msgid "Turn-based tactical strategy game"
2719msgstr ""2689msgstr ""
27202690
2721#: ../DEV_extra_translations/extra_translations.py:7072691#: ../DEV_extra_translations/extra_translations.py:707
2722msgid "Yahoo chat protocol"2692msgid "Warcraft II Battle.net"
2723msgstr ""2693msgstr ""
27242694
2725#: ../DEV_extra_translations/extra_translations.py:7082695#: ../DEV_extra_translations/extra_translations.py:708
2726msgid "Steel Storm"2696msgid "Strategy game by Blizzard Entertainment"
2727msgstr ""2697msgstr ""
27282698
2729#: ../DEV_extra_translations/extra_translations.py:7092699#: ../DEV_extra_translations/extra_translations.py:709
2730msgid ""2700msgid "Delta Force: BHD"
2731"A top-down arcade shooter with hovertanks by Kot-in-Action Creative Artel"
2732msgstr ""2701msgstr ""
27332702
2734#: ../DEV_extra_translations/extra_translations.py:7102703#: ../DEV_extra_translations/extra_translations.py:710
2735msgid "Tor Normal"2704msgid "Black Hawk Down. A FPS combat game by NovaLogic"
2736msgstr ""
2737
2738#: ../DEV_extra_translations/extra_translations.py:711
2739msgid "Tor anonymity network"
2740msgstr ""2705msgstr ""
27412706
2742#: ../DEV_extra_translations/extra_translations.py:7122707#: ../DEV_extra_translations/extra_translations.py:712
2743msgid "DEFCON"2708msgid "Trivial File Transfer Protocol"
2744msgstr ""2709msgstr ""
27452710
2746#: ../DEV_extra_translations/extra_translations.py:7132711#: ../DEV_extra_translations/extra_translations.py:713
2747msgid "A thermo-nuclear war strategy game from Introversion Software"2712msgid "SiN"
2748msgstr ""2713msgstr ""
27492714
2750#: ../DEV_extra_translations/extra_translations.py:7142715#: ../DEV_extra_translations/extra_translations.py:714
2751msgid "Games for Windows - Live"2716msgid "A FPS by Ritual Entertainment"
2752msgstr ""2717msgstr ""
27532718
2754#: ../DEV_extra_translations/extra_translations.py:7152719#: ../DEV_extra_translations/extra_translations.py:715
2755msgid "Network games using Games for Windows - Live API"2720msgid "Assault Cube"
2756msgstr ""2721msgstr ""
27572722
2758#: ../DEV_extra_translations/extra_translations.py:7162723#: ../DEV_extra_translations/extra_translations.py:716
2759msgid "0verkill"2724msgid "A free, multiplayer, first-person shooter game"
2760msgstr ""2725msgstr ""
27612726
2762#: ../DEV_extra_translations/extra_translations.py:7172727#: ../DEV_extra_translations/extra_translations.py:717
2763msgid "An ASCII-art 2D deathmatch game"2728msgid "Nagios Plugin"
2764msgstr ""2729msgstr ""
27652730
2766#: ../DEV_extra_translations/extra_translations.py:7182731#: ../DEV_extra_translations/extra_translations.py:718
2767msgid "USB Redirector"2732msgid "Remote Plugin Executor"
2768msgstr ""2733msgstr ""
27692734
2770#: ../DEV_extra_translations/extra_translations.py:7192735#: ../DEV_extra_translations/extra_translations.py:719
2771msgid "USB device sharing system from INCENTIVES Pro"2736msgid "AMANDA"
2772msgstr ""2737msgstr ""
27732738
2774#: ../DEV_extra_translations/extra_translations.py:7202739#: ../DEV_extra_translations/extra_translations.py:720
2775msgid "Aleph One"2740msgid "Backup server from Zmanda; standard port with nf_conntrack_amanda"
2776msgstr ""2741msgstr ""
27772742
2778#: ../DEV_extra_translations/extra_translations.py:7212743#: ../DEV_extra_translations/extra_translations.py:721
2779msgid "An enhanced port of Marathon 2: Durandal from Bungie Software"2744msgid "Network;Archiving;"
2780msgstr ""2745msgstr ""
27812746
2782#: ../DEV_extra_translations/extra_translations.py:7222747#: ../DEV_extra_translations/extra_translations.py:722
2783msgid "WINE: Warcraft III"2748msgid "Amule"
2784msgstr ""2749msgstr ""
27852750
2786#: ../DEV_extra_translations/extra_translations.py:7242751#: ../DEV_extra_translations/extra_translations.py:723
2787msgid "WINE: Warcraft III all ports"2752msgid ""
2753"Free peer-to-peer file sharing application that works with the EDonkey "
2754"network and the Kad network"
2788msgstr ""2755msgstr ""
27892756
2790#: ../DEV_extra_translations/extra_translations.py:7252757#: ../DEV_extra_translations/extra_translations.py:725
2791msgid "Warcraft III with 6112-6119 TCP ports open"2758msgid "YS FLIGHT SIMULATION 2000"
2792msgstr ""2759msgstr ""
27932760
2794#: ../DEV_extra_translations/extra_translations.py:7262761#: ../DEV_extra_translations/extra_translations.py:726
2795msgid "VNC"2762msgid "A 3D flight simulator"
2796msgstr ""2763msgstr ""
27972764
2798#: ../DEV_extra_translations/extra_translations.py:7272765#: ../DEV_extra_translations/extra_translations.py:727
2799msgid "Virtual Network Computing"2766msgid "Globulation 2"
2767msgstr ""
2768
2769#: ../DEV_extra_translations/extra_translations.py:728
2770msgid "A RTS"
2771msgstr ""
2772
2773#: ../DEV_extra_translations/extra_translations.py:729
2774msgid "D2X-XL"
2800msgstr ""2775msgstr ""
28012776
2802#: ../DEV_extra_translations/extra_translations.py:7302777#: ../DEV_extra_translations/extra_translations.py:730
2803msgid "Team-based SciFi/alien FPS from Dark Legion Development"2778msgid "A source port of Descent II, the 3D Flying FPS by Outrage Entertainment"
2804msgstr ""2779msgstr ""
28052780
2806#: ../DEV_extra_translations/extra_translations.py:7312781#: ../DEV_extra_translations/extra_translations.py:731
2807msgid "ThinkTanks"2782msgid "Steel Storm"
2808msgstr ""2783msgstr ""
28092784
2810#: ../DEV_extra_translations/extra_translations.py:7322785#: ../DEV_extra_translations/extra_translations.py:732
2811msgid ""2786msgid ""
2812"A 3D tank combat game by BraveTree Productions using the Torque Game Engine"2787"A top-down arcade shooter with hovertanks by Kot-in-Action Creative Artel"
2813msgstr ""2788msgstr ""
28142789
2815#: ../DEV_extra_translations/extra_translations.py:7332790#: ../DEV_extra_translations/extra_translations.py:733
2816msgid "Dofus"2791msgid "CUPS"
2817msgstr ""2792msgstr ""
28182793
2819#: ../DEV_extra_translations/extra_translations.py:7342794#: ../DEV_extra_translations/extra_translations.py:734
2820msgid "A massively multiplayer online role-playing game"2795msgid "Modular printing system for Unix-like computer operating systems"
2821msgstr ""2796msgstr ""
28222797
2823#: ../DEV_extra_translations/extra_translations.py:7352798#: ../DEV_extra_translations/extra_translations.py:735
2824msgid "XPilot"2799msgid "EDuke32"
2825msgstr ""2800msgstr ""
28262801
2827#: ../DEV_extra_translations/extra_translations.py:7362802#: ../DEV_extra_translations/extra_translations.py:736
2803msgid "An enhanced version of Duke Nukem 3D"
2804msgstr ""
2805
2806#: ../DEV_extra_translations/extra_translations.py:737
2807msgid "Legends"
2808msgstr ""
2809
2828#: ../DEV_extra_translations/extra_translations.py:7382810#: ../DEV_extra_translations/extra_translations.py:738
2811msgid "A FPS based on the Torque Engine"
2812msgstr ""
2813
2814#: ../DEV_extra_translations/extra_translations.py:739
2815msgid "Battlefield 1942"
2816msgstr ""
2817
2829#: ../DEV_extra_translations/extra_translations.py:7402818#: ../DEV_extra_translations/extra_translations.py:740
2819msgid "A WWII FPS from Digital Illusions CE"
2820msgstr ""
2821
2822#: ../DEV_extra_translations/extra_translations.py:741
2823msgid "Battlefield 1942 Console"
2824msgstr ""
2825
2830#: ../DEV_extra_translations/extra_translations.py:7422826#: ../DEV_extra_translations/extra_translations.py:742
2827msgid "The RemoteConsole administration tool for Battlefield 1942"
2828msgstr ""
2829
2830#: ../DEV_extra_translations/extra_translations.py:743
2831msgid "Unreal Tournament 2004"
2832msgstr ""
2833
2831#: ../DEV_extra_translations/extra_translations.py:7442834#: ../DEV_extra_translations/extra_translations.py:744
2832msgid "A 2D space combat game"2835msgid "A FPS by Epic Games"
2833msgstr ""
2834
2835#: ../DEV_extra_translations/extra_translations.py:737
2836msgid "XPilot 2-players"
2837msgstr ""
2838
2839#: ../DEV_extra_translations/extra_translations.py:739
2840msgid "XPilot 4-players"
2841msgstr ""
2842
2843#: ../DEV_extra_translations/extra_translations.py:741
2844msgid "XPilot 8-players"
2845msgstr ""
2846
2847#: ../DEV_extra_translations/extra_translations.py:743
2848msgid "XPilot 16-players"
2849msgstr ""2836msgstr ""
28502837
2851#: ../DEV_extra_translations/extra_translations.py:7452838#: ../DEV_extra_translations/extra_translations.py:745
2852msgid "Vuze Remote"2839msgid "Unreal Tournament 2004 Admin"
2853msgstr ""2840msgstr ""
28542841
2855#: ../DEV_extra_translations/extra_translations.py:7462842#: ../DEV_extra_translations/extra_translations.py:746
2856msgid "Remote control for Vuze"2843msgid "Web-based administration for the FPS by Epic Games"
2844msgstr ""
2845
2846#: ../DEV_extra_translations/extra_translations.py:747
2847msgid "Wakfu"
2857msgstr ""2848msgstr ""
28582849
2859#: ../DEV_extra_translations/extra_translations.py:7482850#: ../DEV_extra_translations/extra_translations.py:748
2860msgid "Wormux"2851msgid "An online tactical turn-based MMORPG"
2852msgstr ""
2853
2854#: ../DEV_extra_translations/extra_translations.py:749
2855msgid "NSClient++"
2861msgstr ""2856msgstr ""
28622857
2863#: ../DEV_extra_translations/extra_translations.py:7502858#: ../DEV_extra_translations/extra_translations.py:750
2864msgid "Vuze"2859msgid "Used to monitor Windows machines from a Nagios Server"
2865msgstr ""2860msgstr ""
28662861
2867#: ../DEV_extra_translations/extra_translations.py:7512862#: ../DEV_extra_translations/extra_translations.py:751
2868msgid ""2863msgid "DHCP"
2869"BitTorrent client used to transfer files via the BitTorrent protocol. Vuze "
2870"uses the Azureus Engine"
2871msgstr ""2864msgstr ""
28722865
2873#: ../DEV_extra_translations/extra_translations.py:7522866#: ../DEV_extra_translations/extra_translations.py:752
2874msgid ""2867msgid "Dynamic Host Configuration Protocol"
2875"You need to add the main random port too that you selected the first time"
2876msgstr ""2868msgstr ""
28772869
2878#: ../DEV_extra_translations/extra_translations.py:7532870#: ../DEV_extra_translations/extra_translations.py:753
2879msgid "OpenMeetings Secure RTMP"2871msgid "Prey"
2880msgstr ""2872msgstr ""
28812873
2882#: ../DEV_extra_translations/extra_translations.py:7542874#: ../DEV_extra_translations/extra_translations.py:754
2883msgid "OpenMeetings Real Time Messaging Protocol over SSL"2875msgid "A SciFi FPS action adventure by 3D Realms"
2884msgstr ""2876msgstr ""
28852877
2886#: ../DEV_extra_translations/extra_translations.py:7552878#: ../DEV_extra_translations/extra_translations.py:755
2887msgid "Network;Video Conference;"2879msgid "WINE: Warcraft III"
2888msgstr ""
2889
2890#: ../DEV_extra_translations/extra_translations.py:756
2891msgid "OpenMeetings Tunneled RTMP"
2892msgstr ""2880msgstr ""
28932881
2894#: ../DEV_extra_translations/extra_translations.py:7572882#: ../DEV_extra_translations/extra_translations.py:757
2895msgid "OpenMeetings Real Time Messaging Protocol over HTTP"2883msgid "WINE: Warcraft III all ports"
2896msgstr ""2884msgstr ""
28972885
2898#: ../DEV_extra_translations/extra_translations.py:7582886#: ../DEV_extra_translations/extra_translations.py:758
2899msgid "OpenMeetings HTTP"2887msgid "Warcraft III with 6112-6119 TCP ports open"
2900msgstr ""2888msgstr ""
29012889
2902#: ../DEV_extra_translations/extra_translations.py:7592890#: ../DEV_extra_translations/extra_translations.py:759
2903msgid "OpenMeetings HTTP server"2891msgid "IPP"
2904msgstr ""2892msgstr ""
29052893
2906#: ../DEV_extra_translations/extra_translations.py:7602894#: ../DEV_extra_translations/extra_translations.py:760
2907msgid "OpenMeetings DSP"2895msgid "Internet Printing Protocol"
2908msgstr ""2896msgstr ""
29092897
2910#: ../DEV_extra_translations/extra_translations.py:7612898#: ../DEV_extra_translations/extra_translations.py:761
2911msgid "OpenMeetings Desktop Sharing Protocol (ODSP)"2899msgid "SAMBA"
2912msgstr ""2900msgstr ""
29132901
2914#: ../DEV_extra_translations/extra_translations.py:7622902#: ../DEV_extra_translations/extra_translations.py:762
2915msgid "VNC server display :0"2903msgid ""
2904"SMB/CIFS protocol for Unix systems, allowing you to serve files and printers "
2905"to Windows, NT, OS/2 and DOS clients"
2916msgstr ""2906msgstr ""
29172907
2918#: ../DEV_extra_translations/extra_translations.py:7632908#: ../DEV_extra_translations/extra_translations.py:763
2919msgid "Virtual Network Computing standard server display :0"2909msgid "Network;Services;|Network;File Transfer"
2910msgstr ""
2911
2912#: ../DEV_extra_translations/extra_translations.py:764
2913msgid "XMPP"
2920msgstr ""2914msgstr ""
29212915
2922#: ../DEV_extra_translations/extra_translations.py:7652916#: ../DEV_extra_translations/extra_translations.py:765
2923#: ../DEV_extra_translations/extra_translations.py:7772917msgid "Extensible Messaging and Presence Protocol client connection (Jabber)"
2924msgid "VNC displays :0-:1"
2925msgstr ""2918msgstr ""
29262919
2927#: ../DEV_extra_translations/extra_translations.py:7662920#: ../DEV_extra_translations/extra_translations.py:766
2928msgid "Virtual Network Computing standard server displays :0 through :1"2921msgid "XMPP SSL"
2922msgstr ""
2923
2924#: ../DEV_extra_translations/extra_translations.py:767
2925msgid ""
2926"Extensible Messaging and Presence Protocol (Jabber) client connection with "
2927"SSL encryption"
2929msgstr ""2928msgstr ""
29302929
2931#: ../DEV_extra_translations/extra_translations.py:7682930#: ../DEV_extra_translations/extra_translations.py:768
2932#: ../DEV_extra_translations/extra_translations.py:7802931msgid "XMPP Interserver"
2933msgid "VNC displays :0-:3"
2934msgstr ""2932msgstr ""
29352933
2936#: ../DEV_extra_translations/extra_translations.py:7692934#: ../DEV_extra_translations/extra_translations.py:769
2937msgid "Virtual Network Computing standard server displays :0 through :3"2935msgid "Extensible Messaging and Presence Protocol server-server connection"
2936msgstr ""
2937
2938#: ../DEV_extra_translations/extra_translations.py:770
2939msgid "XMPP Serverless"
2938msgstr ""2940msgstr ""
29392941
2940#: ../DEV_extra_translations/extra_translations.py:7712942#: ../DEV_extra_translations/extra_translations.py:771
2941#: ../DEV_extra_translations/extra_translations.py:7832943msgid ""
2942msgid "VNC displays :0-:7"2944"Extensible Messaging and Presence Protocol link-local messaging/serverless "
2945"messaging"
2943msgstr ""2946msgstr ""
29442947
2945#: ../DEV_extra_translations/extra_translations.py:7722948#: ../DEV_extra_translations/extra_translations.py:772
2946msgid "Virtual Network Computing standard server displays :0 through :7"2949msgid "STUN"
2950msgstr ""
2951
2952#: ../DEV_extra_translations/extra_translations.py:773
2953msgid "Session Traversal Utilities for NAT"
2947msgstr ""2954msgstr ""
29482955
2949#: ../DEV_extra_translations/extra_translations.py:7742956#: ../DEV_extra_translations/extra_translations.py:774
2950msgid "VNC http server display :0"2957msgid "STUN TLS"
2951msgstr ""2958msgstr ""
29522959
2953#: ../DEV_extra_translations/extra_translations.py:7752960#: ../DEV_extra_translations/extra_translations.py:775
2954msgid "Virtual Network Computing http server display :0"2961msgid "Session Traversal Utilities for NAT with TLS encryption"
2962msgstr ""
2963
2964#: ../DEV_extra_translations/extra_translations.py:776
2965msgid "Tor Normal"
2966msgstr ""
2967
2968#: ../DEV_extra_translations/extra_translations.py:777
2969msgid "Tor anonymity network"
2955msgstr ""2970msgstr ""
29562971
2957#: ../DEV_extra_translations/extra_translations.py:7782972#: ../DEV_extra_translations/extra_translations.py:778
2958msgid "Virtual Network Computing http server displays :0 through :1"2973msgid "Webcam_server"
2974msgstr ""
2975
2976#: ../DEV_extra_translations/extra_translations.py:779
2977msgid "A webcam viewer for web servers with an optional Java-based viewer"
2978msgstr ""
2979
2980#: ../DEV_extra_translations/extra_translations.py:780
2981msgid "Network;Audio Video;Video;"
2959msgstr ""2982msgstr ""
29602983
2961#: ../DEV_extra_translations/extra_translations.py:7812984#: ../DEV_extra_translations/extra_translations.py:781
2962msgid "Virtual Network Computing http server displays :0 through :3"2985msgid "MythTV"
2986msgstr ""
2987
2988#: ../DEV_extra_translations/extra_translations.py:782
2989msgid "MythTV backend"
2990msgstr ""
2991
2992#: ../DEV_extra_translations/extra_translations.py:783
2993#: ../DEV_extra_translations/extra_translations.py:820
2994msgid "SANE scanner"
2963msgstr ""2995msgstr ""
29642996
2965#: ../DEV_extra_translations/extra_translations.py:7842997#: ../DEV_extra_translations/extra_translations.py:784
2966msgid "Virtual Network Computing http server displays :0 through :7"2998#: ../DEV_extra_translations/extra_translations.py:821
2999msgid "Scanner Access Now Easy - scanner sharing server"
3000msgstr ""
3001
3002#: ../DEV_extra_translations/extra_translations.py:785
3003msgid "Network;Scanning;"
2967msgstr ""3004msgstr ""
29683005
2969#: ../DEV_extra_translations/extra_translations.py:7863006#: ../DEV_extra_translations/extra_translations.py:786
2970msgid "LPD"3007msgid "SANE Manual"
2971msgstr ""3008msgstr ""
29723009
2973#: ../DEV_extra_translations/extra_translations.py:7873010#: ../DEV_extra_translations/extra_translations.py:787
2974msgid "LPD server"3011msgid ""
2975msgstr ""3012"Scanner Access Now Easy - scanner sharing server, manual ports without "
29763013"nf_conntrack_sane module"
2977#: ../DEV_extra_translations/extra_translations.py:7903014msgstr ""
2978msgid "Return To Castle Wolfenstein"3015
3016#: ../DEV_extra_translations/extra_translations.py:788
3017msgid "Deluge Torrent"
3018msgstr ""
3019
3020#: ../DEV_extra_translations/extra_translations.py:789
3021msgid "Cross-platform BitTorrent client written with Python and GTK+"
2979msgstr ""3022msgstr ""
29803023
2981#: ../DEV_extra_translations/extra_translations.py:7913024#: ../DEV_extra_translations/extra_translations.py:791
2982msgid ""
2983"WWII FPS and sequel from Splash Damage, Gray Matter Interactive, Nerve "
2984"Software, and id Software"
2985msgstr ""
2986
2987#: ../DEV_extra_translations/extra_translations.py:7923025#: ../DEV_extra_translations/extra_translations.py:792
2988msgid "Kohan: Immortal Sovereigns"3026msgid "GameSpy"
2989msgstr ""3027msgstr ""
29903028
2991#: ../DEV_extra_translations/extra_translations.py:7933029#: ../DEV_extra_translations/extra_translations.py:793
2992msgid "A real-time strategy game by TimeGate Studios"3030msgid "GameSpy Arcade"
2993msgstr ""3031msgstr ""
29943032
2995#: ../DEV_extra_translations/extra_translations.py:7943033#: ../DEV_extra_translations/extra_translations.py:794
2996msgid "Frozen Bubble"3034msgid "GameSpy Arcade gaming network"
2997msgstr ""3035msgstr ""
29983036
2999#: ../DEV_extra_translations/extra_translations.py:7953037#: ../DEV_extra_translations/extra_translations.py:795
3000msgid "A clone of Puzzle Bobble/Bust-a-Move"3038msgid "Transmission"
3001msgstr ""3039msgstr ""
30023040
3003#: ../DEV_extra_translations/extra_translations.py:7963041#: ../DEV_extra_translations/extra_translations.py:796
3004msgid "Serious Sam II"3042msgid ""
3005msgstr ""3043"BitTorrent client which features a simple interface on top of a cross-"
30063044"platform backend"
3007#: ../DEV_extra_translations/extra_translations.py:797
3008#: ../DEV_extra_translations/extra_translations.py:826
3009msgid "FPS by Croteam"
3010msgstr ""3045msgstr ""
30113046
3012#: ../DEV_extra_translations/extra_translations.py:7983047#: ../DEV_extra_translations/extra_translations.py:798
3013msgid "Savage: The Battle for Newerth/Savage XR"3048msgid "Spring game engine"
3049msgstr ""
3050
3051#: ../DEV_extra_translations/extra_translations.py:799
3052msgid ""
3053"An enhanced clone of RTS game Total Annihilation by Cavedog Entertainment"
3014msgstr ""3054msgstr ""
30153055
3016#: ../DEV_extra_translations/extra_translations.py:8003056#: ../DEV_extra_translations/extra_translations.py:800
3017msgid "Skype Normal"3057msgid "Drakan: Order of the Flame"
3018msgstr ""3058msgstr ""
30193059
3020#: ../DEV_extra_translations/extra_translations.py:8013060#: ../DEV_extra_translations/extra_translations.py:801
3021msgid "Proprietary Voice over IP service and software application"3061msgid "A dragon-riding action-adventure from Surreal Software"
3022msgstr ""3062msgstr ""
30233063
3024#: ../DEV_extra_translations/extra_translations.py:8023064#: ../DEV_extra_translations/extra_translations.py:802
3025msgid "MiG-29 Fulcrum"3065msgid "TeamSpeak 2 voice"
3026msgstr ""3066msgstr ""
30273067
3028#: ../DEV_extra_translations/extra_translations.py:8033068#: ../DEV_extra_translations/extra_translations.py:803
3029msgid "A Mikoyan-Gurevich MiG-29 Fulcrum simulation by NovaLogic"3069msgid "TeamSpeak 2 voice service"
3030msgstr ""3070msgstr ""
30313071
3032#: ../DEV_extra_translations/extra_translations.py:8043072#: ../DEV_extra_translations/extra_translations.py:804
3033msgid "iMaze"3073msgid "TeamSpeak 2 web"
3034msgstr ""3074msgstr ""
30353075
3036#: ../DEV_extra_translations/extra_translations.py:8053076#: ../DEV_extra_translations/extra_translations.py:805
3037msgid "A maze combat game in 3D"3077msgid "TeamSpeak 2 web interface"
3038msgstr ""3078msgstr ""
30393079
3040#: ../DEV_extra_translations/extra_translations.py:8063080#: ../DEV_extra_translations/extra_translations.py:806
3041msgid "Webcam_server"
3042msgstr ""
3043
3044#: ../DEV_extra_translations/extra_translations.py:8073081#: ../DEV_extra_translations/extra_translations.py:807
3045msgid "A webcam viewer for web servers with an optional Java-based viewer"3082msgid "TeamSpeak 2 TCP query"
3046msgstr ""3083msgstr ""
30473084
3048#: ../DEV_extra_translations/extra_translations.py:8083085#: ../DEV_extra_translations/extra_translations.py:808
3049msgid "Network;Audio Video;Video;"3086msgid "Nexuiz"
3050msgstr ""3087msgstr ""
30513088
3052#: ../DEV_extra_translations/extra_translations.py:8093089#: ../DEV_extra_translations/extra_translations.py:809
3053msgid "CUPS"3090msgid "A FPS based on Darkplaces/Quake engine by id Software"
3054msgstr ""3091msgstr ""
30553092
3056#: ../DEV_extra_translations/extra_translations.py:8103093#: ../DEV_extra_translations/extra_translations.py:810
3057msgid "Modular printing system for Unix-like computer operating systems"3094msgid "Murmur"
3058msgstr ""3095msgstr ""
30593096
3060#: ../DEV_extra_translations/extra_translations.py:8113097#: ../DEV_extra_translations/extra_translations.py:811
3061msgid "GNUnet"3098msgid "Murmur voice chat server (counterpart to Mumble client)"
3062msgstr ""3099msgstr ""
30633100
3064#: ../DEV_extra_translations/extra_translations.py:8123101#: ../DEV_extra_translations/extra_translations.py:812
3065msgid ""3102msgid "PennMUSH"
3066"A decentralized peer-to-peer networking framework with file sharing and "
3067"messaging"
3068msgstr ""3103msgstr ""
30693104
3070#: ../DEV_extra_translations/extra_translations.py:8133105#: ../DEV_extra_translations/extra_translations.py:813
3071msgid "NFS (Chris Lowth)"3106msgid "A MUSH/MUD server"
3072msgstr ""3107msgstr ""
30733108
3074#: ../DEV_extra_translations/extra_translations.py:8143109#: ../DEV_extra_translations/extra_translations.py:814
3075msgid ""3110msgid "Tether"
3076"Network File System protocol with static ports at 4000:4002 (some conflicts "
3077"with popular games; statd broadcast on random port)"
3078msgstr ""3111msgstr ""
30793112
3080#: ../DEV_extra_translations/extra_translations.py:8153113#: ../DEV_extra_translations/extra_translations.py:815
3081msgid "NFS Quota (Chris Lowth)"3114msgid "A clone of strategy game Moonbase Commander by Humongous Entertainment"
3082msgstr ""3115msgstr ""
30833116
3084#: ../DEV_extra_translations/extra_translations.py:8163117#: ../DEV_extra_translations/extra_translations.py:816
3085msgid ""3118msgid "FreeOrion"
3086"NFS with user/group filesystem usage quota support with static ports at "
3087"4000:4003 (some conflicts with popular games; statd broadcast on random port)"
3088msgstr ""3119msgstr ""
30893120
3090#: ../DEV_extra_translations/extra_translations.py:8173121#: ../DEV_extra_translations/extra_translations.py:817
3091msgid "TeamSpeak 2 voice"3122msgid ""
3123"A turn-based 4X strategy game inspired by Master of Orion from MicroProse"
3092msgstr ""3124msgstr ""
30933125
3094#: ../DEV_extra_translations/extra_translations.py:8183126#: ../DEV_extra_translations/extra_translations.py:818
3095msgid "TeamSpeak 2 voice service"3127msgid "NAT"
3096msgstr ""3128msgstr ""
30973129
3098#: ../DEV_extra_translations/extra_translations.py:8193130#: ../DEV_extra_translations/extra_translations.py:819
3099msgid "TeamSpeak 2 web"3131msgid "Port Mapping Protocol"
3100msgstr ""3132msgstr ""
31013133
3102#: ../DEV_extra_translations/extra_translations.py:820
3103msgid "TeamSpeak 2 web interface"
3104msgstr ""
3105
3106#: ../DEV_extra_translations/extra_translations.py:821
3107#: ../DEV_extra_translations/extra_translations.py:8223134#: ../DEV_extra_translations/extra_translations.py:822
3108msgid "TeamSpeak 2 TCP query"3135msgid "Frozen Bubble"
3109msgstr ""3136msgstr ""
31103137
3111#: ../DEV_extra_translations/extra_translations.py:8233138#: ../DEV_extra_translations/extra_translations.py:823
3112msgid "DXX-Rebirth"3139msgid "A clone of Puzzle Bobble/Bust-a-Move"
3113msgstr ""3140msgstr ""
31143141
3115#: ../DEV_extra_translations/extra_translations.py:8243142#: ../DEV_extra_translations/extra_translations.py:824
3116msgid "A source port of Descent, the 3D Flying FPS by Outrage Entertainment"3143msgid "BitTorrent Minimum"
3117msgstr ""3144msgstr ""
31183145
3119#: ../DEV_extra_translations/extra_translations.py:8253146#: ../DEV_extra_translations/extra_translations.py:825
3120msgid "Serious Sam"3147#: ../DEV_extra_translations/extra_translations.py:828
3148#: ../DEV_extra_translations/extra_translations.py:831
3149msgid "BitTorrent peer-peer file sharing"
3121msgstr ""3150msgstr ""
31223151
3123#: ../DEV_extra_translations/extra_translations.py:8273152#: ../DEV_extra_translations/extra_translations.py:827
3124msgid "FreeLords"3153msgid "BitTorrent"
3125msgstr ""
3126
3127#: ../DEV_extra_translations/extra_translations.py:828
3128msgid "A clone of Warlords"
3129msgstr ""
3130
3131#: ../DEV_extra_translations/extra_translations.py:829
3132msgid "Vendetta Online"
3133msgstr ""3154msgstr ""
31343155
3135#: ../DEV_extra_translations/extra_translations.py:8303156#: ../DEV_extra_translations/extra_translations.py:830
3136msgid ""3157msgid "BitTorrent Full"
3137"A twitch-based, science fiction massively multiplayer online role-playing "3158msgstr ""
3138"game (MMORPG)"3159
3139msgstr ""3160#: ../DEV_extra_translations/extra_translations.py:833
31403161msgid "Sid Meier's Civilization IV"
3141#: ../DEV_extra_translations/extra_translations.py:8313162msgstr ""
3142msgid "LBreakout2 - 8001/udp"3163
3143msgstr ""
3144
3145#: ../DEV_extra_translations/extra_translations.py:832
3146#: ../DEV_extra_translations/extra_translations.py:8343164#: ../DEV_extra_translations/extra_translations.py:834
3147msgid "A Breakout clone"3165msgid "A turn-based strategy game from Firaxis Games"
3148msgstr ""
3149
3150#: ../DEV_extra_translations/extra_translations.py:833
3151msgid "LBreakout2 - 2002/udp"
3152msgstr ""3166msgstr ""
31533167
3154#: ../DEV_extra_translations/extra_translations.py:8353168#: ../DEV_extra_translations/extra_translations.py:835
3155msgid "Bos Wars"3169msgid "Serious Sam II"
3156msgstr ""
3157
3158#: ../DEV_extra_translations/extra_translations.py:836
3159msgid "A futuristic RTS based on the Stratagus engine"
3160msgstr ""3170msgstr ""
31613171
3162#: ../DEV_extra_translations/extra_translations.py:8373172#: ../DEV_extra_translations/extra_translations.py:837
3163msgid "NFS TLDP NFS"3173msgid "RDP"
3164msgstr ""3174msgstr ""
31653175
3166#: ../DEV_extra_translations/extra_translations.py:8383176#: ../DEV_extra_translations/extra_translations.py:838
3167msgid ""3177msgid "Remote Desktop Protocols"
3168"Network File System protocol with static ports at 32765:32768 (some "
3169"conflicts with popular games)"
3170msgstr ""
3171
3172#: ../DEV_extra_translations/extra_translations.py:839
3173msgid "NFS Quota & TLDP NFS"
3174msgstr ""3178msgstr ""
31753179
3176#: ../DEV_extra_translations/extra_translations.py:8403180#: ../DEV_extra_translations/extra_translations.py:840
3177msgid ""3181msgid "Knights and Merchants TSK"
3178"NFS with user/group filesystem usage quota support with static ports at "
3179"32765:32769 (some conflicts with popular games)"
3180msgstr ""3182msgstr ""
31813183
3182#: ../DEV_extra_translations/extra_translations.py:8413184#: ../DEV_extra_translations/extra_translations.py:841
3185msgid "A RTS by Joymania"
3186msgstr ""
3187
3188#: ../DEV_extra_translations/extra_translations.py:842
3189msgid "Scorched 3D server"
3190msgstr ""
3191
3192#: ../DEV_extra_translations/extra_translations.py:843
3193msgid "A modernization of the classic DOS game Scorched Earth"
3194msgstr ""
3195
3196#: ../DEV_extra_translations/extra_translations.py:844
3197msgid "Windows Messenger"
3198msgstr ""
3199
3200#: ../DEV_extra_translations/extra_translations.py:845
3201msgid ""
3202"Windows Messenger/Windows Live Messenger application sharing and whiteboard "
3203"(requires SIP)"
3204msgstr ""
3205
3206#: ../DEV_extra_translations/extra_translations.py:846
3207msgid "Windows Messenger File"
3208msgstr ""
3209
3210#: ../DEV_extra_translations/extra_translations.py:847
3211msgid "Windows Messenger/MSN Messenger file transfer"
3212msgstr ""
3213
3214#: ../DEV_extra_translations/extra_translations.py:848
3215msgid "Windows Messenger Assistance"
3216msgstr ""
3217
3218#: ../DEV_extra_translations/extra_translations.py:849
3219msgid "Remote Assistance/Remote Desktop Protocol/Terminal Services (RDP)"
3220msgstr ""
3221
3222#: ../DEV_extra_translations/extra_translations.py:851
3223msgid "Comanche 4"
3224msgstr ""
3225
3226#: ../DEV_extra_translations/extra_translations.py:852
3227msgid "A Comanche RAH-66 helicopter simulation by NovaLogic"
3228msgstr ""
3229
3230#: ../DEV_extra_translations/extra_translations.py:853
3231msgid "F-16 Multirole Fighter"
3232msgstr ""
3233
3234#: ../DEV_extra_translations/extra_translations.py:854
3235msgid "A F-16 simulation by NovaLogic"
3236msgstr ""
3237
3238#: ../DEV_extra_translations/extra_translations.py:855
3183msgid "Authentication is required to run the Firewall Configuration"3239msgid "Authentication is required to run the Firewall Configuration"
3184msgstr ""3240msgstr ""
31853241
@@ -3232,7 +3288,7 @@
3232msgstr ""3288msgstr ""
32333289
3234#: ../data/ui/update.ui.h:13 ../data/ui/add.ui.h:283290#: ../data/ui/update.ui.h:13 ../data/ui/add.ui.h:28
3235#: ../gufw/gufw/view/gufw.py:1963291#: ../gufw/gufw/view/gufw.py:199
3236msgid "Log"3292msgid "Log"
3237msgstr ""3293msgstr ""
32383294
@@ -3273,7 +3329,7 @@
3273msgstr ""3329msgstr ""
32743330
3275#: ../data/ui/update.ui.h:23 ../data/ui/add.ui.h:353331#: ../data/ui/update.ui.h:23 ../data/ui/add.ui.h:35
3276#: ../gufw/gufw/view/gufw.py:2603332#: ../gufw/gufw/view/gufw.py:263
3277msgid "Port"3333msgid "Port"
3278msgstr ""3334msgstr ""
32793335
@@ -3566,14 +3622,26 @@
3566msgstr ""3622msgstr ""
35673623
3568#: ../data/ui/gufw.ui.h:363624#: ../data/ui/gufw.ui.h:36
3625msgid "Pause Listening Report"
3626msgstr ""
3627
3628#: ../data/ui/gufw.ui.h:37
3629msgid "Pause"
3630msgstr ""
3631
3632#: ../data/ui/gufw.ui.h:38
3633msgid "See current Listening Report"
3634msgstr ""
3635
3636#: ../data/ui/gufw.ui.h:39
3569msgid "Create a rule from the listening report..."3637msgid "Create a rule from the listening report..."
3570msgstr ""3638msgstr ""
35713639
3572#: ../data/ui/gufw.ui.h:373640#: ../data/ui/gufw.ui.h:40
3573msgid "Copy log to clipboard"3641msgid "Copy log to clipboard"
3574msgstr ""3642msgstr ""
35753643
3576#: ../data/ui/gufw.ui.h:383644#: ../data/ui/gufw.ui.h:41
3577msgid "Remove log"3645msgid "Remove log"
3578msgstr ""3646msgstr ""
35793647
@@ -3679,7 +3747,7 @@
3679msgid "The firewall has to be enabled first"3747msgid "The firewall has to be enabled first"
3680msgstr ""3748msgstr ""
36813749
3682#: ../gufw/gufw/view/add.py:406 ../gufw/gufw/view/gufw.py:5693750#: ../gufw/gufw/view/add.py:406 ../gufw/gufw/view/gufw.py:584
3683msgid "Error running: "3751msgid "Error running: "
3684msgstr ""3752msgstr ""
36853753
@@ -3804,433 +3872,433 @@
3804msgid "Refresh Interval: "3872msgid "Refresh Interval: "
3805msgstr ""3873msgstr ""
38063874
3807#: ../gufw/gufw/view/gufw.py:125 ../gufw/gufw/view/gufw.py:1803875#: ../gufw/gufw/view/gufw.py:125 ../gufw/gufw/view/gufw.py:183
3808#: ../gufw/gufw/view/gufw.py:3023876#: ../gufw/gufw/view/gufw.py:307
3809msgid "Getting started"3877msgid "Getting started"
3810msgstr ""3878msgstr ""
38113879
3812#: ../gufw/gufw/view/gufw.py:1863880#: ../gufw/gufw/view/gufw.py:189
3813msgid "Rules"3881msgid "Rules"
3814msgstr ""3882msgstr ""
38153883
3816#: ../gufw/gufw/view/gufw.py:1913884#: ../gufw/gufw/view/gufw.py:194
3817msgid "Report"3885msgid "Report"
3818msgstr ""3886msgstr ""
38193887
3820#. Rules3888#. Rules
3821#. Listening Report3889#. Listening Report
3822#: ../gufw/gufw/view/gufw.py:233 ../gufw/gufw/view/gufw.py:2503890#: ../gufw/gufw/view/gufw.py:236 ../gufw/gufw/view/gufw.py:253
3823msgid "Nº"3891msgid "Nº"
3824msgstr ""3892msgstr ""
38253893
3826#: ../gufw/gufw/view/gufw.py:2383894#: ../gufw/gufw/view/gufw.py:241
3827msgid "Rule"3895msgid "Rule"
3828msgstr ""3896msgstr ""
38293897
3830#: ../gufw/gufw/view/gufw.py:2433898#: ../gufw/gufw/view/gufw.py:246
3831msgid "Name"3899msgid "Name"
3832msgstr ""3900msgstr ""
38333901
3834#: ../gufw/gufw/view/gufw.py:2553902#: ../gufw/gufw/view/gufw.py:258
3835msgid "Protocol"3903msgid "Protocol"
3836msgstr ""3904msgstr ""
38373905
3838#: ../gufw/gufw/view/gufw.py:2653906#: ../gufw/gufw/view/gufw.py:268
3839msgid "Address"3907msgid "Address"
3840msgstr ""3908msgstr ""
38413909
3842#: ../gufw/gufw/view/gufw.py:2703910#: ../gufw/gufw/view/gufw.py:273
3843msgid "Application"3911msgid "Application"
3844msgstr ""3912msgstr ""
38453913
3846#: ../gufw/gufw/view/gufw.py:3033914#: ../gufw/gufw/view/gufw.py:308
3847msgid ""3915msgid ""
3848"An uncomplicated way to manage your firewall, powered by ufw. Easy, simple, "3916"An uncomplicated way to manage your firewall, powered by ufw. Easy, simple, "
3849"nice and useful! :)"3917"nice and useful! :)"
3850msgstr ""3918msgstr ""
38513919
3852#: ../gufw/gufw/view/gufw.py:3043920#: ../gufw/gufw/view/gufw.py:309
3853msgid "Basic"3921msgid "Basic"
3854msgstr ""3922msgstr ""
38553923
3856#: ../gufw/gufw/view/gufw.py:3053924#: ../gufw/gufw/view/gufw.py:310
3857msgid "FAQ"3925msgid "FAQ"
3858msgstr ""3926msgstr ""
38593927
3860#: ../gufw/gufw/view/gufw.py:3063928#: ../gufw/gufw/view/gufw.py:311
3861msgid ""3929msgid ""
3862"If you are a normal user, you will be safe with this setting (Status=On, "3930"If you are a normal user, you will be safe with this setting (Status=On, "
3863"Incoming=Deny, Outgoing=Allow). Remember to append allow rules for your P2P "3931"Incoming=Deny, Outgoing=Allow). Remember to append allow rules for your P2P "
3864"apps:"3932"apps:"
3865msgstr ""3933msgstr ""
38663934
3867#: ../gufw/gufw/view/gufw.py:3073935#: ../gufw/gufw/view/gufw.py:312
3868msgid "You can rename your profiles with just 2 clicks on them:"3936msgid "You can rename your profiles with just 2 clicks on them:"
3869msgstr ""3937msgstr ""
38703938
3871#: ../gufw/gufw/view/gufw.py:3083939#: ../gufw/gufw/view/gufw.py:313
3872msgid "The Rule Name will help you to identify your rules in the future:"3940msgid "The Rule Name will help you to identify your rules in the future:"
3873msgstr ""3941msgstr ""
38743942
3875#: ../gufw/gufw/view/gufw.py:3093943#: ../gufw/gufw/view/gufw.py:314
3876msgid "How to autostart Gufw with the system?"3944msgid "How to autostart Gufw with the system?"
3877msgstr ""3945msgstr ""
38783946
3879#: ../gufw/gufw/view/gufw.py:3103947#: ../gufw/gufw/view/gufw.py:315
3880msgid ""3948msgid ""
3881"You do not need it. After you do all of the changes in Gufw, the settings "3949"You do not need it. After you do all of the changes in Gufw, the settings "
3882"are still in place until the next changes."3950"are still in place until the next changes."
3883msgstr ""3951msgstr ""
38843952
3885#: ../gufw/gufw/view/gufw.py:3113953#: ../gufw/gufw/view/gufw.py:316
3886msgid "Why is Gufw disabled by default?"3954msgid "Why is Gufw disabled by default?"
3887msgstr ""3955msgstr ""
38883956
3889#: ../gufw/gufw/view/gufw.py:3123957#: ../gufw/gufw/view/gufw.py:317
3890msgid "By default, the firewall does not open ports to the outside world."3958msgid "By default, the firewall does not open ports to the outside world."
3891msgstr ""3959msgstr ""
38923960
3893#: ../gufw/gufw/view/gufw.py:3133961#: ../gufw/gufw/view/gufw.py:318
3894msgid "Some rules are added by themselves?"3962msgid "Some rules are added by themselves?"
3895msgstr ""3963msgstr ""
38963964
3897#: ../gufw/gufw/view/gufw.py:3143965#: ../gufw/gufw/view/gufw.py:319
3898msgid ""3966msgid ""
3899"Well, the behaviour is such that when you change or import a profile, or "3967"Well, the behaviour is such that when you change or import a profile, or "
3900"when you edit a rule, Gufw will add that rule again, then ufw re-adds that "3968"when you edit a rule, Gufw will add that rule again, then ufw re-adds that "
3901"rule for IPv4 and IPv6."3969"rule for IPv4 and IPv6."
3902msgstr ""3970msgstr ""
39033971
3904#: ../gufw/gufw/view/gufw.py:3153972#: ../gufw/gufw/view/gufw.py:320
3905msgid "What is Allow, Deny, Reject and Limit?"3973msgid "What is Allow, Deny, Reject and Limit?"
3906msgstr ""3974msgstr ""
39073975
3908#: ../gufw/gufw/view/gufw.py:3163976#: ../gufw/gufw/view/gufw.py:321
3909msgid "Allow: Will allow traffic."3977msgid "Allow: Will allow traffic."
3910msgstr ""3978msgstr ""
39113979
3912#: ../gufw/gufw/view/gufw.py:3173980#: ../gufw/gufw/view/gufw.py:322
3913msgid "Deny: Will deny traffic."3981msgid "Deny: Will deny traffic."
3914msgstr ""3982msgstr ""
39153983
3916#: ../gufw/gufw/view/gufw.py:3183984#: ../gufw/gufw/view/gufw.py:323
3917msgid "Reject: Will deny traffic and will inform that it has been rejected."3985msgid "Reject: Will deny traffic and will inform that it has been rejected."
3918msgstr ""3986msgstr ""
39193987
3920#: ../gufw/gufw/view/gufw.py:3193988#: ../gufw/gufw/view/gufw.py:324
3921msgid "Limit: Will deny traffic if an IP tried several connections."3989msgid "Limit: Will deny traffic if an IP tried several connections."
3922msgstr ""3990msgstr ""
39233991
3924#: ../gufw/gufw/view/gufw.py:3203992#: ../gufw/gufw/view/gufw.py:325
3925msgid "I see some rules in all profiles"3993msgid "I see some rules in all profiles"
3926msgstr ""3994msgstr ""
39273995
3928#: ../gufw/gufw/view/gufw.py:3213996#: ../gufw/gufw/view/gufw.py:326
3929msgid "All the ufw rules will be appear in all profiles."3997msgid "All the ufw rules will be appear in all profiles."
3930msgstr ""3998msgstr ""
39313999
3932#: ../gufw/gufw/view/gufw.py:3224000#: ../gufw/gufw/view/gufw.py:327
3933msgid "What do I see in the Listening Report?"4001msgid "What do I see in the Listening Report?"
3934msgstr ""4002msgstr ""
39354003
3936#: ../gufw/gufw/view/gufw.py:3234004#: ../gufw/gufw/view/gufw.py:328
3937msgid ""4005msgid ""
3938"The ports on the live system in the listening state for TCP and the open "4006"The ports on the live system in the listening state for TCP and the open "
3939"state for UDP."4007"state for UDP."
3940msgstr ""4008msgstr ""
39414009
3942#: ../gufw/gufw/view/gufw.py:3244010#: ../gufw/gufw/view/gufw.py:329
3943msgid "I want even more!"4011msgid "I want even more!"
3944msgstr ""4012msgstr ""
39454013
3946#: ../gufw/gufw/view/gufw.py:3254014#: ../gufw/gufw/view/gufw.py:330
3947msgid "You'll find more information in the community documentation :)"4015msgid "You'll find more information in the community documentation :)"
3948msgstr ""4016msgstr ""
39494017
3950#: ../gufw/gufw/view/gufw.py:334 ../gufw/gufw/view/gufw.py:3384018#: ../gufw/gufw/view/gufw.py:339 ../gufw/gufw/view/gufw.py:343
3951#: ../gufw/gufw/view/gufw.py:3414019#: ../gufw/gufw/view/gufw.py:346
3952msgid "Visit this web (please, copy & paste in your browser):"4020msgid "Visit this web (please, copy & paste in your browser):"
3953msgstr ""4021msgstr ""
39544022
3955#: ../gufw/gufw/view/gufw.py:3494023#: ../gufw/gufw/view/gufw.py:354
3956msgid "Import Profile"4024msgid "Import Profile"
3957msgstr ""4025msgstr ""
39584026
3959#: ../gufw/gufw/view/gufw.py:3554027#: ../gufw/gufw/view/gufw.py:360
3960msgid "Import cancelled"4028msgid "Import cancelled"
3961msgstr ""4029msgstr ""
39624030
3963#: ../gufw/gufw/view/gufw.py:359 ../gufw/gufw/view/gufw.py:3634031#: ../gufw/gufw/view/gufw.py:364 ../gufw/gufw/view/gufw.py:368
3964msgid "Error"4032msgid "Error"
3965msgstr ""4033msgstr ""
39664034
3967#: ../gufw/gufw/view/gufw.py:3594035#: ../gufw/gufw/view/gufw.py:364
3968msgid ""4036msgid ""
3969"Filename has wrong permissions (not 600). Trust only on your exported "4037"Filename has wrong permissions (not 600). Trust only on your exported "
3970"profiles"4038"profiles"
3971msgstr ""4039msgstr ""
39724040
3973#: ../gufw/gufw/view/gufw.py:3634041#: ../gufw/gufw/view/gufw.py:368
3974msgid ""4042msgid ""
3975"Filename has not valid characters. Rename the file\n"4043"Filename has not valid characters. Rename the file\n"
3976"to only letters, numbers, dashes and underscores"4044"to only letters, numbers, dashes and underscores"
3977msgstr ""4045msgstr ""
39784046
3979#: ../gufw/gufw/view/gufw.py:3674047#: ../gufw/gufw/view/gufw.py:372
3980msgid "Operation cancelled"4048msgid "Operation cancelled"
3981msgstr ""4049msgstr ""
39824050
3983#: ../gufw/gufw/view/gufw.py:3684051#: ../gufw/gufw/view/gufw.py:373
3984msgid "Profile already exists"4052msgid "Profile already exists"
3985msgstr ""4053msgstr ""
39864054
3987#: ../gufw/gufw/view/gufw.py:3684055#: ../gufw/gufw/view/gufw.py:373
3988msgid ""4056msgid ""
3989"Delete it before from the Preferences Window or rename the file (the profile "4057"Delete it before from the Preferences Window or rename the file (the profile "
3990"will be the filename)"4058"will be the filename)"
3991msgstr ""4059msgstr ""
39924060
3993#: ../gufw/gufw/view/gufw.py:3724061#: ../gufw/gufw/view/gufw.py:377
3994msgid "Profile imported: "4062msgid "Profile imported: "
3995msgstr ""4063msgstr ""
39964064
3997#: ../gufw/gufw/view/gufw.py:3734065#: ../gufw/gufw/view/gufw.py:378
3998msgid "Profile imported, now you can choose it in the profiles"4066msgid "Profile imported, now you can choose it in the profiles"
3999msgstr ""4067msgstr ""
40004068
4001#: ../gufw/gufw/view/gufw.py:3764069#: ../gufw/gufw/view/gufw.py:381
4002msgid "Export Profile"4070msgid "Export Profile"
4003msgstr ""4071msgstr ""
40044072
4005#: ../gufw/gufw/view/gufw.py:3794073#: ../gufw/gufw/view/gufw.py:384
4006msgid "Export cancelled"4074msgid "Export cancelled"
4007msgstr ""4075msgstr ""
40084076
4009#: ../gufw/gufw/view/gufw.py:3864077#: ../gufw/gufw/view/gufw.py:391
4010msgid "Profile exported: "4078msgid "Profile exported: "
4011msgstr ""4079msgstr ""
40124080
4013#: ../gufw/gufw/view/gufw.py:3874081#: ../gufw/gufw/view/gufw.py:392
4014msgid "Profile exported"4082msgid "Profile exported"
4015msgstr ""4083msgstr ""
40164084
4017#: ../gufw/gufw/view/gufw.py:4114085#: ../gufw/gufw/view/gufw.py:416
4018msgid "Reset Firewall"4086msgid "Reset Firewall"
4019msgstr ""4087msgstr ""
40204088
4021#: ../gufw/gufw/view/gufw.py:4114089#: ../gufw/gufw/view/gufw.py:416
4022msgid ""4090msgid ""
4023"This will remove all rules in the current\n"4091"This will remove all rules in the current\n"
4024"profile and disable the firewall"4092"profile and disable the firewall"
4025msgstr ""4093msgstr ""
40264094
4027#: ../gufw/gufw/view/gufw.py:411 ../gufw/gufw/view/gufw.py:5554095#: ../gufw/gufw/view/gufw.py:416 ../gufw/gufw/view/gufw.py:570
4028msgid "Do you want to continue?"4096msgid "Do you want to continue?"
4029msgstr ""4097msgstr ""
40304098
4031#: ../gufw/gufw/view/gufw.py:4164099#: ../gufw/gufw/view/gufw.py:421
4032msgid "Removed rules and reset firewall!"4100msgid "Removed rules and reset firewall!"
4033msgstr ""4101msgstr ""
40344102
4035#: ../gufw/gufw/view/gufw.py:4214103#: ../gufw/gufw/view/gufw.py:426
4036msgid "Gufw Log: Removed"4104msgid "Gufw Log: Removed"
4037msgstr ""4105msgstr ""
40384106
4039#: ../gufw/gufw/view/gufw.py:4224107#: ../gufw/gufw/view/gufw.py:427
4040msgid "Gufw Log removed"4108msgid "Gufw Log removed"
4041msgstr ""4109msgstr ""
40424110
4043#: ../gufw/gufw/view/gufw.py:4274111#: ../gufw/gufw/view/gufw.py:432
4044msgid "Text copied to clipboard"4112msgid "Text copied to clipboard"
4045msgstr ""4113msgstr ""
40464114
4047#: ../gufw/gufw/view/gufw.py:4684115#: ../gufw/gufw/view/gufw.py:473
4048msgid "Incoming: "4116msgid "Incoming: "
4049msgstr ""4117msgstr ""
40504118
4051#: ../gufw/gufw/view/gufw.py:4694119#: ../gufw/gufw/view/gufw.py:474
4052msgid "Incoming policy changed"4120msgid "Incoming policy changed"
4053msgstr ""4121msgstr ""
40544122
4055#: ../gufw/gufw/view/gufw.py:4714123#: ../gufw/gufw/view/gufw.py:476
4056msgid "There was an error changing the incoming policy"4124msgid "There was an error changing the incoming policy"
4057msgstr ""4125msgstr ""
40584126
4059#: ../gufw/gufw/view/gufw.py:471 ../gufw/gufw/view/gufw.py:4794127#: ../gufw/gufw/view/gufw.py:476 ../gufw/gufw/view/gufw.py:484
4060#: ../gufw/gufw/view/gufw.py:4904128#: ../gufw/gufw/view/gufw.py:495
4061msgid ""4129msgid ""
4062"Restart your firewall to refresh to the real status\n"4130"Restart your firewall to refresh to the real status\n"
4063"and please report this bug"4131"and please report this bug"
4064msgstr ""4132msgstr ""
40654133
4066#: ../gufw/gufw/view/gufw.py:4764134#: ../gufw/gufw/view/gufw.py:481
4067msgid "Outgoing: "4135msgid "Outgoing: "
4068msgstr ""4136msgstr ""
40694137
4070#: ../gufw/gufw/view/gufw.py:4774138#: ../gufw/gufw/view/gufw.py:482
4071msgid "Outgoing policy changed"4139msgid "Outgoing policy changed"
4072msgstr ""4140msgstr ""
40734141
4074#: ../gufw/gufw/view/gufw.py:4794142#: ../gufw/gufw/view/gufw.py:484
4075msgid "There was an error changing the outgoing policy"4143msgid "There was an error changing the outgoing policy"
4076msgstr ""4144msgstr ""
40774145
4078#: ../gufw/gufw/view/gufw.py:4874146#: ../gufw/gufw/view/gufw.py:492
4079msgid "Routed: "4147msgid "Routed: "
4080msgstr ""4148msgstr ""
40814149
4082#: ../gufw/gufw/view/gufw.py:4884150#: ../gufw/gufw/view/gufw.py:493
4083msgid "Routed policy changed"4151msgid "Routed policy changed"
4084msgstr ""4152msgstr ""
40854153
4086#: ../gufw/gufw/view/gufw.py:4904154#: ../gufw/gufw/view/gufw.py:495
4087msgid "There was an error changing the routed policy"4155msgid "There was an error changing the routed policy"
4088msgstr ""4156msgstr ""
40894157
4090#: ../gufw/gufw/view/gufw.py:511 ../gufw/gufw/view/gufw.py:5904158#: ../gufw/gufw/view/gufw.py:516 ../gufw/gufw/view/gufw.py:605
4091msgid "Select just one row"4159msgid "Select just one row"
4092msgstr ""4160msgstr ""
40934161
4094#: ../gufw/gufw/view/gufw.py:5114162#: ../gufw/gufw/view/gufw.py:516
4095msgid "You can create a rule from just one row selected"4163msgid "You can create a rule from just one row selected"
4096msgstr ""4164msgstr ""
40974165
4098#: ../gufw/gufw/view/gufw.py:5254166#: ../gufw/gufw/view/gufw.py:540
4099msgid "Status: Enabled"4167msgid "Status: Enabled"
4100msgstr ""4168msgstr ""
41014169
4102#: ../gufw/gufw/view/gufw.py:5264170#: ../gufw/gufw/view/gufw.py:541
4103msgid "Firewall enabled"4171msgid "Firewall enabled"
4104msgstr ""4172msgstr ""
41054173
4106#: ../gufw/gufw/view/gufw.py:5284174#: ../gufw/gufw/view/gufw.py:543
4107msgid "Status: Disabled"4175msgid "Status: Disabled"
4108msgstr ""4176msgstr ""
41094177
4110#: ../gufw/gufw/view/gufw.py:5294178#: ../gufw/gufw/view/gufw.py:544
4111msgid "Firewall disabled"4179msgid "Firewall disabled"
4112msgstr ""4180msgstr ""
41134181
4114#: ../gufw/gufw/view/gufw.py:5404182#: ../gufw/gufw/view/gufw.py:555
4115msgid "There was an error changing the firewall status"4183msgid "There was an error changing the firewall status"
4116msgstr ""4184msgstr ""
41174185
4118#: ../gufw/gufw/view/gufw.py:5404186#: ../gufw/gufw/view/gufw.py:555
4119msgid ""4187msgid ""
4120"Restart your firewall to refresh to the real status and please report this "4188"Restart your firewall to refresh to the real status and please report this "
4121"bug"4189"bug"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: