-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathMessages.properties
More file actions
1868 lines (1341 loc) · 175 KB
/
Messages.properties
File metadata and controls
1868 lines (1341 loc) · 175 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
#: Still Shower Dad/application.js:2
'Shower\ With\ Your\ Dad\ Simulator\ 2015\:\ Do\ You\ Still\ Shower\ With\ Your\ Dad?'\ is\ a\ fast\ paced\ shower-simulation\ where\ you\ shower\ with\ your\ 8-bit\ dad.\ It's\ good,\ clean\ fun\!='Shower With Your Dad Simulator 2015\: Do You Still Shower With Your Dad?' is a fast paced shower-simulation where you shower with your 8-bit dad. It's good, clean fun\!
#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/application.js:2
'Where\ Legends\ Are\ Made'\ encapsulates\ the\ return\ of\ PES,\ with\ an\ unparalleled\ gameplay\ experience.='Where Legends Are Made' encapsulates the return of PES, with an unparalleled gameplay experience.
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
#: i18n/tmp/Engines/Wine/Verbs/dotnet45/script.js:1
.NET\ 4.5=.NET 4.5
#: i18n/tmp/Engines/Wine/Verbs/dotnet452/script.js:1
.NET\ 4.5.2=.NET 4.5.2
#: i18n/tmp/Engines/Wine/Verbs/dotnet461/script.js:1
.NET\ 4.6.1=.NET 4.6.1
#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
#: America/application.js:1
18\ Wheels\ of\ Steel\:\ Across\ America=18 Wheels of Steel\: Across America
#: i18n/tmp/Applications/Accessories/7-zip/application.js:2
7-Zip\ is\ a\ file\ archiver\ with\ a\ high\ compression\ ratio.\ 7-Zip\ is\ open\ source\ software.\ Most\ of\ the\ source\ code\ is\ under\ the\ GNU\ LGPL\ license.\ The\ unRAR\ code\ is\ under\ a\ mixed\ license\:\ GNU\ LGPL\ +\ unRAR\ restrictions.\ You\ can\ use\ 7-Zip\ on\ any\ computer,\ including\ a\ computer\ in\ a\ commercial\ organization.\ You\ don't\ need\ to\ register\ or\ pay\ for\ 7-Zip.=7-Zip is a file archiver with a high compression ratio. 7-Zip is open source software. Most of the source code is under the GNU LGPL license. The unRAR code is under a mixed license\: GNU LGPL + unRAR restrictions. You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip.
#: i18n/tmp/Applications/Accessories/7-zip/application.js:1
7-zip=7-zip
#: i18n/tmp/Applications/Graphics/Photofiltre/application.js:2
<b>Introduction</b><br/>PhotoFiltre\ Studio\ is\ a\ complete\ image\ retouching\ program.\ It\ allows\ you\ to\ do\ simple\ or\ advanced\ adjustments\ to\ an\ image\ and\ apply\ a\ vast\ range\ of\ filters\ on\ it.\ It\ is\ simple\ and\ intuitive\ to\ use,\ and\ has\ an\ easy\ learning\ curve.\ The\ toolbar,\ giving\ you\ access\ to\ the\ standard\ filters\ with\ just\ a\ few\ clicks,\ gives\ PhotoFiltre\ Studio\ a\ robust\ look.\ PhotoFiltre\ Studio\ also\ has\ layer\ manager\ (with\ Alpha\ channel),\ advanced\ brushes,\ nozzles\ (or\ tubes),\ red\ eye\ corrector,\ batch\ module\ and\ lot\ of\ other\ powerful\ tools.=<b>Introduction</b><br/>PhotoFiltre Studio is a complete image retouching program. It allows you to do simple or advanced adjustments to an image and apply a vast range of filters on it. It is simple and intuitive to use, and has an easy learning curve. The toolbar, giving you access to the standard filters with just a few clicks, gives PhotoFiltre Studio a robust look. PhotoFiltre Studio also has layer manager (with Alpha channel), advanced brushes, nozzles (or tubes), red eye corrector, batch module and lot of other powerful tools.
#: i18n/tmp/Applications/Internet/mIRC/application.js:2
<p>mIRC\ is\ a\ <b>popular\ Internet\ Relay\ Chat\ client</b>\ used\ by\ millions\ of\ people,\ and\ thousands\ of\ organizations,\ to\ communicate,\ share,\ play\ and\ work\ with\ each\ other\ on\ IRC\ networks\ around\ the\ world.\ Serving\ the\ <b>Internet\ community</b>\ for\ over\ a\ decade,\ mIRC\ has\ evolved\ into\ a\ powerful,\ reliable\ and\ fun\ piece\ of\ technology.<br></p>=<p>mIRC is a <b>popular Internet Relay Chat client</b> used by millions of people, and thousands of organizations, to communicate, share, play and work with each other on IRC networks around the world. Serving the <b>Internet community</b> for over a decade, mIRC has evolved into a powerful, reliable and fun piece of technology.<br></p>
#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
#: Emerald: A Whirlwind Heist/application.js:2
A\ 15\ minute\ heist\ game\ by\ Crows\ Crows\ Crows\ &\ Directed\ by\ William\ Pugh\ (The\ Stanley\ Parable).=A 15 minute heist game by Crows Crows Crows & Directed by William Pugh (The Stanley Parable).
#: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:2
A\ Lego\ Sci-Fi\ real\ time\ strategy\ game.\ The\ objective\ is\ to\ complete\ missions\ by\ mining\ a\ certain\ quota\ of\ energy\ crystal,\ while\ defending\ your\ mining\ base\ or\ even\ struggling\ to\ keep\ a\ breathable\ atmosphere\ in\ the\ mine.=A Lego Sci-Fi real time strategy game. The objective is to complete missions by mining a certain quota of energy crystal, while defending your mining base or even struggling to keep a breathable atmosphere in the mine.
#: i18n/tmp/Applications/Games/CONSORTIUM/application.js:2
A\ murder\ mystery,\ on\ a\ plane,\ in\ the\ future.\ You\ are\ Consortium\ Bishop\ Six,\ a\ global\ peacekeeper\ in\ the\ year\ 2042.\ Your\ actions\ define\ and\ inform\ the\ ongoing\ narrative.=A murder mystery, on a plane, in the future. You are Consortium Bishop Six, a global peacekeeper in the year 2042. Your actions define and inform the ongoing narrative.
#: i18n/tmp/Applications/Games/The Room/application.js:2
A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ In\ the\ room\ is\ a\ cast-iron\ safe\ laced\ with\ strange\ carvings\ and\ on\ top,\ a\ note\ from\ your\ distant\ companion.\ It\ promises\ something\ ancient\ and\ astonishing\ concealed\ in\ the\ iron\ chamber\ -\ you\ need\ only\ find\ a\ way\ in.=A mysterious invitation leads to the attic of an abandoned house. In the room is a cast-iron safe laced with strange carvings and on top, a note from your distant companion. It promises something ancient and astonishing concealed in the iron chamber - you need only find a way in.
#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:2
A\ pure\ sci-fi\ single-player\ immersive\ simulation.\ Dive\ into\ a\ world\ shaped\ by\ YOUR\ choices\!\ Explore,\ talk,\ fight\ or\ sneak\ through\ The\ Churchill\ Tower\ in\ 2042\!\ Can\ you\ survive\ The\ Tower?=A pure sci-fi single-player immersive simulation. Dive into a world shaped by YOUR choices\! Explore, talk, fight or sneak through The Churchill Tower in 2042\! Can you survive The Tower?
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry\u00ae,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.<br><br>Freelance\ mariner\ Jack\ Carver\ is\ cursing\ the\ day\ he\ ever\ came\ to\ this\ island.\ A\ week\ ago,\ a\ brash\ female\ reporter\ named\ Valerie\ had\ offered\ him\ an\ incredible\ sum\ of\ cash\ to\ take\ her\ to\ this\ unspoiled\ paradise.\ Shortly\ after\ docking,\ however,\ Jack's\ boat\ was\ greeted\ by\ artillery\ fire\ from\ a\ mysterious\ militia\ group\ swarming\ about\ the\ island.<br><br>With\ his\ boat\ destroyed,\ his\ money\ gone,\ and\ the\ gorgeous\ Valerie\ suddenly\ missing,\ Jack\ now\ finds\ himself\ facing\ an\ army\ of\ mercenaries\ amidst\ the\ wilds\ of\ the\ island,\ with\ nothing\ but\ a\ gun\ and\ his\ wits\ to\ survive.\ But\ the\ further\ he\ pushes\ into\ the\ lush\ jungle\ canopy,\ the\ stranger\ things\ become.<br><br>Jack\ encounters\ an\ insider\ within\ the\ militia\ group\ who\ reveals\ the\ horrific\ details\ of\ the\ mercenaries'\ true\ intentions.\ He\ presents\ Jack\ with\ an\ unsettling\ choice\:\ battle\ the\ deadliest\ mercenaries,\ or\ condemn\ the\ human\ race\ to\ a\ maniac's\ insidious\ agenda.=A tropical paradise seethes with hidden evil in Far Cry\u00ae, a cunningly detailed action shooter that pushes the boundaries of combat to shocking new levels.<br><br>Freelance mariner Jack Carver is cursing the day he ever came to this island. A week ago, a brash female reporter named Valerie had offered him an incredible sum of cash to take her to this unspoiled paradise. Shortly after docking, however, Jack's boat was greeted by artillery fire from a mysterious militia group swarming about the island.<br><br>With his boat destroyed, his money gone, and the gorgeous Valerie suddenly missing, Jack now finds himself facing an army of mercenaries amidst the wilds of the island, with nothing but a gun and his wits to survive. But the further he pushes into the lush jungle canopy, the stranger things become.<br><br>Jack encounters an insider within the militia group who reveals the horrific details of the mercenaries' true intentions. He presents Jack with an unsettling choice\: battle the deadliest mercenaries, or condemn the human race to a maniac's insidious agenda.
#: i18n/tmp/Applications/Accessories/category.js:1
Accessories=Accessories
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1
Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:2
Adobe\ Acrobat\ Reader\ DC\ software\ is\ the\ free\ global\ standard\ for\ reliably\ viewing,\ printing,\ and\ commenting\ on\ PDF\ documents.<br><br>Premium\ features,\ online\ services\ and\ updates\ do\ not\ work.=Adobe Acrobat Reader DC software is the free global standard for reliably viewing, printing, and commenting on PDF documents.<br><br>Premium features, online services and updates do not work.
#: i18n/tmp/Engines/Wine/Verbs/adobeair/script.js:1
Adobe\ Air=Adobe Air
#: i18n/tmp/Applications/Games/Age of Empires II HD/application.js:1
Age\ of\ Empires\ II\ HD=Age of Empires II HD
#: i18n/tmp/Applications/Games/Age of Empires II HD/application.js:2
Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ features,\ trading\ cards,\ improved\ AI,\ workshop\ support,\ multiplayer,\ Steamworks\ integration\ and\ more\!=Age of Empires II has been re-imagined in high definition with new features, trading cards, improved AI, workshop support, multiplayer, Steamworks integration and more\!
#: i18n/tmp/Applications/Games/Age of Empires III: Complete
#: Collection/application.js:1
Age\ of\ Empires\u00ae\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
#: Engines/Wine/Settings/always offscreen/script.js:12
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
#: Time/application.js:2
Amidst\ the\ scorched\ sands\ of\ ancient\ Persia,\ there\ is\ a\ legend\ spun\ in\ an\ ancient\ tongue.\ It\ speaks\ of\ a\ time\ borne\ by\ blood\ and\ ruled\ by\ deceit.\ Drawn\ to\ the\ dark\ powers\ of\ a\ magic\ dagger,\ a\ young\ Prince\ is\ led\ to\ unleash\ a\ deadly\ evil\ upon\ a\ beautiful\ kingdom.=Amidst the scorched sands of ancient Persia, there is a legend spun in an ancient tongue. It speaks of a time borne by blood and ruled by deceit. Drawn to the dark powers of a magic dagger, a young Prince is led to unleash a deadly evil upon a beautiful kingdom.
#: i18n/tmp/Applications/Games/Assassin's Creed II/application.js:2
An\ epic\ story\ of\ family,\ vengeance\ and\ conspiracy\ set\ in\ the\ pristine,\ yet\ brutal,\ backdrop\ of\ a\ Renaissance\ Italy.=An epic story of family, vengeance and conspiracy set in the pristine, yet brutal, backdrop of a Renaissance Italy.
#: i18n/tmp/Applications/Games/Anno 2070/application.js:1
Anno\ 2070=Anno 2070
#: i18n/tmp/Applications/Games/Anno 2070/application.js:2
Anno\ 2070\ is\ a\ game\ of\ settling\ on\ islands,\ building\ cities,\ productions,\ economies\ as\ well\ as\ trading\ and\ war.=Anno 2070 is a game of settling on islands, building cities, productions, economies as well as trading and war.
#: i18n/tmp/Utils/Functions/Apps/Resources/script.js:1
App\ Resources=App Resources
#: i18n/tmp/Utils/Functions/Apps/application.js:1
App\ Utils=App Utils
#: i18n/tmp/Applications/Games/Mass Effect/application.js:2
As\ Commander\ Shepard,\ you\ lead\ an\ elite\ squad\ on\ a\ heroic,\ action-packed\ adventure\ throughout\ the\ galaxy.\ Discover\ the\ imminent\ danger\ from\ an\ ancient\ threat\ and\ battle\ the\ traitorous\ Saren\ and\ his\ deadly\ army\ to\ save\ civilization.\ The\ fate\ of\ all\ life\ depends\ on\ your\ actions\!=As Commander Shepard, you lead an elite squad on a heroic, action-packed adventure throughout the galaxy. Discover the imminent danger from an ancient threat and battle the traitorous Saren and his deadly army to save civilization. The fate of all life depends on your actions\!
#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:1
Assassin's\ Creed\u00ae\ Revelations=Assassin's Creed\u00ae Revelations
#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:1
Assassin's\ Creed\u2122=Assassin's Creed\u2122
#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:2
Assassin's\ Creed\u2122\ is\ the\ next-gen\ game\ developed\ by\ Ubisoft\ Montreal\ that\ redefines\ the\ action\ genre.\ While\ other\ games\ claim\ to\ be\ next-gen\ with\ impressive\ graphics\ and\ physics,\ Assassin's\ Creed\ merges\ technology,\ game\ design,\ theme\ and\ emotions\ into\ a\ world\ where\ you\ instigate\ chaos\ and\ become\ a\ vulnerable,\ yet\ powerful,\ agent\ of\ change.<br><br>The\ setting\ is\ 1191\ AD.\ The\ Third\ Crusade\ is\ tearing\ the\ Holy\ Land\ apart.\ You,\ Altair,\ intend\ to\ stop\ the\ hostilities\ by\ suppressing\ both\ sides\ of\ the\ conflict.You\ are\ an\ Assassin,\ a\ warrior\ shrouded\ in\ secrecy\ and\ feared\ for\ your\ ruthlessness.\ Your\ actions\ can\ throw\ your\ immediate\ environment\ into\ chaos,\ and\ your\ existence\ will\ shape\ events\ during\ this\ pivotal\ moment\ in\ history.=Assassin's Creed\u2122 is the next-gen game developed by Ubisoft Montreal that redefines the action genre. While other games claim to be next-gen with impressive graphics and physics, Assassin's Creed merges technology, game design, theme and emotions into a world where you instigate chaos and become a vulnerable, yet powerful, agent of change.<br><br>The setting is 1191 AD. The Third Crusade is tearing the Holy Land apart. You, Altair, intend to stop the hostilities by suppressing both sides of the conflict.You are an Assassin, a warrior shrouded in secrecy and feared for your ruthlessness. Your actions can throw your immediate environment into chaos, and your existence will shape events during this pivotal moment in history.
#: i18n/tmp/Applications/Games/Assassin's Creed II/application.js:1
Assassin\u2019s\ Creed\ II=Assassin\u2019s Creed II
#: i18n/tmp/Applications/Games/Assassin's Creed: Brotherhood/application.js:1
Assassin\u2019s\ Creed\u00ae\ Brotherhood=Assassin\u2019s Creed\u00ae Brotherhood
#: i18n/tmp/Applications/Games/Assassin's Creed III/application.js:1
Assassin\u2019s\ Creed\u00ae\ III=Assassin\u2019s Creed\u00ae III
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:1
Assassin\u2019s\ Creed\u00ae\ IV\ Black\ Flag\u2122=Assassin\u2019s Creed\u00ae IV Black Flag\u2122
#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:1
Assassin\u2019s\ Creed\u00ae\ Unity=Assassin\u2019s Creed\u00ae Unity
#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:2
Assassin\u2019s\ Creed\u00ae\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\ embarks\ upon\ an\ extraordinary\ journey\ to\ expose\ the\ true\ powers\ behind\ the\ French\ Revolution.\ In\ the\ brand\ new\ co-op\ mode,\ you\ and\ your\ friends\ will\ also\ be\ thrown\ in\ the\ middle\ of\ a\ ruthless\ struggle\ for\ the\ fate\ of\ a\ nation.=Assassin\u2019s Creed\u00ae Unity tells the story of Arno, a young man who embarks upon an extraordinary journey to expose the true powers behind the French Revolution. In the brand new co-op mode, you and your friends will also be thrown in the middle of a ruthless struggle for the fate of a nation.
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:2
Batman\:\ Arkham\ City\ builds\ upon\ the\ intense,\ atmospheric\ foundation\ of\ Batman\:\ Arkham\ Asylum,\ sending\ players\ flying\ through\ the\ expansive\ Arkham\ City\ -\ five\ times\ larger\ than\ the\ game\ world\ in\ Batman\:\ Arkham\ Asylum\ -\ the\ new\ maximum\ security\ =Batman\: Arkham City builds upon the intense, atmospheric foundation of Batman\: Arkham Asylum, sending players flying through the expansive Arkham City - five times larger than the game world in Batman\: Arkham Asylum - the new maximum security
#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:1
Batman\u2122\:\ Arkham\ Asylum=Batman\u2122\: Arkham Asylum
#: i18n/tmp/Applications/Games/Batman™: Arkham City/application.js:1
Batman\u2122\:\ Arkham\ City=Batman\u2122\: Arkham City
#: i18n/tmp/Applications/Games/Batman™: Arkham Origins/application.js:1
Batman\u2122\:\ Arkham\ Origins=Batman\u2122\: Arkham Origins
#: i18n/tmp/Applications/Games/Batman™: Arkham Origins/application.js:2
Batman\u2122\:\ Arkham\ Origins\ is\ the\ next\ installment\ in\ the\ blockbuster\ Batman\:\ Arkham\ videogame\ franchise.\ Developed\ by\ WB\ Games\ Montr\u00e9al,\ the\ game\ features\ an\ expanded\ Gotham\ City\ and\ introduces\ an\ original\ prequel\ storyline\ set\ several\ years\ before\ the\ events\ of\ Batman\:\ Arkham\ Asylum\ and\ Batman\:\ Arkham\ City,\ the\ first\ two\ critically\ acclaimed\ games\ of\ the\ franchise.\ Taking\ place\ before\ the\ rise\ of\ Gotham\ City\u2019s\ most\ dangerous\ criminals,\ the\ game\ showcases\ a\ young\ and\ unrefined\ Batman\ as\ he\ faces\ a\ defining\ moment\ in\ his\ early\ career\ as\ a\ crime\ fighter\ that\ sets\ his\ path\ to\ becoming\ the\ Dark\ Knight.=Batman\u2122\: Arkham Origins is the next installment in the blockbuster Batman\: Arkham videogame franchise. Developed by WB Games Montr\u00e9al, the game features an expanded Gotham City and introduces an original prequel storyline set several years before the events of Batman\: Arkham Asylum and Batman\: Arkham City, the first two critically acclaimed games of the franchise. Taking place before the rise of Gotham City\u2019s most dangerous criminals, the game showcases a young and unrefined Batman as he faces a defining moment in his early career as a crime fighter that sets his path to becoming the Dark Knight.
#: i18n/tmp/Applications/Games/SimCity (2013)/application.js:2
Be\ the\ hero\ of\ your\ very\ own\ city\ as\ you\ design\ and\ create\ a\ beautiful,\ bustling\ metropolis\ in\ SimCity\ BuildIt,\ the\ most\ popular\ city\ builder\ on\ mobile,\ and\ other\ SimCity\ games.\ Every\ decision\ is\ yours\ as\ your\ city\ gets\ larger\ and\ more\ intricate.\ Make\ smart\ choices\ to\ keep\ your\ citizens\ happy\ and\ your\ skyline\ growing.\ Build\ your\ way\ to\ extraordinary.<br/>Experience\ the\ newest\ version\ of\ SimCity\ -\ the\ greatest\ city-simulator\ of\ all\ time.\ This\ collection\ is\ packed\ with\ an\ expanded\ core\ game,\ the\ SimCity\:\ Cities\ of\ Tomorrow\ expansion\ pack,\ and\ the\ Amusement\ Park,\ Airship,\ French,\ British\ and\ German\ City\ sets.\ Create\ the\ city\ you\ desire\ and\ make\ choices\ that\ will\ shape\ your\ city\ and\ the\ Sims\ in\ it.\ Focus\ on\ industry,\ or\ consumerism\ and\ your\ economy\ will\ soar\ \u2013\ but\ at\ the\ expense\ of\ your\ Sims'\ health\ as\ pollution\ spreads.\ Implement\ green\ technology\ and\ improve\ your\ Sims\u2019\ lives\ while\ risking\ higher\ taxes\ and\ unemployment.\ The\ choice\ is\ yours.=Be the hero of your very own city as you design and create a beautiful, bustling metropolis in SimCity BuildIt, the most popular city builder on mobile, and other SimCity games. Every decision is yours as your city gets larger and more intricate. Make smart choices to keep your citizens happy and your skyline growing. Build your way to extraordinary.<br/>Experience the newest version of SimCity - the greatest city-simulator of all time. This collection is packed with an expanded core game, the SimCity\: Cities of Tomorrow expansion pack, and the Amusement Park, Airship, French, British and German City sets. Create the city you desire and make choices that will shape your city and the Sims in it. Focus on industry, or consumerism and your economy will soar \u2013 but at the expense of your Sims' health as pollution spreads. Implement green technology and improve your Sims\u2019 lives while risking higher taxes and unemployment. The choice is yours.
#: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:2
Because\ we\ are\ nostalgic\ people.=Because we are nostalgic people.
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:2
Become\ a\ zoo\ manager\ and\ take\ good\ care\ of\ your\ animals.\ Wildlife\ Park\ 2\ brings\ you\ into\ up\ close\ and\ personal\ contact\ with\ more\ than\ 50\ different\ animal\ species.\ Observe\ the\ lovingly\ animated\ interaction\ of\ the\ animals\ -\ with\ other\ animals,\ the\ landscape,\ the\ play\ equipment,\ or\ the\ visitors\ to\ the\ park\!\ Just\ like\ in\ a\ real\ zoo,\ the\ animals\ must\ receive\ all-round\ care.\ This\ is\ as\ easy\ as\ winking\ in\ Wildlife\ Park\ 2\:\ With\ a\ click\ of\ the\ mouse\ you\ can\ feed,\ doctor,\ pet,\ or\ even\ relocate\ animals,\ or\ get\ them\ moving.\ You\ will\ guide\ a\ team\ of\ landscape\ architects,\ gardeners,\ keepers,\ veterinarians,\ and\ scientists.\ If\ you\ manage\ your\ zoo\ carefully,\ you\ will\ soon\ be\ able\ to\ celebrate\ the\ birth\ of\ new\ animals\!\ Construct\ your\ zoo\ using\ more\ than\ 100\ animal\ houses,\ visitor\ facilities,\ staff\ buildings,\ decorative\ park\ elements,\ and\ enclosure\ equipment.\ Wildlife\ Park\ 2\ is\ an\ ideal\ playground\ for\ amateur\ architects,\ too\!\ Use\ the\ extensive\ terraforming\ options\ to\ create\ your\ own\ imaginative\ landscapes.\ Plenty\ of\ established\ plant\ species\ and\ botanical\ rarities\ such\ us\ underwater\ plants\ or\ cacti\ will\ thrive\ under\ your\ loving\ care,\ and\ all\ this\ is\ lavishly\ displayed\ by\ a\ dynamic\ plant\ system.\ Another\ specialty\ is\ the\ realistically\ simulated\ flow\ of\ water.\ By\ easily\ placing\ a\ water\ source,\ you\ can\ create\ thunderous\ waterfalls\ and\ rambling\ water\ worlds.\ Visitors\ to\ your\ zoo\ will\ expect\ a\ few\ treats,\ too\ -\ build\ restaurants\ and\ ice-cream\ parlors\ and\ provide\ spectacular\ entertainment.\ Employ\ advertising\ and\ marketing\ to\ attract\ new\ visitors.\ But\ don't\ forget\ to\ keep\ an\ eye\ on\ your\ zoo's\ budget\ at\ all\ times\!=Become a zoo manager and take good care of your animals. Wildlife Park 2 brings you into up close and personal contact with more than 50 different animal species. Observe the lovingly animated interaction of the animals - with other animals, the landscape, the play equipment, or the visitors to the park\! Just like in a real zoo, the animals must receive all-round care. This is as easy as winking in Wildlife Park 2\: With a click of the mouse you can feed, doctor, pet, or even relocate animals, or get them moving. You will guide a team of landscape architects, gardeners, keepers, veterinarians, and scientists. If you manage your zoo carefully, you will soon be able to celebrate the birth of new animals\! Construct your zoo using more than 100 animal houses, visitor facilities, staff buildings, decorative park elements, and enclosure equipment. Wildlife Park 2 is an ideal playground for amateur architects, too\! Use the extensive terraforming options to create your own imaginative landscapes. Plenty of established plant species and botanical rarities such us underwater plants or cacti will thrive under your loving care, and all this is lavishly displayed by a dynamic plant system. Another specialty is the realistically simulated flow of water. By easily placing a water source, you can create thunderous waterfalls and rambling water worlds. Visitors to your zoo will expect a few treats, too - build restaurants and ice-cream parlors and provide spectacular entertainment. Employ advertising and marketing to attract new visitors. But don't forget to keep an eye on your zoo's budget at all times\!
#: i18n/tmp/Applications/Games/STAR WARS: Dark Forces/application.js:2
Behind\ a\ veil\ of\ secrecy\ the\ evil\ Empire\ is\ creating\ a\ doomsday\ army\ -\ one\ that,\ if\ finished,\ will\ become\ the\ final\ cog\ in\ the\ Empire's\ arsenal\ of\ terror\ and\ domination.\ Your\ Mission?\ Join\ the\ Rebel\ Alliance's\ covert\ operations\ division,\ infiltrate\ the\ Empire.=Behind a veil of secrecy the evil Empire is creating a doomsday army - one that, if finished, will become the final cog in the Empire's arsenal of terror and domination. Your Mission? Join the Rebel Alliance's covert operations division, infiltrate the Empire.
#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:1
Beyond\ Good\ and\ Evil\u2122=Beyond Good and Evil\u2122
#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/application.js:2
Big\ Brother\ has\ arrived\ -\ and\ it\u2019s\ you.\ Investigate\ the\ lives\ of\ citizens\ to\ find\ those\ responsible\ for\ a\ series\ of\ terror\ attacks.\ Information\ from\ the\ internet,\ personal\ communications\ and\ private\ files\ are\ all\ accessible\ to\ you.\ But,\ be\ warned,\ the\ information\ you\ supply\ will\ have\ consequences.=Big Brother has arrived - and it\u2019s you. Investigate the lives of citizens to find those responsible for a series of terror attacks. Information from the internet, personal communications and private files are all accessible to you. But, be warned, the information you supply will have consequences.
#: i18n/tmp/Applications/Games/BioShock/application.js:2
BioShock\ is\ a\ shooter\ unlike\ any\ you've\ ever\ played,\ loaded\ with\ weapons\ and\ tactics\ never\ seen.\ You'll\ have\ a\ complete\ arsenal\ at\ your\ disposal\ from\ simple\ revolvers\ to\ grenade\ launchers\ and\ chemical\ throwers,\ but\ you'll\ also\ be\ forced\ to\ genetically\ modify\ your\ DNA\ to\ create\ an\ even\ more\ deadly\ weapon\:\ you.\ Injectable\ plasmids\ give\ you\ super\ human\ powers\:\ blast\ electrical\ currents\ into\ water\ to\ electrocute\ multiple\ enemies,\ or\ freeze\ them\ solid\ and\ obliterate\ them\ with\ the\ swing\ of\ a\ wrench.<br>No\ encounter\ ever\ plays\ out\ the\ same,\ and\ no\ two\ gamers\ will\ play\ the\ game\ the\ same\ way.=BioShock is a shooter unlike any you've ever played, loaded with weapons and tactics never seen. You'll have a complete arsenal at your disposal from simple revolvers to grenade launchers and chemical throwers, but you'll also be forced to genetically modify your DNA to create an even more deadly weapon\: you. Injectable plasmids give you super human powers\: blast electrical currents into water to electrocute multiple enemies, or freeze them solid and obliterate them with the swing of a wrench.<br>No encounter ever plays out the same, and no two gamers will play the game the same way.
#: i18n/tmp/Applications/Games/BioShock/application.js:1
BioShock\u2122=BioShock\u2122
#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/application.js:2
BioWare\ and\ LucasArts\ bring\ you\ the\ next\ evolution\ in\ MMO\ Gameplay.\ Explore\ an\ age\ thousands\ of\ years\ before\ the\ rise\ of\ Darth\ Vader\ when\ war\ between\ the\ Galactic\ Republic\ and\ the\ Sith\ Empire\ divides\ the\ galaxy.=BioWare and LucasArts bring you the next evolution in MMO Gameplay. Explore an age thousands of years before the rise of Darth Vader when war between the Galactic Republic and the Sith Empire divides the galaxy.
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/application.js:2
Black\ Friday\ \u2013\ a\ devastating\ pandemic\ sweeps\ through\ New\ York\ City,\ and\ one\ by\ one,\ basic\ services\ fail.\ In\ only\ days,\ without\ food\ or\ water,\ society\ collapses\ into\ chaos.\ The\ Division,\ an\ autonomous\ unit\ of\ tactical\ agents,\ is\ activated.=Black Friday \u2013 a devastating pandemic sweeps through New York City, and one by one, basic services fail. In only days, without food or water, society collapses into chaos. The Division, an autonomous unit of tactical agents, is activated.
#: i18n/tmp/Applications/Games/Black Mesa/application.js:1
Black\ Mesa=Black Mesa
#: i18n/tmp/Applications/Games/Blizzard app/application.js:1
#: app/Online/script.js:1
Blizzard\ app=Blizzard app
#: i18n/tmp/Applications/Games/Borderlands/application.js:1
Borderlands=Borderlands
#: i18n/tmp/Applications/Games/Braid/application.js:1
Braid=Braid
#: i18n/tmp/Applications/Games/Braid/application.js:2
Braid\ is\ a\ puzzle-platformer,\ drawn\ in\ a\ painterly\ style,\ where\ you\ can\ manipulate\ the\ flow\ of\ time\ in\ strange\ and\ unusual\ ways.\ From\ a\ house\ in\ the\ city,\ journey\ to\ a\ series\ of\ worlds\ and\ solve\ puzzles\ to\ rescue\ an\ abducted\ princess.=Braid is a puzzle-platformer, drawn in a painterly style, where you can manipulate the flow of time in strange and unusual ways. From a house in the city, journey to a series of worlds and solve puzzles to rescue an abducted princess.
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout\u2122\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
#: i18n/tmp/Applications/Games/CONSORTIUM/application.js:1
CONSORTIUM=CONSORTIUM
#: i18n/tmp/Applications/Games/Caesar III/application.js:1
Caesar\ III=Caesar III
#: i18n/tmp/Applications/Games/Call of Juarez Gunslinger/application.js:1
Call\ of\ Juarez\u00ae\ Gunslinger=Call of Juarez\u00ae Gunslinger
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:2
Calradia\ is\ a\ land\ at\ war,\ offering\ great\ riches\ and\ even\ greater\ dangers\ to\ adventurers\ and\ mercenaries\ that\ flock\ to\ shed\ their\ blood\ on\ its\ soil.\ With\ courage\ and\ a\ strong\ sword,\ an\ unknown\ stranger\ can\ make\ a\ name\ as\ a\ warrior.=Calradia is a land at war, offering great riches and even greater dangers to adventurers and mercenaries that flock to shed their blood on its soil. With courage and a strong sword, an unknown stranger can make a name as a warrior.
#: Engines/Wine/Engine/Implementation/script.js:214
Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix.
#: Utils/Functions/Filesystem/Files/script.js:172
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
ChromaGun=ChromaGun
#: i18n/tmp/Applications/Games/Civilization V/application.js:1
Civilization\ V=Civilization V
#: i18n/tmp/Applications/Games/Clicker Heroes/application.js:1
Clicker\ Heroes=Clicker Heroes
#: i18n/tmp/Applications/Games/Cogs/application.js:1
Cogs=Cogs
#: i18n/tmp/Applications/Games/Cogs/application.js:2
Cogs\ is\ a\ puzzle\ game\ where\ players\ build\ machines\ from\ sliding\ tiles.\ Players\ can\ choose\ from\ 50\ levels\ and\ 3\ gameplay\ modes.\ New\ puzzles\ are\ unlocked\ by\ building\ contraptions\ quickly\ and\ efficiently.=Cogs is a puzzle game where players build machines from sliding tiles. Players can choose from 50 levels and 3 gameplay modes. New puzzles are unlocked by building contraptions quickly and efficiently.
#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium
#: Wars/application.js:1
Command\ and\ Conquer\ -\ Tiberium\ Wars=Command and Conquer - Tiberium Wars
#: i18n/tmp/Applications/Games/STAR WARS - Empire at War Gold
#: Pack/application.js:2
Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strategy\ collection.\ It\ is\ a\ time\ of\ galactic\ civil\ war.\ Will\ you\ take\ up\ the\ reins\ of\ the\ Rebellion,\ assume\ control\ of\ the\ Empire,\ or\ rule\ the\ Star\ Wars\ Underworld?=Command or corrupt an entire galaxy in the definitive Star Wars strategy collection. It is a time of galactic civil war. Will you take up the reins of the Rebellion, assume control of the Empire, or rule the Star Wars Underworld?
#: i18n/tmp/Engines/Wine/Tools/WineConsole/script.js:1
Command\ prompt=Command prompt
#: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1
Configure\ Wine=Configure Wine
#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1
Consortium\:\ The\ Tower=Consortium\: The Tower
#: Engines/Wine/Plugins/native application/script.js:28
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
#: Engines/Wine/Engine/Object/script.js:194
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
Crayon\ Physics=Crayon Physics
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:2
Crayon\ Physics\ is\ a\ mouse\ arcade\ game.\ You\ will\ have\ to\ draw\ lines\ and\ squares\ to\ move\ a\ ball.\ The\ aim\ is\ to\ catch\ the\ stars\ in\ the\ level.=Crayon Physics is a mouse arcade game. You will have to draw lines and squares to move a ball. The aim is to catch the stars in the level.
#: i18n/tmp/Applications/Custom/category.js:1
Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:1
DOOM\ (2016)=DOOM (2016)
#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1
DOS\ support=DOS support
#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse 2/application.js:2
DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XENOVERSE\ with\ enhanced\ graphics\ that\ will\ further\ immerse\ players\ into\ the\ largest\ and\ most\ detailed\ Dragon\ Ball\ world\ ever\ developed.<br><br>DRAGON\ BALL\ XENOVERSE\ 2\ will\ deliver\ a\ new\ hub\ city\ and\ the\ most\ character\ customization\ choices\ to\ date\ among\ a\ multitude\ of\ new\ features\ and\ special\ upgrades.=DRAGON BALL XENOVERSE 2 builds upon the highly popular DRAGON BALL XENOVERSE with enhanced graphics that will further immerse players into the largest and most detailed Dragon Ball world ever developed.<br><br>DRAGON BALL XENOVERSE 2 will deliver a new hub city and the most character customization choices to date among a multitude of new features and special upgrades.
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
#: Engines/Wine/Settings/always offscreen/script.js:8
#: Engines/Wine/Settings/multisampling/script.js:8
#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw
#: ordering/script.js:8 Engines/Wine/Settings/video memory size/script.js:8
#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
#: Engines/Wine/Settings/mouse warp override/script.js:8
#: Engines/Wine/Settings/render target lock mode/script.js:8
#: Engines/Wine/Settings/offscreen rendering
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ shooter\ genre\ and\ created\ multiplayer\ Deathmatch,\ DOOM\ returns\ as\ a\ brutally\ fun\ and\ challenging\ modern-day\ shooter\ experience.\ Relentless\ demons,\ impossibly\ destructive\ guns,\ and\ fast,\ fluid\ movement\ provide\ the\ foundation\ for\ intense,\ first-person\ combat\ \u2013\ whether\ you\u2019re\ obliterating\ demon\ hordes\ through\ the\ depths\ of\ Hell\ in\ the\ single-player\ campaign,\ or\ competing\ against\ your\ friends\ in\ numerous\ multiplayer\ modes.\ Expand\ your\ gameplay\ experience\ using\ DOOM\ SnapMap\ game\ editor\ to\ easily\ create,\ play,\ and\ share\ your\ content\ with\ the\ world.=Developed by id software, the studio that pioneered the first-person shooter genre and created multiplayer Deathmatch, DOOM returns as a brutally fun and challenging modern-day shooter experience. Relentless demons, impossibly destructive guns, and fast, fluid movement provide the foundation for intense, first-person combat \u2013 whether you\u2019re obliterating demon hordes through the depths of Hell in the single-player campaign, or competing against your friends in numerous multiplayer modes. Expand your gameplay experience using DOOM SnapMap game editor to easily create, play, and share your content with the world.
#: i18n/tmp/Applications/Development/category.js:1
Development=Development
#: Engines/Wine/Settings/DirectDraw renderer/script.js:12
#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/DirectDraw
DirectDraw\ renderer=DirectDraw renderer
#: Engines/Wine/Settings/always offscreen/script.js:8
#: Engines/Wine/Settings/multisampling/script.js:8
#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw
#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8
#: Engines/Wine/Settings/render target lock mode/script.js:8
#: Engines/Wine/Settings/hdpi/script.js:8
Disabled=Disabled
#: Engines/Wine/QuickScript/Origin Script/script.js:50
Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Download "{0}" in Origin and shut it down once "{0}" is installed
#: i18n/tmp/Utils/Functions/Net/Download/script.js:1
Downloader=Downloader
#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
#: Emerald: A Whirlwind Heist/application.js:1
Dr.\ Langeskov,\ The\ Tiger,\ and\ The\ Terribly\ Cursed\ Emerald\:\ A\ Whirlwind\ Heist=Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\: A Whirlwind Heist
#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:1
Dragon\ Ball\ Xenoverse=Dragon Ball Xenoverse
#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse 2/application.js:1
Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:1
Druid\ Soccer=Druid Soccer
#: Applications/Games/Subnautica/Steam/script.js:28
Due\ to\ a\ potential\ confilct\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential confilct with Vulkan, shader mods break the game (the executable file works but no window is displayed).
#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
#: Shadow/application.js:1
Earth\ Eternal\ -\ Valkal's\ Shadow=Earth Eternal - Valkal's Shadow
#: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:1
Elite\:Dangerous=Elite\:Dangerous
#: i18n/tmp/Applications/Office/ElsterFormular/application.js:1
ElsterFormular=ElsterFormular
#: i18n/tmp/Applications/Office/ElsterFormular/application.js:2
ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=ElsterFormular is the official german software to file a tax return.
#: i18n/tmp/Applications/Games/Total War Rome II/application.js:2
Emperor\ Edition\ is\ the\ definitive\ edition\ of\ ROME\ II,\ featuring\ an\ improved\ politics\ system,\ overhauled\ building\ chains,\ rebalanced\ battles\ and\ improved\ visuals\ in\ both\ campaign\ and\ battle.<br><br>In\ addition,\ Emperor\ Edition\ includes\ all\ content\ and\ feature\ updates\ made\ available\ for\ ROME\ II\ since\ its\ launch\ in\ September\ 2013.\ These\ include\ Twitch.TV\ integration,\ touchscreen\ controls,\ new\ playable\ factions\ and\ units,\ and\ Mac\ compatibility.\ The\ Imperator\ Augustus\ Campaign\ Pack\ and\ all\ Emperor\ Edition\ content\ and\ features\ are\ free,\ via\ automatic\ update,\ to\ all\ existing\ ROME\ II\ owners.=Emperor Edition is the definitive edition of ROME II, featuring an improved politics system, overhauled building chains, rebalanced battles and improved visuals in both campaign and battle.<br><br>In addition, Emperor Edition includes all content and feature updates made available for ROME II since its launch in September 2013. These include Twitch.TV integration, touchscreen controls, new playable factions and units, and Mac compatibility. The Imperator Augustus Campaign Pack and all Emperor Edition content and features are free, via automatic update, to all existing ROME II owners.
#: Engines/Wine/Settings/always offscreen/script.js:8
#: Engines/Wine/Settings/multisampling/script.js:8
#: Engines/Wine/Settings/GLSL/script.js:8 Engines/Wine/Settings/strict draw
#: ordering/script.js:8 Engines/Wine/Settings/mouse warp override/script.js:8
#: Engines/Wine/Settings/hdpi/script.js:8
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
Enderal=Enderal
#: i18n/tmp/Applications/Games/Enderal/application.js:2
Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modification\ that\ is\ set\ in\ its\ own\ world\ with\ its\ own\ landscape,\ lore\ and\ story.\ It\ offers\ an\ immersive\ open\ world,\ all\ for\ the\ player\ to\ explore,\ overhauled\ skill\ systems\ and\ gameplay\ mechanics\ and\ a\ dark,\ psychological\ storyline\ with\ believable\ characters.=Enderal is a total conversion for TES V\: Skyrim\: a game modification that is set in its own world with its own landscape, lore and story. It offers an immersive open world, all for the player to explore, overhauled skill systems and gameplay mechanics and a dark, psychological storyline with believable characters.
#: i18n/tmp/Applications/Games/Tropico 3/application.js:2
Engage\ in\ a\ tropical\ power\ trip\!\ Become\ the\ dictator\ of\ a\ remote\ island\ during\ the\ Cold\ War.\ Charm,\ persuade,\ intimidate,\ oppress,\ or\ cheat\ your\ people\ to\ stay\ in\ power\!\ Are\ you\ a\ kind\ and\ generous\ leader?\ A\ corrupt\ and\ ruthless\ tyrant\ ruling\ with\ an\ iron\ fist?\ Turn\ your\ island\ into\ a\ tourist\ paradise\ or\ an\ industrial\ power.\ Make\ promises\ to\ the\ electorate\ or\ slander\ political\ adversaries\ to\ get\ the\ crucial\ votes\ for\ the\ upcoming\ elections.\ Send\ your\ avatar\ to\ congratulate\ the\ people,\ visit\ the\ island\ of\ another\ player,\ or\ just\ sun-bathe\ on\ the\ Caribbean\ beach.=Engage in a tropical power trip\! Become the dictator of a remote island during the Cold War. Charm, persuade, intimidate, oppress, or cheat your people to stay in power\! Are you a kind and generous leader? A corrupt and ruthless tyrant ruling with an iron fist? Turn your island into a tourist paradise or an industrial power. Make promises to the electorate or slander political adversaries to get the crucial votes for the upcoming elections. Send your avatar to congratulate the people, visit the island of another player, or just sun-bathe on the Caribbean beach.
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
#: Utils/Functions/Net/Download/script.js:137
Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error while calculating checksum for "{0}". \n\nExpected \= {1}\nActual \= {2}
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1
Ether\ One\ Redux=Ether One Redux
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:2
Ether\ One\ is\ a\ first\ person\ adventure\ that\ deals\ with\ the\ fragility\ of\ the\ human\ mind.\ There\ are\ two\ paths\ in\ the\ world\ you\ can\ choose\ from.\ At\ its\ core\ is\ a\ story\ exploration\ path\ free\ from\ puzzles\ where\ you\ can\ unfold\ the\ story\ at\ your\ own\ pace.=Ether One is a first person adventure that deals with the fragility of the human mind. There are two paths in the world you can choose from. At its core is a story exploration path free from puzzles where you can unfold the story at your own pace.
#: i18n/tmp/Applications/Games/Europa Universalis II/application.js:1
Europa\ Universalis\ II=Europa Universalis II
#: i18n/tmp/Applications/Games/Europa Universalis II/application.js:2
Europa\ Universalis\ II\ is\ a\ strategy\ computer\ game\ developed\ by\ Paradox\ Development\ Studio\ and\ published\ by\ Strategy\ First,\ based\ on\ world\ history\ spanning\ a\ timeline\ between\ 1419\ through\ 1820.=Europa Universalis II is a strategy computer game developed by Paradox Development Studio and published by Strategy First, based on world history spanning a timeline between 1419 through 1820.
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:1
Europa\ Universalis\ IV=Europa Universalis IV
#: i18n/tmp/Applications/Games/Clicker Heroes/application.js:2
Ever\ wondered\ what\ one\ quadrillion\ damage\ per\ second\ feels\ like?\ Wonder\ no\ more\!\ Embark\ on\ your\ quest\ to\ attain\ it\ today\!\ Start\ out\ by\ clicking\ on\ the\ monster\ to\ kill\ them,\ and\ get\ their\ gold.\ Spend\ that\ gold\ on\ hiring\ new\ heroes\ and\ get\ more\ damage.\ The\ more\ damage\ you\ deal,\ the\ more\ gold\ you\ will\ get.=Ever wondered what one quadrillion damage per second feels like? Wonder no more\! Embark on your quest to attain it today\! Start out by clicking on the monster to kill them, and get their gold. Spend that gold on hiring new heroes and get more damage. The more damage you deal, the more gold you will get.
#: Engines/Wine/Shortcuts/Wine/script.js:120
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ that\ has\ captured\ the\ hearts\ of\ millions\ of\ fans\!=Experience the magical universe of Rayman with legendary 2D gameplay that has captured the hearts of millions of fans\!
#: i18n/tmp/Applications/Games/Batman™: Arkham Asylum/application.js:2
Experience\ what\ it\u2019s\ like\ to\ be\ Batman\ and\ face\ off\ against\ Gotham's\ greatest\ villians.\ Explore\ every\ inch\ of\ Arkham\ Asylum\ and\ roam\ freely\ on\ the\ infamous\ island.<br><br>Critically\ acclaimed\ Batman\:\ Arkham\ Asylum\ returns\ with\ a\ remastered\ Game\ of\ the\ Year\ Edition,\ featuring\ 4\ extra\ Challenge\ Maps.\ The\ additional\ Challenge\ Maps\ are\ Crime\ Alley;\ Scarecrow\ Nightmare;\ Totally\ Insane\ and\ Nocturnal\ Hunter\ (both\ from\ the\ Insane\ Night\ Map\ Pack).=Experience what it\u2019s like to be Batman and face off against Gotham's greatest villians. Explore every inch of Arkham Asylum and roam freely on the infamous island.<br><br>Critically acclaimed Batman\: Arkham Asylum returns with a remastered Game of the Year Edition, featuring 4 extra Challenge Maps. The additional Challenge Maps are Crime Alley; Scarecrow Nightmare; Totally Insane and Nocturnal Hunter (both from the Insane Night Map Pack).
#: Engines/Wine/Verbs/d3dx10/script.js:15
#: Engines/Wine/Verbs/d3dx10/script.js:16
#: Engines/Wine/Verbs/d3dx10/script.js:36
#: Engines/Wine/Verbs/d3dx9/script.js:15 Engines/Wine/Verbs/d3dx9/script.js:16
#: Engines/Wine/Verbs/d3dx9/script.js:36 Engines/Wine/Verbs/xact/script.js:16
#: Engines/Wine/Verbs/xact/script.js:17 Engines/Wine/Verbs/xact/script.js:51
#: Engines/Wine/Verbs/d3dx11/script.js:15
#: Engines/Wine/Verbs/d3dx11/script.js:16
#: Engines/Wine/Verbs/d3dx11/script.js:37
Extracting\ {0}...=Extracting {0}...
#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/application.js:2
Ezio\ Auditore\ walks\ in\ the\ footsteps\ of\ the\ legendary\ mentor\ Altair,\ on\ a\ dangerous\ journey\ of\ discovery\ and\ revelation.=Ezio Auditore walks in the footsteps of the legendary mentor Altair, on a dangerous journey of discovery and revelation.
#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
FBO=FBO
#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/application.js:2
FOR\ THE\ FIRST\ TIME\ EVER,\ THE\ DRAGON\ BALL\ UNIVERSE\ IS\ COMING\ TO\ STEAM\!<br><br>DRAGON\ BALL\ XENOVERSE\ revisits\ famous\ battles\ from\ the\ series\ through\ your\ custom\ Avatar,\ who\ fights\ alongside\ Trunks\ and\ many\ other\ characters.\ Will\ the\ strength\ of\ this\ partnership\ be\ enough\ to\ intervene\ in\ fights\ and\ restore\ the\ Dragon\ Ball\ timeline\ we\ know?\ New\ features\ include\ the\ mysterious\ Toki\ Toki\ City,\ new\ gameplay\ mechanics,\ new\ character\ animations\ and\ many\ other\ amazing\ features\ to\ be\ unveiled\ soon\!=FOR THE FIRST TIME EVER, THE DRAGON BALL UNIVERSE IS COMING TO STEAM\!<br><br>DRAGON BALL XENOVERSE revisits famous battles from the series through your custom Avatar, who fights alongside Trunks and many other characters. Will the strength of this partnership be enough to intervene in fights and restore the Dragon Ball timeline we know? New features include the mysterious Toki Toki City, new gameplay mechanics, new character animations and many other amazing features to be unveiled soon\!
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
#: Xian/application.js:2
Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake by Nicobass.
#: i18n/tmp/Applications/Games/Far Cry/application.js:1
Far\ Cry=Far Cry
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:1
Far\ Cry\ 3\ -\ Blood\ Dragon=Far Cry 3 - Blood Dragon
#: i18n/tmp/Applications/Games/Far Cry 2/application.js:1
Far\ Cry\u00ae\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry\u00ae\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80\u2019s\ vision\ of\ the\ future.\ The\ year\ is\ 2007\ and\ you\ are\ Sargent\ Rex\ Colt,\ a\ Mark\ IV\ Cyber\ Commando.\ Your\ mission\:\ get\ the\ girl,\ kill\ the\ baddies,\ and\ save\ the\ world.=Far Cry\u00ae 3\: Blood Dragon is THE Kick-Ass Cyber Shooter.Welcome to an 80\u2019s vision of the future. The year is 2007 and you are Sargent Rex Colt, a Mark IV Cyber Commando. Your mission\: get the girl, kill the baddies, and save the world.
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
#: i18n/tmp/Utils/Functions/Filesystem/Files/script.js:1
File\ Utilities=File Utilities
#: i18n/tmp/Utils/Functions/Filesystem/application.js:1
Filesystem\ Utils=Filesystem Utils
#: i18n/tmp/Applications/Games/Quantum Conundrum/application.js:2
Find\ and\ rescue\ your\ uncle\ by\ using\ his\ newest\ invention\ to\ work\ your\ way\ through\ a\ crazy\ complex\ mansion\ as\ you\ switch\ between\ dimensions\ and\ solve\ puzzles\!=Find and rescue your uncle by using his newest invention to work your way through a crazy complex mansion as you switch between dimensions and solve puzzles\!
#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/application.js:2
First\ installment\ of\ The\ Elder\ Scrolls=First installment of The Elder Scrolls
#: i18n/tmp/Applications/Games/FlatOut/application.js:1
FlatOut=FlatOut
#: i18n/tmp/Applications/Games/FlatOut/application.js:2
FlatOut\ is\ adrenaline-filled\ muscle\ car\ racing\ game\ packed\ with\ explosive\ physics,\ spectacular\ effects\ and\ graphics,\ innovative\ game\ play\ mechanics\ and\ good\ old\ fun\!=FlatOut is adrenaline-filled muscle car racing game packed with explosive physics, spectacular effects and graphics, innovative game play mechanics and good old fun\!
#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:2
For\ centuries,\ the\ planet\ Hyllis\ has\ been\ bombarded\ by\ a\ relentless\ alien\ race.\ Skeptical\ of\ her\ government's\ inability\ to\ repel\ the\ invaders,\ a\ rebellious\ action\ reporter\ named\ Jade\ sets\ out\ to\ capture\ the\ truth.=For centuries, the planet Hyllis has been bombarded by a relentless alien race. Skeptical of her government's inability to repel the invaders, a rebellious action reporter named Jade sets out to capture the truth.
#: Engines/Wine/Settings/mouse warp override/script.js:8
Force=Force
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
#: Academy/application.js:2
Forge\ your\ weapon\ and\ follow\ the\ path\ of\ the\ Jedi\ Jedi\ Knight\:\ Jedi\ Academy\ is\ the\ latest\ installment\ of\ the\ highly\ acclaimed\ Jedi\ Knight\ series.\ Take\ on\ the\ role\ of\ a\ new\ student\ eager\ to\ learn\ the\ ways\ of\ the\ Force\ from\ Jedi\ Master\ Luke\ Skywalker.=Forge your weapon and follow the path of the Jedi Jedi Knight\: Jedi Academy is the latest installment of the highly acclaimed Jedi Knight series. Take on the role of a new student eager to learn the ways of the Force from Jedi Master Luke Skywalker.
#: i18n/tmp/Applications/Games/Spore/application.js:2
From\ a\ single\ cell\ to\ a\ galactic\ deity,\ develop\ your\ creation\ in\ the\ world\ of\ your\ ideas.<br/>Play\ Spore\ on\ five\ levels\ of\ development\:\ Cells,\ Creatures,\ Tribes,\ Civilizations\ and\ the\ Universe.\ Each\ level\ has\ its\ own\ unique\ style,\ challenges\ and\ goals.\ Play\ as\ you\ like\ -\ start\ with\ a\ cell\ and\ develop\ one\ species\ from\ a\ small\ organism\ to\ an\ intergalactic\ traveler\ or\ directly\ begin\ to\ build\ tribes\ and\ civilizations\ on\ new\ planets.\ What\ you\ do\ in\ your\ universe\ depends\ only\ on\ you.<br/>Spore\ gives\ you\ a\ variety\ of\ powerful\ but\ easy-to-use\ tools\ that\ help\ you\ create\ and\ change\ every\ aspect\ of\ your\ universe\:\ creatures,\ vehicles,\ buildings,\ and\ even\ spaceships.\ Although\ Spore\ is\ a\ single\ player\ game,\ all\ of\ your\ creations\ are\ automatically\ shared\ for\ other\ players,\ providing\ an\ infinite\ number\ of\ worlds\ to\ explore\ and\ play.=From a single cell to a galactic deity, develop your creation in the world of your ideas.<br/>Play Spore on five levels of development\: Cells, Creatures, Tribes, Civilizations and the Universe. Each level has its own unique style, challenges and goals. Play as you like - start with a cell and develop one species from a small organism to an intergalactic traveler or directly begin to build tribes and civilizations on new planets. What you do in your universe depends only on you.<br/>Spore gives you a variety of powerful but easy-to-use tools that help you create and change every aspect of your universe\: creatures, vehicles, buildings, and even spaceships. Although Spore is a single player game, all of your creations are automatically shared for other players, providing an infinite number of worlds to explore and play.
#: i18n/tmp/Applications/Games/Call of Juarez Gunslinger/application.js:2
From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Juarez\u00ae\ Gunslinger\ is\ a\ real\ homage\ to\ the\ Wild\ West\ tales.\ Live\ the\ epic\ and\ violent\ journey\ of\ a\ ruthless\ bounty\ hunter\ on\ the\ trail\ of\ the\ West\u2019s\ most\ notorious\ outlaws.=From the dust of a gold mine to the dirt of a saloon, Call of Juarez\u00ae Gunslinger is a real homage to the Wild West tales. Live the epic and violent journey of a ruthless bounty hunter on the trail of the West\u2019s most notorious outlaws.
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
GDI=GDI
#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
GLSL=GLSL
#: Engines/Wine/Settings/GLSL/script.js:12
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
#: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1
GOG=GOG
#: i18n/tmp/Applications/Games/GOG Galaxy/application.js:2
GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ install,\ play\ and\ update\ your\ games.\ It\ also\ offers\ online\ multiplayer,\ achievements,\ chat,\ game-time\ tracking\ and\ more\ -\ but\ it\u2019s\ up\ to\ you\ which\ features\ you\ want\ to\ use.=GOG GALAXY is a fully optional Steam-like client for GOG.com to install, play and update your games. It also offers online multiplayer, achievements, chat, game-time tracking and more - but it\u2019s up to you which features you want to use.
#: i18n/tmp/Applications/Games/GOG Galaxy/application.js:1
GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
#: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:1
Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:2
Guild\ Wars\ 2\ defines\ the\ future\ of\ online\ roleplaying\ games\ with\ action-oriented\ combat,\ customized\ personal\ storylines,\ epic\ dynamic\ events,\ world-class\ PvP,\ and\ no\ subscription\ fees\!=Guild Wars 2 defines the future of online roleplaying games with action-oriented combat, customized personal storylines, epic dynamic events, world-class PvP, and no subscription fees\!
#: i18n/tmp/Applications/Games/Caesar III/application.js:2
Hail\ Governor,\ your\ city\ awaits.<br><br>As\ a\ provincial\ governor\ charged\ with\ spreading\ the\ glory\ of\ Rome\ our\ mission\ is\ clear\:\ build\ cities,\ foster\ trade\ and\ industry,\ make\ money.\ How\ you\ accomplish\ this\ is\ entirely\ up\ to\ you.\ Gain\ wealth\ and\ power,\ make\ a\ career\ out\ of\ pleasing\ the\ emperor,\ battle\ Barbarians\ and\ repel\ invaders\ or\ concentrate\ on\ building\ the\ next\ Eternal\ City.\ Fail\ and\ you\u2019ll\ end\ up\ as\ lunch\ for\ the\ lions.\ Prove\ your\ strength\ of\ mind\ and\ spirit\ and\ you\ just\ may\ be\ crowned\ Caesar\!=Hail Governor, your city awaits.<br><br>As a provincial governor charged with spreading the glory of Rome our mission is clear\: build cities, foster trade and industry, make money. How you accomplish this is entirely up to you. Gain wealth and power, make a career out of pleasing the emperor, battle Barbarians and repel invaders or concentrate on building the next Eternal City. Fail and you\u2019ll end up as lunch for the lions. Prove your strength of mind and spirit and you just may be crowned Caesar\!
#: i18n/tmp/Applications/Games/Hearthstone/application.js:1
Hearthstone=Hearthstone
#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
#: America/application.js:2
Heed\ the\ call\ of\ the\ open\ road,\ throw\ the\ gears\ in\ motion\ and\ take\ off\ in\ a\ tractor\ trailer.\ Drive\ faster\ than\ your\ competition,\ haul\ your\ cargo\ across\ the\ entire\ United\ States\ and\ feel\ the\ wind\ in\ your\ face\ as\ you\ control\ your\ own\ destiny.\ Blast\ the\ horn\ and\ build\ a\ career\ in\ the\ fast-paced\ world\ of\ trucking.=Heed the call of the open road, throw the gears in motion and take off in a tractor trailer. Drive faster than your competition, haul your cargo across the entire United States and feel the wind in your face as you control your own destiny. Blast the horn and build a career in the fast-paced world of trucking.
#: i18n/tmp/Applications/Games/Heroes of the Storm/application.js:1
Heroes\ of\ the\ Storm=Heroes of the Storm
#: i18n/tmp/Applications/Games/Heroes of the Storm/application.js:2
Heroes\ of\ the\ Storm\ (HotS)\ is\ a\ multiplayer\ online\ battle\ arena\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=Heroes of the Storm (HotS) is a multiplayer online battle arena video game developed and published by Blizzard Entertainment.
#: i18n/tmp/Applications/Games/Hexcells/application.js:1
Hexcells=Hexcells
#: i18n/tmp/Applications/Games/Hexcells Infinite/application.js:1
Hexcells\ Infinite=Hexcells Infinite
#: i18n/tmp/Applications/Games/Hexcells Infinite/application.js:2
Hexcells\ Infinite\ is\ the\ third\ game\ in\ the\ series\ of\ ambient\ logic\ puzzle\ games.<br><br>It\ includes\ a\ new\ set\ of\ 36\ puzzles\ as\ well\ as\ a\ random\ puzzle\ generator\ and\ now\ supports\ mid-level\ saving\ and\ cross\ platform\ cloud\ saves.<br><br>The\ level\ generator\ uses\ an\ 8\ digit\ seed\ number\ to\ generate\ each\ puzzle\ so\ they\ can\ easily\ be\ shared.=Hexcells Infinite is the third game in the series of ambient logic puzzle games.<br><br>It includes a new set of 36 puzzles as well as a random puzzle generator and now supports mid-level saving and cross platform cloud saves.<br><br>The level generator uses an 8 digit seed number to generate each puzzle so they can easily be shared.
#: i18n/tmp/Applications/Games/Hexcells Plus/application.js:1
Hexcells\ Plus=Hexcells Plus
#: i18n/tmp/Applications/Games/Hexcells Plus/application.js:2
Hexcells\ Plus\ is\ a\ standalone\ expansion\ to\ Hexcells\ that\ contains\ 36\ new\ and\ more\ challenging\ puzzles.=Hexcells Plus is a standalone expansion to Hexcells that contains 36 new and more challenging puzzles.
#: i18n/tmp/Applications/Games/Hexcells/application.js:2
Hexcells\ is\ an\ ambient\ logic\ puzzle\ game\ for\ PC,\ Mac\ and\ Linux.=Hexcells is an ambient logic puzzle game for PC, Mac and Linux.
#: i18n/tmp/Applications/Games/Icy Tower/application.js:1
Icy\ Tower\ 1.5=Icy Tower 1.5
#: i18n/tmp/Applications/Games/Icy Tower/application.js:2
Icy\ Tower\ is\ a\ platform\ game\ set\ in\ a\ tower,\ where\ the\ player's\ goal\ is\ to\ jump\ from\ one\ floor\ to\ the\ next\ and\ go\ as\ high\ as\ possible\ without\ falling\ and\ plunging\ off\ the\ screen.=Icy Tower is a platform game set in a tower, where the player's goal is to jump from one floor to the next and go as high as possible without falling and plunging off the screen.
#: Applications/Games/Total War Rome II/Steam/script.js:21
If\ you\ are\ experiencing\ issues\ with\ game\ (e.g.\ it\ crashes\ at\ start\ or\ rendering\ is\ broken),\ you\ can\ try\ to\ enable\ de\ OpenGL\ renderer,\ by\ modifying\ \:\n\n\ gfx_device_type\ to\ 2\n\n\ in\ the\ {0}/drive_c/users/USERNAME/Application\ Data/The\ Creative\ Assembly/Rome2/scripts/preferences_script.txt=If you are experiencing issues with game (e.g. it crashes at start or rendering is broken), you can try to enable de OpenGL renderer, by modifying \:\n\n gfx_device_type to 2\n\n in the {0}/drive_c/users/USERNAME/Application Data/The Creative Assembly/Rome2/scripts/preferences_script.txt
#: Applications/Games/Mass Effect 2/Origin/script.js:15
If\ you\ get\ a\ DirectX\ internal\ error\ during\ installation,\ go\ to\ the\ installation\ folder\ and\ navigate\ to\ __Installer/directx/redist\ and\ delete\ all\ .cab\ files.=If you get a DirectX internal error during installation, go to the installation folder and navigate to __Installer/directx/redist and delete all .cab files.
#: Applications/Games/Mass Effect/Steam/script.js:11
If\ you\ have\ sound\ issues,\ please\ edit\ the\ BIOEngine.ini\ and/or\ BaseEngine.ini\ file\ in\ {0}/drive_c/Program\ Files/Steam/steamapps/common/Mass\ Effect/Engine/Config/\n\nAnd\ add\ the\ following\ under\ [ISACTAudio.ISACTAudioDevice]\ \:\n\nDeviceName\=Generic\ Software\nUseEffectsProcessing\=False\n\n=If you have sound issues, please edit the BIOEngine.ini and/or BaseEngine.ini file in {0}/drive_c/Program Files/Steam/steamapps/common/Mass Effect/Engine/Config/\n\nAnd add the following under [ISACTAudio.ISACTAudioDevice] \:\n\nDeviceName\=Generic Software\nUseEffectsProcessing\=False\n\n
#: i18n/tmp/Applications/Accessories/ImgBurn/application.js:1
ImgBurn=ImgBurn
#: i18n/tmp/Applications/Accessories/ImgBurn/application.js:2
ImgBurn\ is\ a\ lightweight\ CD\ /\ DVD\ /\ HD\ DVD\ /\ Blu-ray\ burning\ application.=ImgBurn is a lightweight CD / DVD / HD DVD / Blu-ray burning application.
#: i18n/tmp/Applications/Games/Age of Empires III: Complete
#: Collection/application.js:2
Immerse\ yourself\ in\ the\ award-winning\ strategy\ experience.\ Microsoft\ Studios\ brings\ you\ three\ epic\ Age\ of\ Empires\ III\ games\ in\ one\ monumental\ collection\ for\ the\ first\ time.\ Command\ mighty\ European\ powers\ looking\ to\ explore\ new\ lands\ in\ the\ New\ World;\ or\ jump\ eastward\ to\ Asia\ and\ determine\ the\ outcome\ of\ its\ struggles\ for\ power.=Immerse yourself in the award-winning strategy experience. Microsoft Studios brings you three epic Age of Empires III games in one monumental collection for the first time. Command mighty European powers looking to explore new lands in the New World; or jump eastward to Asia and determine the outcome of its struggles for power.
#: i18n/tmp/Applications/Games/Civilization V/application.js:2
In\ Civilization\ V,\ the\ player\ leads\ a\ civilization\ from\ prehistoric\ times\ into\ the\ future\ on\ a\ procedurally\ generated\ map,\ achieving\ one\ of\ a\ number\ of\ different\ victory\ conditions\ through\ research,\ exploration,\ diplomacy,\ expansion,\ economic\ development,\ government\ and\ military\ conquest.=In Civilization V, the player leads a civilization from prehistoric times into the future on a procedurally generated map, achieving one of a number of different victory conditions through research, exploration, diplomacy, expansion, economic development, government and military conquest.
#: i18n/tmp/Applications/Games/Prey/application.js:2
In\ Prey,\ you\ awaken\ aboard\ Talos\ I,\ a\ space\ station\ orbiting\ the\ moon\ in\ the\ year\ 2032.\ You\ are\ the\ key\ subject\ of\ an\ experiment\ meant\ to\ alter\ humanity\ forever\ \u2013\ but\ things\ have\ gone\ terribly\ wrong.\ The\ space\ station\ has\ been\ overrun\ by\ hostile\ aliens\ and\ you\ are\ now\ being\ hunted.=In Prey, you awaken aboard Talos I, a space station orbiting the moon in the year 2032. You are the key subject of an experiment meant to alter humanity forever \u2013 but things have gone terribly wrong. The space station has been overrun by hostile aliens and you are now being hunted.
#: i18n/tmp/Applications/Games/Star Trek Online/application.js:2
In\ Star\ Trek\ Online,\ the\ Star\ Trek\ universe\ appears\ for\ the\ first\ time\ on\ a\ truly\ massive\ scale.\ Players\ take\ the\ captain's\ chair\ as\ they\ command\ their\ own\ starship\ and\ crew.\ Explore\ strange\ new\ worlds,\ seek\ out\ new\ life\ and\ new\ civilizations,\ and\ boldly\ go\ where\ no\ one\ has\ gone\ before.=In Star Trek Online, the Star Trek universe appears for the first time on a truly massive scale. Players take the captain's chair as they command their own starship and crew. Explore strange new worlds, seek out new life and new civilizations, and boldly go where no one has gone before.
#: i18n/tmp/Applications/Games/Mirror's Edge/application.js:2
In\ a\ city\ where\ information\ is\ heavily\ monitored,\ agile\ couriers\ called\ Runners\ transport\ sensitive\ data\ away\ from\ prying\ eyes.\ In\ this\ seemingly\ utopian\ paradise,\ a\ crime\ has\ been\ committed,\ your\ sister\ has\ been\ framed\ and\ now\ you\ are\ being\ hunted.=In a city where information is heavily monitored, agile couriers called Runners transport sensitive data away from prying eyes. In this seemingly utopian paradise, a crime has been committed, your sister has been framed and now you are being hunted.
#: i18n/tmp/Applications/Games/Warlock - Master of the Arcane/application.js:2
In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great\ mage,\ a\ warlord\ vying\ for\ ultimate\ power.\ Your\ mission\ is\ to\ build\ an\ empire,\ expand\ your\ borders,\ research\ new\ spells\ and\ conquer\ your\ enemies.\ Become\ the\ ultimate\ Warlock\ and\ rule\ over\ all\ of\ Ardania\!=In a time of chaotic upheaval, the player takes the role of a great mage, a warlord vying for ultimate power. Your mission is to build an empire, expand your borders, research new spells and conquer your enemies. Become the ultimate Warlock and rule over all of Ardania\!
#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/application.js:2
Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ means\ necessary,\ execute\ with\ extreme\ prejudice,\ and\ exit\ without\ a\ trace\!\ You\ are\ Sam\ Fisher,\ a\ highly\ trained\ secret\ operative\ of\ the\ NSA's\ secret\ arm\:\ Third\ Echelon.=Infiltrate terrorists' positions, acquire critical intelligence by any means necessary, execute with extreme prejudice, and exit without a trace\! You are Sam Fisher, a highly trained secret operative of the NSA's secret arm\: Third Echelon.
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
#: Engines/Wine/Engine/Implementation/script.js:48
Installing\ version\:\ {0}=Installing version\: {0}
#: Applications/Internet/Internet Explorer 6.0/Online/script.js:78
#: 7.0/Online/script.js:223 Engines/Wine/Verbs/corefonts/script.js:85
#: Engines/Wine/Verbs/corefonts/script.js:91
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
Internet=Internet
#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:1
Internet\ Explorer\ 6.0=Internet Explorer 6.0
#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:1
Internet\ Explorer\ 7.0=Internet Explorer 7.0
#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:2
#: 7.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser.<br\ />You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer is an old web browser.<br />You may need it if you want to test a website compatibility, you should not use it to navigate.
#: i18n/tmp/Utils/Functions/Net/Resource/script.js:1
Internet\ Resource=Internet Resource
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:1
It\ came\ from\ space,\ and\ ate\ our\ brains=It came from space, and ate our brains
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
#: Sith/application.js:2
It\ is\ five\ years\ after\ Kyle's\ victory\ over\ the\ seven\ dark\ Jedi.\ Invading\ Imperial\ forces\ advance\ upon\ a\ quiet\ Rebel\ outpost,\ interrupting\ Kyle's\ training\ of\ a\ brave\ new\ Jedi,\ Mara\ Jade.\ First\ introduced\ in\ Timothy\ Zahn's\ award-winning\ Star\ Wars\ novel,\ Heir\ to\ the\ Empire,\ Mara\ Jade\ blends\ her\ past\ experiences\ as\ a\ one\ time\ smuggler\ and\ Emperor's\ Hand\ with\ her\ apprenticeship\ as\ a\ Jedi\ Knight.=It is five years after Kyle's victory over the seven dark Jedi. Invading Imperial forces advance upon a quiet Rebel outpost, interrupting Kyle's training of a brave new Jedi, Mara Jade. First introduced in Timothy Zahn's award-winning Star Wars novel, Heir to the Empire, Mara Jade blends her past experiences as a one time smuggler and Emperor's Hand with her apprenticeship as a Jedi Knight.
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight: Dark Forces
#: II/application.js:2
Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Forces\u2122\ game\ left\ off...with\ even\ more\ features\ and\ firepower\ in\ dazzling\ 3D\ graphics.\ As\ Kyle\ Katarn,\ you\ must\ acquire\ a\ lightsaber\ and\ learn\ the\ ways\ of\ the\ Force\ to\ become\ a\ Jedi\ Knight.=Jedi Knight\: Dark Forces II picks up where the award-winning Dark Forces\u2122 game left off...with even more features and firepower in dazzling 3D graphics. As Kyle Katarn, you must acquire a lightsaber and learn the ways of the Force to become a Jedi Knight.
#: i18n/tmp/Applications/Games/STAR WARS Battlefront II/application.js:2
Join\ the\ rise\ of\ Darth\ Vader\u2019s\ elite\ 501st\ Legion\ of\ Stormtroopers\ as\ you\ fight\ through\ an\ all\ new\ story-based\ saga\ where\ every\ action\ you\ take\ impacts\ the\ battlefront\ and,\ ultimately,\ the\ fate\ of\ the\ Star\ Wars\ galaxy.=Join the rise of Darth Vader\u2019s elite 501st Legion of Stormtroopers as you fight through an all new story-based saga where every action you take impacts the battlefront and, ultimately, the fate of the Star Wars galaxy.
#: i18n/tmp/Engines/Wine/Tools/Kill Wine Processes/script.js:1
Kill\ processes=Kill processes
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:2
Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Launcher for Unreal Engine, Unreal Tournament, Paragon etc.
#: i18n/tmp/Applications/Games/League of Legends/application.js:1
League\ of\ Legends=League of Legends
#: i18n/tmp/Applications/Games/League of Legends/application.js:2
League\ of\ Legends\ is\ a\ fast-paced,\ competitive\ online\ game\ that\ blends\ the\ speed\ and\ intensity\ of\ an\ RTS\ with\ RPG\ elements.\ Two\ teams\ of\ powerful\ champions,\ each\ with\ a\ unique\ design\ and\ playstyle,\ battle\ head-to-head\ across\ multiple\ battlefields\ and\ game\ modes.\ With\ an\ ever-expanding\ roster\ of\ champions,\ frequent\ updates\ and\ a\ thriving\ tournament\ scene,\ League\ of\ Legends\ offers\ endless\ replayability\ for\ players\ of\ every\ skill\ level.=League of Legends is a fast-paced, competitive online game that blends the speed and intensity of an RTS with RPG elements. Two teams of powerful champions, each with a unique design and playstyle, battle head-to-head across multiple battlefields and game modes. With an ever-expanding roster of champions, frequent updates and a thriving tournament scene, League of Legends offers endless replayability for players of every skill level.
#: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:1
Lego\ Rock\ Raiders=Lego Rock Raiders
#: i18n/tmp/Applications/Games/Assassin's Creed: Brotherhood/application.js:2
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.<br><br>He\ must\ journey\ into\ Italy\u2019s\ greatest\ city,\ Rome,\ center\ of\ power,\ greed\ and\ corruption\ to\ strike\ at\ the\ heart\ of\ the\ enemy.\ Defeating\ the\ corrupt\ tyrants\ entrenched\ there\ will\ require\ not\ only\ strength,\ but\ leadership,\ as\ Ezio\ commands\ an\ entire\ brotherhood\ of\ assassins\ who\ will\ rally\ to\ his\ side.\ Only\ by\ working\ together\ can\ the\ assassins\ defeat\ their\ mortal\ enemies\ and\ prevent\ the\ extinction\ of\ their\ order.=Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.<br><br>He must journey into Italy\u2019s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order.
#: i18n/tmp/Applications/Custom/LocalInstaller/Local/script.js:1
#: i18n/tmp/Applications/Games/The Sims 3/Local/script.js:1
#: i18n/tmp/Applications/Games/Guild Wars 2/Local/script.js:1
#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1
#: i18n/tmp/Applications/Games/osu!/Local/script.js:1
#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium
#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Space
#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
#: Sims/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
#: II/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/STAR WARS Empire at
#: War Gold Pack/Local/script.js:1 Elder Scrolls IV:
#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/18 Wheels of Steel
#: Across America/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games
#: Launcher/Local/script.js:1
#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Local/script.js:1 Battlefront
#: i18n/tmp/Applications/Games/Wildlife Park
#: i18n/tmp/Applications/Office/Microsoft Office 2010/Local/script.js:1
#: 2013/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
#: (1.0->1.6)/script.js:1
Local\ (1.0->1.6)=Local (1.0->1.6)
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Local
#: (Demo)/script.js:1
Local\ (Demo)=Local (Demo)
#: i18n/tmp/Applications/Games/Origin/Local (Legacy)/script.js:1
Local\ (Legacy)=Local (Legacy)
#: i18n/tmp/Applications/Custom/LocalInstaller/application.js:1
Local\ Installer=Local Installer
#: i18n/tmp/Engines/Wine/QuickScript/Local Installer Script/script.js:1
Local\ Installer\ Script=Local Installer Script
#: i18n/tmp/Applications/Games/Borderlands/application.js:2
Lock,\ Load,\ &\ Face\ the\ Madness<br><br>Get\ ready\ for\ the\ mind\ blowing\ insanity\!\ Play\ as\ one\ of\ four\ trigger-happy\ mercenaries\ and\ take\ out\ everything\ that\ stands\ in\ your\ way\!<br><br>With\ its\ addictive\ action,\ frantic\ first-person\ shooter\ combat,\ massive\ arsenal\ of\ weaponry,\ RPG\ elements\ and\ four-player\ co-op*,\ Borderlands\ is\ a\ breakthrough\ experience\ that\ challenges\ all\ the\ conventions\ of\ modern\ shooters.\ Borderlands\ places\ you\ in\ the\ role\ of\ a\ mercenary\ on\ the\ lawless\ and\ desolate\ planet\ of\ Pandora,\ hell-bent\ on\ finding\ a\ legendary\ stockpile\ of\ powerful\ alien\ technology\ known\ as\ The\ Vault.=Lock, Load, & Face the Madness<br><br>Get ready for the mind blowing insanity\! Play as one of four trigger-happy mercenaries and take out everything that stands in your way\!<br><br>With its addictive action, frantic first-person shooter combat, massive arsenal of weaponry, RPG elements and four-player co-op*, Borderlands is a breakthrough experience that challenges all the conventions of modern shooters. Borderlands places you in the role of a mercenary on the lawless and desolate planet of Pandora, hell-bent on finding a legendary stockpile of powerful alien technology known as The Vault.
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
#: i18n/tmp/Applications/Games/Mass Effect 2/application.js:1
Mass\ Effect\ 2=Mass Effect 2
#: i18n/tmp/Applications/Games/Medieval II: Total War/application.js:1
Medieval\ II\:\ Total\ War\u2122=Medieval II\: Total War\u2122
#: i18n/tmp/Applications/Games/Rayman Legends/application.js:2
Michel\ Ancel,\ the\ celebrated\ creator\ of\ Rayman\u00ae,\ Beyond\ Good\ &\ Evil\u00ae,\ and\ the\ Raving\ Rabbids\u00ae,\ returns\ to\ unleash\ his\ innovative\ creativity\ on\ this\ new\ entry\ into\ the\ Rayman\u00ae\ franchise.<br><br>When\ Rayman,\ Globox,\ and\ the\ Teensies\ discover\ a\ mysterious\ tent\ filled\ with\ captivating\ paintings,\ they\ are\ suddenly\ transported\ to\ a\ series\ of\ mythical\ new\ worlds\!<br><br>Join\ them\ as\ they\ run,\ jump,\ and\ slap\ their\ way\ through\ each\ world\ to\ get\ home,\ save\ the\ day,\ and\ discover\ the\ secrets\ of\ the\ legendary\ paintings\!=Michel Ancel, the celebrated creator of Rayman\u00ae, Beyond Good & Evil\u00ae, and the Raving Rabbids\u00ae, returns to unleash his innovative creativity on this new entry into the Rayman\u00ae franchise.<br><br>When Rayman, Globox, and the Teensies discover a mysterious tent filled with captivating paintings, they are suddenly transported to a series of mythical new worlds\!<br><br>Join them as they run, jump, and slap their way through each world to get home, save the day, and discover the secrets of the legendary paintings\!
#: i18n/tmp/Applications/Office/Microsoft Office 2010/application.js:1
Microsoft\ Office\ 2010=Microsoft Office 2010
#: i18n/tmp/Applications/Office/Microsoft Office 2010/application.js:2
Microsoft\ Office\ 2010\ is\ a\ version\ of\ Microsoft\ Office,\ a\ productivity\ suite\ for\ Microsoft\ Windows.\ It\ is\ the\ successor\ to\ Microsoft\ Office\ 2007.=Microsoft Office 2010 is a version of Microsoft Office, a productivity suite for Microsoft Windows. It is the successor to Microsoft Office 2007.
#: i18n/tmp/Applications/Office/Microsoft Office 2013/application.js:1
Microsoft\ Office\ 2013=Microsoft Office 2013
#: i18n/tmp/Applications/Office/Microsoft Office 2013/application.js:2
Microsoft\ Office\ 2013\ is\ a\ version\ of\ Microsoft\ Office,\ a\ productivity\ suite\ for\ Microsoft\ Windows.\ It\ is\ the\ successor\ to\ Microsoft\ Office\ 2010.=Microsoft Office 2013 is a version of Microsoft Office, a productivity suite for Microsoft Windows. It is the successor to Microsoft Office 2010.
#: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:1
Microsoft\ Paint=Microsoft Paint
#: i18n/tmp/Applications/Games/Mirror's Edge/application.js:1
Mirror's\ Edge\u2122=Mirror's Edge\u2122
#: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:2
More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three\ Rufuses\ cause\ all\ kinds\ of\ crazy\ mayhem\ in\ the\ long-awaited\ adventure\ comedy\ Goodbye\ Deponia\!=More chaos, more destruction, more Rufus. Not one, not two, but three Rufuses cause all kinds of crazy mayhem in the long-awaited adventure comedy Goodbye Deponia\!
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
#: Engines/Wine/Settings/mouse warp override/script.js:12
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
Mp3tag=Mp3tag
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:2
Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ common\ audio\ formats\ where\ it\ supports\ ID3v1,\ ID3v2.3,\ ID3v2.4,\ iTunes\ MP4,\ WMA,\ Vorbis\ Comments\ and\ APE\ Tags.\ It\ also\ supports\ online\ database\ lookups\ from\ Amazon,\ Musicbraing,\ freedb\ or\ discogs\ for\ example\ to\ automatically\ gather\ proper\ tags\ and\ cover\ art.=Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats where it supports ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags. It also supports online database lookups from Amazon, Musicbraing, freedb or discogs for example to automatically gather proper tags and cover art.
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
#: Engines/Wine/Settings/multisampling/script.js:12
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
Net\ Utils=Net Utils
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:2
Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzles\ and\ mysteries\ come\ together\ in\ an\ oneiric\ and\ minimalist\ world.\ Dare\ to\ dream\!=Niko is a spiritual journey through the dreams, where adventure, puzzles and mysteries come together in an oneiric and minimalist world. Dare to dream\!
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
#: i18n/tmp/Applications/Development/Notepad++/application.js:2
Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ "free\ beer")\ source\ code\ editor\ and\ Notepad\ replacement\ that\ supports\ several\ languages.\ Running\ in\ the\ MS\ Windows\ environment,\ its\ use\ is\ governed\ by\ GPL\ License.<br><br>Based\ on\ a\ powerful\ editing\ component\ Scintilla,\ Notepad++\ is\ written\ in\ C++\ and\ uses\ pure\ Win32\ API\ and\ STL\ which\ ensures\ a\ higher\ execution\ speed\ and\ smaller\ program\ size.\ By\ optimizing\ as\ many\ routines\ as\ possible\ without\ losing\ user\ friendliness,\ Notepad++\ is\ trying\ to\ reduce\ the\ world\ carbon\ dioxide\ emissions.\ When\ using\ less\ CPU\ power,\ the\ PC\ can\ throttle\ down\ and\ reduce\ power\ consumption,\ resulting\ in\ a\ greener\ environment.<br><br>Source\:\ http\://notepad-plus.sourceforge.net/uk/site.htm=Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.<br><br>Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.<br><br>Source\: http\://notepad-plus.sourceforge.net/uk/site.htm
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
Offscreen\ rendering\ mode=Offscreen rendering mode
#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
On\ first\ run\ the\ game\ might\ not\ go\ into\ full\ screen.\ If\ that\ happens\ go\ to\ options\ and\ set\ the\ resolution\ to\ 1280x960.\ You\ will\ be\ asked\ to\ close\ the\ game\ in\ order\ to\ apply\ the\ new\ settings.\ Click\ Yes.\ Once\ you\ start\ the\ game\ again\ you\ should\ see\ a\ window\ where\ you\ can\ set\ your\ game\ resolution\ to\ match\ your\ screen.=On first run the game might not go into full screen. If that happens go to options and set the resolution to 1280x960. You will be asked to close the game in order to apply the new settings. Click Yes. Once you start the game again you should see a window where you can set your game resolution to match your screen.
#: Applications/Games/Space Colony/Local/script.js:17
Once\ the\ progress\ bar\ closes,\ an\ installation\ complete\ window\ should\ appear\ but\ in\ case\ it\ does\ not\ you\ should\ kill\ the\ process\ which\ name\ consist\ of\ just\ one\ dot.=Once the progress bar closes, an installation complete window should appear but in case it does not you should kill the process which name consist of just one dot.
#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/Online/script.js:1
#: 7.0/Online/script.js:1
#: i18n/tmp/Applications/Accessories/ImgBurn/Online/script.js:1
#: i18n/tmp/Applications/Accessories/7-zip/Online/script.js:1
#: i18n/tmp/Applications/Accessories/Soundplant/Online/script.js:1
#: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1
#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
#: i18n/tmp/Applications/Games/Road Rash/Online/script.js:1
#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
#: i18n/tmp/Applications/Games/Heroes of the Storm/Online/script.js:1
#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
#: i18n/tmp/Applications/Games/Xenon i18n/tmp/Applications/Games/Prince Of
#: Persia: Original/Online/script.js:1 i18n/tmp/Applications/Games/Warcraft
#: III Expansion Set/Online/script.js:1 i18n/tmp/Applications/Games/Crayon
#: Physics/Online/script.js:1 i18n/tmp/Applications/Games/STAR WARS: The Old
#: Republic/Online/script.js:1 i18n/tmp/Applications/Games/The Elder Scrolls
#: I: Arena/Online/script.js:1 i18n/tmp/Applications/Games/Earth Eternal -
#: Valkal's Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Star Craft
#: II/Online/script.js:1 i18n/tmp/Applications/Games/Origin/Online/script.js:1
#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1
#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
#: i18n/tmp/Applications/Games/Steam/Online/script.js:1
#: i18n/tmp/Applications/Games/League Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
#: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1
#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/Online/script.js:1
#: i18n/tmp/Applications/Office/ElsterFormular/Online/script.js:1
#: i18n/tmp/Applications/Graphics/Microsoft Paint/Online/script.js:1
#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
#: (Demo)/script.js:1
Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
#: i18n/tmp/Engines/Wine/QuickScript/Online Installer Script/script.js:1
Online\ Installer\ Script=Online Installer Script
#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1
Open\ a\ terminal=Open a terminal
#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
#: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1
#: i18n/tmp/Applications/Games/Spore/Origin/script.js:1
#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: i18n/tmp/Applications/Games/Origin/application.js:1
Origin=Origin
#: i18n/tmp/Engines/Wine/QuickScript/Origin Script/script.js:1
Origin\ Script=Origin Script
#: i18n/tmp/Applications/Games/Origin/application.js:2
Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal.
#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/application.js:1
Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You
#: i18n/tmp/Applications/Other/category.js:1
Other=Other
#: i18n/tmp/Applications/Games/Overwatch/application.js:1
Overwatch=Overwatch
#: i18n/tmp/Applications/Games/Overwatch/application.js:2
Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\ game.=Overwatch is a team-based multiplayer online first-person shooter video game.
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY\u2122\ The\ Heist=PAYDAY\u2122 The Heist
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:2
Paradise\ City\ is\ the\ largest\ and\ most\ dangerous\ setting\ yet\ for\ the\ best-selling\ Burnout\ series.\ The\ massive\ setting\ gives\ players\ an\ open-ended\ world\ to\ explore,\ as\ they\ race\ their\ vehicles\ through\ hundreds\ of\ miles\ of\ roads\ and\ underground\ passages\ with\ more\ than\ 70\ different\ cars.\ Speed\ through\ the\ streets\ from\ event\ to\ event,\ racking\ up\ points\ that\ are\ saved\ to\ your\ Paradise\ City\ driver\u2019s\ license.\ Earn\ the\ vaunted\ \u201cBurnout\u201d\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Paradise City is the largest and most dangerous setting yet for the best-selling Burnout series. The massive setting gives players an open-ended world to explore, as they race their vehicles through hundreds of miles of roads and underground passages with more than 70 different cars. Speed through the streets from event to event, racking up points that are saved to your Paradise City driver\u2019s license. Earn the vaunted \u201cBurnout\u201d license by smashing through billboards, jumping ramps, and sustaining crashes with the improved damage system.
#: i18n/tmp/Applications/Graphics/Photofiltre/application.js:1
Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
#: Engines/Wine/QuickScript/Uplay Script/script.js:84
Please\ close\ Uplay.=Please close Uplay.
#: Engines/Wine/QuickScript/Uplay Script/script.js:57
Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Please ensure that winbind is installed before you continue.
#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15
Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Please ensure you have the latest drivers (415.25 minimum for NVIDIA and mesa 19 for AMD) or else this game will not work.
#: Engines/Wine/QuickScript/Installer Script/script.js:23
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
#: Engines/Wine/QuickScript/Steam Script/script.js:121
Please\ follow\ the\ steps\ of\ the\ Steam\ setup.\ Then,\ wait\ until\ Steam\ is\ updated,\ log\ in\ and\ finally\ close\ Steam\ completely\ so\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Steam setup. Then, wait until Steam is updated, log in and finally close Steam completely so the installation of "{0}" can continue.
#: Engines/Wine/Verbs/Uplay/script.js:15
Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation can continue.
#: Engines/Wine/QuickScript/Uplay Script/script.js:58
Please\ follow\ the\ steps\ of\ the\ Uplay\ setup.\n\nUncheck\ "Run\ Uplay"\ or\ close\ Uplay\ completely\ after\ the\ setup\ so\ that\ the\ installation\ of\ "{0}"\ can\ continue.=Please follow the steps of the Uplay setup.\n\nUncheck "Run Uplay" or close Uplay completely after the setup so that the installation of "{0}" can continue.
#: Engines/Wine/QuickScript/GoG Script/script.js:41
Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Please login to your GoG.com account so that we can download the game for you\:
#: Engines/Wine/QuickScript/Zip Script/script.js:45
Please\ select\ the\ .zip\ file.=Please select the .zip file.
#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
Please\ select\ the\ download\ URL.=Please select the download URL.
#: Engines/Wine/QuickScript/Installer Script/script.js:83
Please\ select\ the\ executable.=Please select the executable.
#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
Please\ select\ the\ installation\ file.=Please select the installation file.
#: Applications/Office/ElsterFormular/Online/script.js:11
Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Please select the installation file.\nYou can download it from https\://www.elster.de/elfo_down.php.
#: Engines/Wine/Verbs/DXVK/script.js:86 Engines/Wine/Verbs/VK9/script.js:72
Please\ select\ the\ version.=Please select the version.
#: Engines/Wine/QuickScript/Installer Script/script.js:38
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
#: Engines/Wine/QuickScript/Installer Script/script.js:51
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
#: Engines/Wine/QuickScript/Installer Script/script.js:66
Please\ select\ the\ wine\ version.=Please select the wine version.
#: Engines/Wine/QuickScript/Steam Script/script.js:147
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
#: Engines/Wine/QuickScript/Uplay Script/script.js:76
Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download...
#: Utils/Functions/Net/Resource/script.js:80
#: Utils/Functions/Net/Download/script.js:108
Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded...
#: Utils/Functions/Filesystem/Extract/script.js:57
#: Utils/Functions/Filesystem/Extract/script.js:133
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
#: Engines/Wine/Verbs/vcrun2017/script.js:18
#: Engines/Wine/Verbs/vcrun2017/script.js:29
#: Engines/Wine/Verbs/vcrun2015/script.js:18
#: Engines/Wine/Verbs/vcrun2015/script.js:29
#: Engines/Wine/Verbs/dotnet40/script.js:30 Engines/Wine/Verbs/QuickTime
#: 7.6/script.js:16 Engines/Wine/Verbs/vcrun2008/script.js:18
#: Engines/Wine/Verbs/vcrun2008/script.js:29
#: Engines/Wine/Verbs/gdiplus/script.js:18
#: Engines/Wine/Verbs/devenum/script.js:20
#: Engines/Wine/Verbs/dotnet20/script.js:23
#: Engines/Wine/Verbs/dotnet20/script.js:38
#: Engines/Wine/Verbs/vcrun2012/script.js:18
#: Engines/Wine/Verbs/vcrun2012/script.js:29
#: Engines/Wine/Verbs/dotnet461/script.js:33
#: Engines/Wine/Verbs/vcrun2005/script.js:18
#: Engines/Wine/Verbs/vcrun2010/script.js:18
#: Engines/Wine/Verbs/vcrun2010/script.js:29
#: Engines/Wine/Verbs/d3drm/script.js:19
#: Engines/Wine/Verbs/vcrun2013/script.js:18
#: Engines/Wine/Verbs/vcrun2013/script.js:29
#: Engines/Wine/Verbs/amstream/script.js:21
#: Engines/Wine/Verbs/amstream/script.js:36
#: Engines/Wine/Verbs/dotnet452/script.js:38
#: Engines/Wine/Verbs/dotnet45/script.js:42
#: Engines/Wine/Verbs/PhysX/script.js:17
#: Engines/Wine/Verbs/vcrun2003/script.js:18
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
#: Engines/Wine/Engine/Object/script.js:191
Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled...
#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74
#: Engines/Wine/Verbs/dotnet40/script.js:21
#: Engines/Wine/Verbs/dotnet40/script.js:37
#: Engines/Wine/Verbs/dotnet40/script.js:39
#: Engines/Wine/Verbs/corefonts/script.js:84
#: Engines/Wine/Verbs/d3dx10/script.js:35
#: Engines/Wine/Verbs/dotnet461/script.js:22
#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
#: Engines/Wine/Verbs/dotnet452/script.js:26
#: Engines/Wine/Verbs/dotnet45/script.js:30
#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/QuickScript/Steam
#: Script/script.js:138 Script/script.js:143 Script/script.js:163
#: Script/script.js:178 Engines/Wine/QuickScript/Zip Script/script.js:41
#: Script/script.js:67 Engines/Wine/QuickScript/Installer Script/script.js:77
#: Script/script.js:91 Engines/Wine/QuickScript/Uplay Script/script.js:64
#: Script/script.js:69 Script/script.js:89 Engines/Wine/QuickScript/Origin
#: Script/script.js:57 Script/script.js:62 Script/script.js:70
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
#: Engines/Wine/Engine/Object/script.js:326
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
Prehistorik=Prehistorik
#: i18n/tmp/Applications/Games/Prey/application.js:1