'"Install"=dword:0001\n' +
'"Version"="4.0.30319"';
- this.wine.regedit().patch(regeditFileContent);
+ new Regedit(this.wine).patch(regeditFileContent);
//This is in winetricks source, but does not seem to work
//this.wizard().wait(tr("Please wait while executing ngen..."));
//this.run(this.prefixDirectory() + "/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe", "executequeueditems", null, false, true);
- this.wine.windowsVersion(windowsVersion);
+ new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go();
}
static install(container) {
@@ -139,7 +134,7 @@
go() {
const wizard = this.wine.wizard();
- const windowsVersion = this.wine.windowsVersion();
+
+ const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion();
print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet452"));
@@ -64,12 +65,9 @@
Source: Engines/Wine/Verbs/dotnet452/script.js
new DotNET40(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5.2"));
@@ -77,14 +75,11 @@
Source: Engines/Wine/Verbs/dotnet452/script.js
wizard.wait(tr("Please wait..."));
- this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+ new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
- this.wine
- .overrideDLL()
- .set("native", ["mscoree"])
- .do();
+ new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go();
- this.wine.windowsVersion(windowsVersion);
+ new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go();
if (windowsVersion != "win2003") {
print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5.2"));
@@ -117,7 +112,7 @@
new DotNET40(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.5"));
@@ -85,14 +83,11 @@
Source: Engines/Wine/Verbs/dotnet45/script.js
wizard.wait(tr("Please wait..."));
- this.wine.regedit().deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
+ new Regedit(this.wine).deleteValue("HKCU\\Software\\Wine\\DllOverrides", "*fusion");
- this.wine
- .overrideDLL()
- .set("native", ["mscoree"])
- .do();
+ new OverrideDLL(this.wine).withMode("native", ["mscoree"]).go();
- this.wine.windowsVersion(windowsVersion);
+ new WindowsVersion(this.wine).withWindowsVersion(windowsVersion).go();
if (windowsVersion != "win2003") {
print(tr('{0} applications can have issues when windows version is not set to "win2003"', ".NET 4.5"));
@@ -132,7 +127,7 @@
go() {
const wizard = this.wine.wizard();
- const windowsVersion = this.wine.windowsVersion();
+
+ const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion();
print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet461"));
@@ -64,12 +65,9 @@
Source: Engines/Wine/Verbs/dotnet461/script.js
new DotNET46(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.1"));
@@ -77,14 +75,11 @@
go() {
const wizard = this.wine.wizard();
- const windowsVersion = this.wine.windowsVersion();
+
+ const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion();
print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet462"));
@@ -64,12 +65,9 @@
Source: Engines/Wine/Verbs/dotnet462/script.js
new DotNET461(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6.2"));
@@ -77,14 +75,11 @@
go() {
const wizard = this.wine.wizard();
- const windowsVersion = this.wine.windowsVersion();
+
+ const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion();
print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet46"));
@@ -64,12 +65,9 @@
Source: Engines/Wine/Verbs/dotnet46/script.js
new DotNET45(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.6"));
@@ -77,14 +75,11 @@
go() {
const wizard = this.wine.wizard();
- const windowsVersion = this.wine.windowsVersion();
+
+ const windowsVersion = new WindowsVersion(this.wine).getWindowsVersion();
print(tr("This package ({0}) does not work currently. Use it only for testing!", "dotnet472"));
@@ -64,12 +65,9 @@
Source: Engines/Wine/Verbs/dotnet472/script.js
new DotNET462(this.wine).go();
- this.wine.windowsVersion("win7");
+ new WindowsVersion(this.wine).withWindowsVersion("win7").go();
- this.wine
- .overrideDLL()
- .set("builtin", ["fusion"])
- .do();
+ new OverrideDLL(this.wine).withMode("builtin", ["fusion"]).go();
wizard.wait(tr("Please wait while {0} is installed...", ".NET Framework 4.7.2"));
@@ -77,14 +75,11 @@
const Optional = Java.type("java.util.Optional");
-include("engines.wine.plugins.regedit");
+const Regedit = include("engines.wine.plugins.regedit");
/**
* Verb to install all the necessary things to run winevulkan (even inside wine mainline or newest wine-staging)
@@ -86,7 +86,7 @@
Source: Engines/Wine/Verbs/vulkanSDK/script.js
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Khronos\\Vulkan\\Drivers]\n" +
'"C:\\\\Windows\\\\winevulkan.json"=dword:00000000';
- this.wine.regedit().patch(regeditFileContent32);
+ new Regedit(this.wine).patch(regeditFileContent32);
if (this.wine.architecture() == "amd64") {
const regeditFileContent64 =
@@ -95,7 +95,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Fetch the prefix dosbox configuration file
@@ -2776,55 +2776,6 @@
- QuickScript object
+ The .exe file entry that can be used to continue the installation
@@ -3216,7 +3008,7 @@
Returns:
-QuickScript
+String
@@ -3234,7 +3026,7 @@
Returns:
-
executable(executable, args)
+
downloadFinished(wine) → {boolean}
@@ -3242,7 +3034,8 @@
executable<
- set executable
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the setup file(s) name so that the script can fetch it from gog.com
- The WineShortcut object
+ True if hdpi is enabled, false otherwise
@@ -5135,7 +5087,7 @@
Returns:
-WineShortcut
+boolean
@@ -5153,7 +5105,7 @@
Returns:
-
miniature(miniatureopt)
+
json() → {any}
@@ -5161,7 +5113,7 @@
miniature
- get/set miniature (for the installation and the shortcut)
+ Gets the content of the downloaded file and returns it as a JSON value
@@ -5172,67 +5124,6 @@
name
- Sets the shortcut name
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -5505,13 +5366,13 @@
run
- Runs a shortcut with the given user arguments
+ Specifies if the download shall be executed only if a newer version is available
@@ -6614,13 +6468,13 @@
Parameters:
-
userArguments
+
onlyIfUpdateAvailable
-array
+boolean
@@ -6630,7 +6484,7 @@
Parameters:
-
The user arguments
+
true the download shall be executed only if a newer version is available
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -10709,13 +11456,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -11623,8 +12240,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -11839,13 +12412,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -12691,7 +13094,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -13558,6 +14178,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -14524,6 +15263,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -15651,7 +16710,7 @@
Returns:
-WineShortcut
+String
@@ -15669,7 +16728,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -15677,7 +16736,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -15713,13 +16773,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -21621,7 +22923,7 @@
Returns:
-Array.<string>
+bool
@@ -21639,7 +22941,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -21647,8 +22949,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -21659,100 +22960,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -22740,7 +23815,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -22899,13 +23998,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -24573,6 +25929,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -24683,6 +26089,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
stop
- Stops the running shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -27594,106 +28965,98 @@
url
- Sets the URL which shall be used for the download
+ Sets the directory inside the resources directory where the Resource is stored
@@ -28838,7 +30046,7 @@
wait
- wait until wineserver finishes
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -29131,6 +30450,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the miniature for the shortcut
@@ -31721,8 +33225,6 @@
Parameters:
Type
-
Attributes
-
@@ -31735,66 +33237,26 @@
Parameters:
-
subCategory
+
miniature
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
-
+Array.<string>
+|
-
-
-
-string
+URI
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
An array which specifies the application of which the miniature shall be used or URI of the miniature
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource URL
run
- Runs a shortcut with the given user arguments
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -36761,13 +38860,13 @@
stop
- Stops the running shortcut
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -37643,6 +39631,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -41770,8 +44030,6 @@
- path to "wine" binary
+ The .exe file entry that can be used to continue the installation
@@ -41924,7 +44139,7 @@
Returns:
-string
+String
@@ -41942,7 +44157,7 @@
Returns:
-
category(category) → {WineShortcut}
+
downloadFinished(wine) → {boolean}
@@ -41950,7 +44165,8 @@
category
- Sets the shortcut category
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -41986,13 +44202,13 @@
headers
- Sets the http headers
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -44537,13 +46497,13 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ get/set miniature (for the installation and the shortcut)
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -50905,13 +52587,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -51819,8 +53371,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -52035,13 +53543,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -52887,7 +54225,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -53754,6 +55309,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -54720,6 +56394,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -55847,7 +57841,7 @@
Returns:
-WineShortcut
+String
@@ -55865,7 +57859,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -55873,7 +57867,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -55909,13 +57904,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -61817,7 +64054,7 @@
Returns:
-Array.<string>
+bool
@@ -61835,7 +64072,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -61843,8 +64080,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -61855,100 +64091,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -62936,7 +64946,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -63095,13 +65129,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -64769,6 +67060,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -64879,6 +67220,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
stop
- Stops the running shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -67790,106 +70096,98 @@
url
- Sets the URL which shall be used for the download
+ Sets the directory inside the resources directory where the Resource is stored
@@ -69034,7 +71177,7 @@
wait
- wait until wineserver finishes
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -69327,6 +71581,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the miniature for the shortcut
@@ -71917,8 +74356,6 @@
Parameters:
Type
-
Attributes
-
@@ -71931,66 +74368,26 @@
Parameters:
-
subCategory
+
miniature
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
-
+Array.<string>
+|
-
-
-
-string
+URI
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
An array which specifies the application of which the miniature shall be used or URI of the miniature
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource URL
run
- Runs a shortcut with the given user arguments
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -76957,13 +79991,13 @@
stop
- Stops the running shortcut
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -77839,6 +80762,55 @@
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets the checksum which shall be used to verify the resource
@@ -81052,7 +84272,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Fetch the prefix dosbox configuration file
@@ -81953,93 +85099,158 @@
- path to "wine" binary
+ The .exe file entry that can be used to continue the installation
@@ -82120,7 +85331,7 @@
Returns:
-string
+String
@@ -82138,7 +85349,7 @@
Returns:
-
category(category) → {WineShortcut}
+
downloadFinished(wine) → {boolean}
@@ -82146,7 +85357,8 @@
category
- Sets the shortcut category
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -82182,13 +85394,13 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Returns the searched resource
@@ -83193,13 +86286,13 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the setup file(s) name so that the script can fetch it from gog.com
@@ -83901,6 +87019,55 @@
- Sets the setup file(s) name so that the script can fetch it from gog.com
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
json
- Gets the content of the downloaded file and returns it as a JSON value
+ get/set miniature (for the installation and the shortcut)
@@ -84867,6 +87982,67 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource name
miniature
- get/set miniature (for the installation and the shortcut)
+ Specifies if the download shall be executed only if a newer version is available
@@ -85577,8 +88779,6 @@
Parameters:
Type
-
Attributes
-
@@ -85591,33 +88791,23 @@
Parameters:
-
miniature
+
onlyIfUpdateAvailable
-URI
+boolean
-
-
- <optional>
-
-
-
-
-
-
-
-
path to the miniature file
+
true the download shall be executed only if a newer version is available
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -91101,13 +93779,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -92015,8 +94563,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -92231,13 +94735,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -93083,7 +95417,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -93950,6 +96501,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -94916,6 +97586,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -96043,7 +99033,7 @@
Returns:
-WineShortcut
+String
@@ -96061,7 +99051,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -96069,7 +99059,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -96105,13 +99096,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -102013,7 +105246,7 @@
Returns:
-Array.<string>
+bool
@@ -102031,7 +105264,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -102039,8 +105272,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -102051,100 +105283,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -103132,7 +106138,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -103291,13 +106321,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -104965,6 +108252,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -105075,6 +108412,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
stop
- Stops the running shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -107986,106 +111288,98 @@
url
- Sets the URL which shall be used for the download
+ Sets the directory inside the resources directory where the Resource is stored
@@ -109230,7 +112369,7 @@
wait
- wait until wineserver finishes
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -109523,6 +112773,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the miniature for the shortcut
@@ -112113,8 +115548,6 @@
Parameters:
Type
-
Attributes
-
@@ -112127,66 +115560,26 @@
Parameters:
-
subCategory
+
miniature
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
-
+Array.<string>
+|
-
-
-
-string
+URI
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
An array which specifies the application of which the miniature shall be used or URI of the miniature
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource URL
run
- Runs a shortcut with the given user arguments
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -117153,13 +121183,13 @@
stop
- Stops the running shortcut
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -118035,6 +121954,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -122162,8 +126328,6 @@
- path to "wine" binary
+ The .exe file entry that can be used to continue the installation
@@ -122316,7 +126437,7 @@
Returns:
-string
+String
@@ -122334,7 +126455,7 @@
Returns:
-
category(category) → {WineShortcut}
+
downloadFinished(wine) → {boolean}
@@ -122342,7 +126463,8 @@
category
- Sets the shortcut category
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -122378,13 +126500,13 @@
headers
- Sets the http headers
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -124929,13 +128795,13 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ get/set miniature (for the installation and the shortcut)
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -131297,13 +134885,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -132211,8 +135669,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -132427,13 +135841,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -133279,7 +136523,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -134146,6 +137607,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -135112,6 +138692,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -136239,7 +140139,7 @@
Returns:
-WineShortcut
+String
@@ -136257,7 +140157,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -136265,7 +140165,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -136301,13 +140202,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -142209,7 +146352,7 @@
Returns:
-Array.<string>
+bool
@@ -142227,7 +146370,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -142235,8 +146378,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -142247,100 +146389,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -143328,7 +147244,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -143487,13 +147427,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -145161,6 +149358,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -145271,6 +149518,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
stop
- Stops the running shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -148182,106 +152394,98 @@
url
- Sets the URL which shall be used for the download
+ Sets the directory inside the resources directory where the Resource is stored
@@ -149426,7 +153475,7 @@
wait
- wait until wineserver finishes
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -149719,6 +153879,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the miniature for the shortcut
@@ -152309,8 +156654,6 @@
Parameters:
Type
-
Attributes
-
@@ -152323,66 +156666,26 @@
Parameters:
-
subCategory
+
miniature
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
-
+Array.<string>
+|
-
-
-
-string
+URI
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
An array which specifies the application of which the miniature shall be used or URI of the miniature
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource URL
run
- Runs a shortcut with the given user arguments
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -157349,13 +162289,13 @@
stop
- Stops the running shortcut
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -158231,6 +163060,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -162358,8 +167434,6 @@
- path to "wine" binary
+ The .exe file entry that can be used to continue the installation
@@ -162512,7 +167543,7 @@
Returns:
-string
+String
@@ -162530,7 +167561,7 @@
Returns:
-
category(category) → {WineShortcut}
+
downloadFinished(wine) → {boolean}
@@ -162538,7 +167569,8 @@
category
- Sets the shortcut category
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -162574,13 +167606,13 @@
headers
- Sets the http headers
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -165125,13 +169901,13 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ get/set miniature (for the installation and the shortcut)
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -171493,13 +175991,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -172407,8 +176775,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -172623,13 +176947,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -173475,7 +177629,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -174342,6 +178713,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -175308,6 +179798,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -176435,7 +181245,7 @@
Returns:
-WineShortcut
+String
@@ -176453,7 +181263,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -176461,7 +181271,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -176497,13 +181308,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -182405,7 +187458,7 @@
Returns:
-Array.<string>
+bool
@@ -182423,7 +187476,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -182431,8 +187484,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -182443,100 +187495,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -183524,7 +188350,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -183683,13 +188533,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -185357,6 +190464,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -185467,6 +190624,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
stop
- Stops the running shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -188378,106 +193500,98 @@
url
- Sets the URL which shall be used for the download
+ Sets the directory inside the resources directory where the Resource is stored
@@ -189622,7 +194581,7 @@
wait
- wait until wineserver finishes
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -189915,6 +194985,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the miniature for the shortcut
@@ -192505,8 +197760,6 @@
Parameters:
Type
-
Attributes
-
@@ -192519,66 +197772,26 @@
Parameters:
-
subCategory
+
miniature
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
-
+Array.<string>
+|
-
-
-
-string
+URI
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
An array which specifies the application of which the miniature shall be used or URI of the miniature
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the resource URL
run
- Runs a shortcut with the given user arguments
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -197545,13 +203395,13 @@
stop
- Stops the running shortcut
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -198427,6 +204166,55 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Download the setup resources in the same directory, and returns the path of the .exe
@@ -202554,8 +208540,6 @@
- path to "wine" binary
+ The .exe file entry that can be used to continue the installation
@@ -202708,7 +208649,7 @@
Returns:
-string
+String
@@ -202726,7 +208667,7 @@
Returns:
-
category(category) → {WineShortcut}
+
downloadFinished(wine) → {boolean}
@@ -202734,7 +208675,8 @@
category
- Sets the shortcut category
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -202770,13 +208712,13 @@
headers
- Sets the http headers
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -205321,13 +211007,13 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ get/set miniature (for the installation and the shortcut)
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -211689,13 +217097,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -212603,8 +217881,6 @@
category
- Sets the shortcut category
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -212819,13 +218053,13 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the default windows version
@@ -213671,7 +218735,7 @@
get
- Fetches the Resource and returns the path leading to the downloaded resource
+ Sets the algorithm which shall be used to verify the checksum
@@ -214538,6 +219819,55 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -215504,6 +220904,100 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the checksum which shall be used to verify the resource
- The WineShortcut object
+ The .exe file entry that can be used to continue the installation
@@ -216631,7 +222351,7 @@
Returns:
-WineShortcut
+String
@@ -216649,7 +222369,7 @@
Returns:
-
of(shortcut) → {void}
+
downloadFinished(wine) → {boolean}
@@ -216657,7 +222377,8 @@
of
- Sets shortcut
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -216693,13 +222414,13 @@
- set trust level
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
+ true if an application has been uninstalled, false otherwise
+
+
@@ -222601,7 +228564,7 @@
Returns:
-Array.<string>
+bool
@@ -222619,7 +228582,7 @@
Returns:
-
binPath(subCategoryopt, versionopt) → {string}
+
uninstall() → {void}
@@ -222627,8 +228590,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Uninstalls the shortcut
@@ -222639,100 +228601,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Specifies the windows version for a given application
@@ -223720,7 +229456,7 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -223879,13 +229639,13 @@
- Returns the name of the container belonging to a shortcut
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -225553,6 +231570,55 @@
kill
- kill wine server
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -225663,6 +231730,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the installation script consisting of a lambda function
to
- Sets the download destination
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -228905,6 +536063,8 @@
Parameters:
Type
+
Attributes
+
@@ -228917,7 +536077,7 @@
Parameters:
-
localDestination
+
subCategory
@@ -228930,10 +536090,53 @@
Parameters:
+
+
+ <optional>
+
+
+
+
+
-
The destination of the download. If it is a directory, the file will be placed inside
+ The .exe file entry that can be used to continue the installation
+
+
@@ -230361,7 +537515,7 @@
Returns:
-
wineServer(wineserver)
+
downloadFinished(wine) → {boolean}
@@ -230369,7 +537523,8 @@
wineServer<
- executes wineserver in current prefix
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Sets one setup file name so that the script can fetch it from gog.com
@@ -231787,7 +539051,7 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -232701,8 +539843,6 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Specifies if the download shall be executed only if a newer version is available
@@ -233928,13 +540957,13 @@
Parameters:
-
setupWizard
+
onlyIfUpdateAvailable
-SetupWizard
+boolean
@@ -233944,7 +540973,7 @@
Parameters:
-
The setup wizard
+
true the download shall be executed only if a newer version is available
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the trust level
run
- Runs a shortcut with the given user arguments
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -237741,13 +544785,13 @@
url
- Sets the URL which shall be used for the download
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -239867,13 +546741,13 @@
url
- Sets the resource URL
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -240026,13 +546901,13 @@
- The Downloader object
+ The content of downloaded file
@@ -245614,7 +552361,7 @@
Returns:
-Downloader
+String
@@ -245632,7 +552379,7 @@
Returns:
-
json() → {any}
+
get() → {string}
@@ -245640,7 +552387,7 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Fetches the Resource and returns the path leading to the downloaded resource
@@ -245684,7 +552431,7 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Fetch all prefix dosbox sttings
- Specifies if the download shall be executed only if a newer version is available
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -246995,13 +553557,13 @@
Parameters:
-
onlyIfUpdateAvailable
+
setupWizard
-boolean
+SetupWizard
@@ -247011,7 +553573,7 @@
Parameters:
-
true the download shall be executed only if a newer version is available
algorithm
- Sets the checksum algorithm
+ Sets CPU cycles in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bcpu.5D
@@ -251726,13 +558487,13 @@
algorithm
- Sets the algorithm which shall be used to verify the checksum
+ Specifies the dimensions of the virtual desktop
@@ -251885,13 +558646,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
@@ -252799,8 +559635,6 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -253867,13 +560603,13 @@
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ Sets the installation script consisting of a lambda function
@@ -254026,13 +560762,13 @@
json
- Gets the content of the downloaded file and returns it as a JSON value
+ Sets the application containing the resources
@@ -255700,6 +562687,55 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the shortcut arguments
miniature
- Sets the miniature for the shortcut
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -256248,6 +563467,8 @@
Parameters:
Type
+
Attributes
+
@@ -256260,26 +563481,66 @@
Parameters:
-
miniature
+
subCategory
-Array.<string>
-|
+string
-URI
+
+
+
+
+
+
+
+ <optional>
+
+
+
+
+
+
+
+
+
+
+
Wine sub-category
+
+
+
+
+
+
+
version
+
+
+
+
+
+string
+
+
+ <optional>
+
+
+
+
+
+
+
-
An array which specifies the application of which the miniature shall be used or URI of the miniature
- name of "Program Files"
+ The .exe file entry that can be used to continue the installation
@@ -257777,7 +564901,7 @@
Returns:
-string
+String
@@ -257795,7 +564919,7 @@
Returns:
-
run(userArguments) → {void}
+
downloadFinished(wine) → {boolean}
@@ -257803,7 +564927,8 @@
run
- Runs a shortcut with the given user arguments
+ Checks whether the software download has finished.
+To get a valid result with this method `downloadStarted(wine)` needs to return `true` first
@@ -257839,13 +564964,13 @@
url
- Sets the URL which shall be used for the download
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -259965,13 +567259,13 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Sets the download destination
@@ -262848,8 +570369,6 @@
Parameters:
Type
-
Attributes
-
@@ -262862,40 +570381,7 @@
Parameters:
-
subCategory
-
-
-
-
-
-string
-
-
-
-
-
-
-
-
- <optional>
-
-
-
-
-
-
-
-
-
-
-
Wine sub-category
-
-
-
-
-
-
-
version
+
localDestination
@@ -262908,20 +570394,10 @@
Parameters:
-
-
- <optional>
-
-
-
-
-
-
-
-
Wine version
+
The destination of the download. If it is a directory, the file will be placed inside
download
- Download the setup resources in the same directory, and returns the path of the .exe
+ wait until wineserver finishes
@@ -264050,55 +571575,6 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets dosbox_memsize parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Bdosbox.5D
name
- Sets the resource name
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -266620,13 +574145,13 @@
name
- Sets the shortcut name
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -266779,13 +574305,13 @@
uninstall
- uninstall application
+ returns the path to the engine binary directory
+if no parameters are given, the Wine version of the current prefix is used
@@ -269737,6 +577169,8 @@
binPath
- returns the path to the engine binary directory
-if no parameters are given, the Wine version of the current prefix is used
+ Returns the name of the container belonging to a shortcut
@@ -272884,98 +579912,114 @@
create
- Creates a new shortcut
+ Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
+Stores the tocken in a parameter
@@ -273675,6 +580936,55 @@
directory
- Sets the directory inside the resources directory where the Resource is stored
+ get/set miniature (for the installation and the shortcut)
@@ -273953,6 +581267,8 @@
- Presents a Gog.com login window to the user, login to its account and return a token that can be used later.
-Stores the tocken in a parameter
+ Sets the executable which shall be used
url
- Sets the URL which shall be used for the download
+ Sets render_aspect parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -280063,13 +587847,13 @@
url
- Sets the resource URL
+ Sets render_frameskip parameter in the current prefix
+https://www.dosbox.com/wiki/dosbox.conf#.5Brender.5D
@@ -280222,13 +588007,13 @@
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ar.properties b/i18n/Messages_ar.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_ar.properties
+++ b/i18n/Messages_ar.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_az.properties b/i18n/Messages_az.properties
index c30ab8da12..8b532bf53e 100644
--- a/i18n/Messages_az.properties
+++ b/i18n/Messages_az.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,11 +64,14 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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
+Accessories=Aksessuarlar
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1
Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC
@@ -86,8 +92,8 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
-Always\ offscreen=Always offscreen
+#: Engines/Wine/Settings/always offscreen/script.js:17
+Always\ offscreen=H\u0259mi\u015f\u0259 ba\u011fl\u0131 ekran
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
#: Time/application.js:2
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,11 +280,11 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
-Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
+#: Engines/Wine/Engine/Object/script.js:190
+Could\ not\ uninstall\ {0}\!={0} silin\u0259 bilmir\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
Crayon\ Physics=Crayon Physics
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online
DOOM\ (2016)=DOOM (2016)
#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1
-DOS\ support=DOS support
+DOS\ support=DOS d\u0259st\u0259yi
#: 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.
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.
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.
@@ -298,18 +319,20 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Default=\u0130lkin
#: 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\ –\ whether\ you’re\ 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.
@@ -317,24 +340,34 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
+Disabled=L\u0259\u011fv edildi
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+Downloader=Endirici
+
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
#: Emerald: A Whirlwind Heist/application.js:1
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,12 +403,13 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Enabled=F\u0259alla\u015fd\u0131r\u0131ld\u0131
#: i18n/tmp/Applications/Games/Enderal/application.js:1
Enderal=Enderal
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,15 +543,15 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
-GLSL\ support=GLSL support
+#: Engines/Wine/Settings/GLSL/script.js:17
+GLSL\ support=GLSL d\u0259st\u0259yi
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
#: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1
@@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta
GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
-Games=Games
+Games=Oyunlar
+
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -523,7 +576,10 @@ GoG\ Script=GoG Script
Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
-Graphics=Graphics
+Graphics=Qrafika
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,16 +667,16 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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}...
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+Installing\ {0}...={0} qura\u015fd\u0131r\u0131l\u0131r...
#: i18n/tmp/Applications/Internet/category.js:1
-Internet=Internet
+Internet=\u0130nternet
#: i18n/tmp/Applications/Internet/Internet Explorer 6.0/application.js:1
Internet\ Explorer\ 6.0=Internet Explorer 6.0
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,24 +902,28 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
-Online\ Installer=Online Installer
+Online\ Installer=Online Qura\u015fd\u0131r\u0131c\u0131
#: 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
+Open\ a\ terminal=Terminal a\u00e7
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
-OpenGL_version=OpenGL_version
+OpenGL_version=OpenGL versiyas\u0131
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -865,7 +937,7 @@ Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal.
Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You
#: i18n/tmp/Applications/Other/category.js:1
-Other=Other
+Other=Dig\u0259r
#: i18n/tmp/Applications/Games/Overwatch/application.js:1
Overwatch=Overwatch
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1163,20 +1255,19 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic
Save\ the\ colony\!\ Your\ crew\ are\ fighting\ and\ new\ life\ forms\ begin\ to\ appear\ in\ the\ canteen.\ You\ are\ somewhere\ in\ the\ Universe\ with\ a\ limited\ amount\ of\ resources,\ a\ corporation\ that\ sent\ you\ into\ space\ awaits\ back\ at\ the\ Earth,\ and\ your\ colonists\ expect\ payment.\ Everyone\ has\ their\ own\ mind,\ so\ remember\ the\ golden\ rule\:\ a\ happy\ crew\ is\ a\ productive\ crew.\ You\ must\ build\ a\ base\ and\ defend\ it\ against\ aliens,\ but\ do\ not\ forget\ about\ your\ crew.\ If\ you\ treat\ them\ well,\ they\ will\ work\ hard\ for\ you.\ In\ Space\ Colony\ your\ career\ and\ life\ depend\ on\ an\ unruly\ team\ that\ wants\ to\ return\ to\ Earth.\ When\ creating\ a\ colony,\ you\ have\ over\ 100\ different\ structures\ to\ choose\ from,\ which\ will\ help\ you\ build\ a\ great\ base\ for\ your\ crew.\ So\ before\ you\ spend\ all\ your\ savings\ on\ iron\ mining\ and\ the\ production\ of\ space\ chickens,\ keep\ in\ mind\ that\ without\ laser\ towers,\ saunas\ and\ restaurants\ no\ one\ will\ want\ to\ work\ for\ you\!=Save the colony\! Your crew are fighting and new life forms begin to appear in the canteen. You are somewhere in the Universe with a limited amount of resources, a corporation that sent you into space awaits back at the Earth, and your colonists expect payment. Everyone has their own mind, so remember the golden rule\: a happy crew is a productive crew. You must build a base and defend it against aliens, but do not forget about your crew. If you treat them well, they will work hard for you. In Space Colony your career and life depend on an unruly team that wants to return to Earth. When creating a colony, you have over 100 different structures to choose from, which will help you build a great base for your crew. So before you spend all your savings on iron mining and the production of space chickens, keep in mind that without laser towers, saunas and restaurants no one will want to work for you\!
#: i18n/tmp/Applications/Science/category.js:1
-Science=Science
+Science=Elm
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:1
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
-Select\ your\ region\:=Select your region\:
+#: Applications/Games/League of Legends/Online/script.js:34
+Select\ your\ region\:=Regionunu se\u00e7\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1754,11 +1895,14 @@ Your\ car\ is\ your\ avatar\ -\ fine\ tune\ your\ ride\ as\ you\ level\ up\ and\
Zip\ Script=Zip Script
#: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1
-always\ offscreen=always offscreen
+always\ offscreen=h\u0259mi\u015f\u0259 ba\u011fl\u0131 ekran
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,17 +1997,17 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
-readtext=readtext
+#: Engines/Wine/Settings/render target lock mode/script.js:11
+readtext=m\u0259tnoxuma
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
regedit=regedit
#: i18n/tmp/Engines/Wine/Plugins/register font/script.js:1
-register\ font=register font
+register\ font=qeydiyyat yaz\u0131 n\u00f6v\u00fc
#: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1
regsvr32=regsvr32
@@ -1863,14 +2022,11 @@ sandbox=sandbox
secur32=secur32
#: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1
-sound\ driver=sound driver
+sound\ driver=s\u0259s s\u00fcr\u00fcc\u00fcs\u00fc
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,11 +2060,15 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
-video\ memory\ size=video memory size
+video\ memory\ size=video yadda\u015f h\u0259cmi
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
-virtual\ desktop=virtual desktop
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
+virtual\ desktop=\u0259yani masa\u00fcst\u00fc
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
vulkanSDK=vulkanSDK
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ca.properties b/i18n/Messages_ca.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_ca.properties
+++ b/i18n/Messages_ca.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_cs.properties b/i18n/Messages_cs.properties
index c30ab8da12..f09a1a385b 100644
--- a/i18n/Messages_cs.properties
+++ b/i18n/Messages_cs.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,11 +64,14 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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
+Accessories=P\u0159\u00edslu\u0161enstv\u00ed
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1
Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -260,15 +275,15 @@ Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strat
Command\ prompt=Command prompt
#: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1
-Configure\ Wine=Configure Wine
+Configure\ Wine=Nastaven\u00ed 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -278,10 +293,16 @@ Crayon\ Physics=Crayon Physics
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
+Custom=Vlastn\u00ed
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
-Custom\ Installer\ Script=Custom Installer Script
+Custom\ Installer\ Script=Vlastn\u00ed instala\u010dn\u00ed script
+
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online
DOOM\ (2016)=DOOM (2016)
#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1
-DOS\ support=DOS support
+DOS\ support=Podpora DOSu
#: 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.
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.
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.
@@ -298,43 +319,55 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Default=V\u00fdchoz\u00ed
#: 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\ –\ whether\ you’re\ 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
+Development=V\u00fdvoj
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:12
-#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1
-#: i18n/tmp/Engines/Wine/Plugins/DirectDraw
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
+Disabled=Neaktivn\u00ed
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+Downloader=Stahova\u010d
+
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
#: Emerald: A Whirlwind Heist/application.js:1
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,12 +403,13 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Enabled=Aktivov\u00e1no
#: i18n/tmp/Applications/Games/Enderal/application.js:1
Enderal=Enderal
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,8 +447,8 @@ 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\!
+#: Engines/Wine/Shortcuts/Wine/script.js:153
+Executable\ {0}\ not\ found\!=Spustiteln\u00fd {0} nebyl nalezen\!
#: 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\!
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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}...
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
+Extracting\ {0}...=Extrahuji {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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta
GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
-Games=Games
+Games=Hry
+
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -523,7 +576,10 @@ GoG\ Script=GoG Script
Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
-Graphics=Graphics
+Graphics=Zobrazen\u00ed
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -609,15 +665,15 @@ In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great
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
+Installer\ Script=Instala\u010dn\u00ed skript
-#: Engines/Wine/Engine/Implementation/script.js:48
-Installing\ version\:\ {0}=Installing version\: {0}
+#: Engines/Wine/Engine/Implementation/script.js:65
+Installing\ version\:\ {0}=Instaluji verzi\: {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}...
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+Installing\ {0}...=Instaluji {0}...
#: i18n/tmp/Applications/Internet/category.js:1
Internet=Internet
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -651,7 +707,7 @@ Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Fo
Join\ the\ rise\ of\ Darth\ Vader’s\ 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
+Kill\ processes=Zab\u00edt proces
#: 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.
@@ -660,7 +716,7 @@ Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Launcher for
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.
+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 je svi\u017en\u00e1 sout\u011b\u017en\u00ed online hra, v n\u00ed\u017e se rychlost a intenzita boj\u016f z RTS m\u00eds\u00ed s tradi\u010dn\u00edmi RPG prvky. Na \u0159ad\u011b boji\u0161\u0165 v rozli\u010dn\u00fdch hern\u00edch re\u017eimech se zde st\u0159et\u00e1vaj\u00ed dva t\u00fdmy mocn\u00fdch \u0161ampion\u016f, z nich\u017e ka\u017ed\u00fd je jin\u00fd a vy\u017eaduje odli\u0161n\u00fd hern\u00ed styl. D\u00edky neust\u00e1le se rozr\u016fstaj\u00edc\u00edmu seznamu \u0161ampion\u016f, \u010dast\u00fdm aktualizac\u00edm a velice \u017eiv\u00e9 sout\u011b\u017en\u00ed sc\u00e9n\u011b nab\u00edz\u00ed hra League of Legends nekone\u010dnou z\u00e1bavu pro hr\u00e1\u010de v\u0161ech \u00farovn\u00ed.
#: i18n/tmp/Applications/Games/Lego Rock Raiders/application.js:1
Lego\ Rock\ Raiders=Lego Rock Raiders
@@ -669,26 +725,29 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
+Local=Lok\u00e1ln\u00ed
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
#: (1.0->1.6)/script.js:1
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -841,17 +913,17 @@ Online\ Installer=Online Installer
Online\ Installer\ Script=Online Installer Script
#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1
-Open\ a\ terminal=Open a terminal
+Open\ a\ terminal=Otev\u0159it termin\u00e1l
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -865,7 +937,7 @@ Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal.
Orwell\:\ Keeping\ an\ Eye\ On\ You=Orwell\: Keeping an Eye On You
#: i18n/tmp/Applications/Other/category.js:1
-Other=Other
+Other=Ostatn\u00ed
#: i18n/tmp/Applications/Games/Overwatch/application.js:1
Overwatch=Overwatch
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1163,24 +1255,23 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic
Save\ the\ colony\!\ Your\ crew\ are\ fighting\ and\ new\ life\ forms\ begin\ to\ appear\ in\ the\ canteen.\ You\ are\ somewhere\ in\ the\ Universe\ with\ a\ limited\ amount\ of\ resources,\ a\ corporation\ that\ sent\ you\ into\ space\ awaits\ back\ at\ the\ Earth,\ and\ your\ colonists\ expect\ payment.\ Everyone\ has\ their\ own\ mind,\ so\ remember\ the\ golden\ rule\:\ a\ happy\ crew\ is\ a\ productive\ crew.\ You\ must\ build\ a\ base\ and\ defend\ it\ against\ aliens,\ but\ do\ not\ forget\ about\ your\ crew.\ If\ you\ treat\ them\ well,\ they\ will\ work\ hard\ for\ you.\ In\ Space\ Colony\ your\ career\ and\ life\ depend\ on\ an\ unruly\ team\ that\ wants\ to\ return\ to\ Earth.\ When\ creating\ a\ colony,\ you\ have\ over\ 100\ different\ structures\ to\ choose\ from,\ which\ will\ help\ you\ build\ a\ great\ base\ for\ your\ crew.\ So\ before\ you\ spend\ all\ your\ savings\ on\ iron\ mining\ and\ the\ production\ of\ space\ chickens,\ keep\ in\ mind\ that\ without\ laser\ towers,\ saunas\ and\ restaurants\ no\ one\ will\ want\ to\ work\ for\ you\!=Save the colony\! Your crew are fighting and new life forms begin to appear in the canteen. You are somewhere in the Universe with a limited amount of resources, a corporation that sent you into space awaits back at the Earth, and your colonists expect payment. Everyone has their own mind, so remember the golden rule\: a happy crew is a productive crew. You must build a base and defend it against aliens, but do not forget about your crew. If you treat them well, they will work hard for you. In Space Colony your career and life depend on an unruly team that wants to return to Earth. When creating a colony, you have over 100 different structures to choose from, which will help you build a great base for your crew. So before you spend all your savings on iron mining and the production of space chickens, keep in mind that without laser towers, saunas and restaurants no one will want to work for you\!
#: i18n/tmp/Applications/Science/category.js:1
-Science=Science
+Science=V\u011bda
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:1
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
-Select\ your\ region\:=Select your region\:
+#: Applications/Games/League of Legends/Online/script.js:34
+Select\ your\ region\:=Vyberte region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
-Settings\ for\ Wine.=Settings for Wine.
+Settings\ for\ Wine.=Nastaven\u00ed WINE\:
#: i18n/tmp/Applications/Games/Hearthstone/application.js:2
Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ the\ fast-paced\ strategy\ card\ game\ that's\ easy\ to\ learn\ and\ massively\ fun.\ Start\ a\ free\ game\ and\ play\ your\ cards\ to\ sling\ spells,\ summon\ creatures,\ and\ command\ the\ heroes\ of\ Warcraft\ in\ duels\ of\ epic\ strategy.=Sheathe your sword, draw your deck, and get ready for Hearthstone - the fast-paced strategy card game that's easy to learn and massively fun. Start a free game and play your cards to sling spells, summon creatures, and command the heroes of Warcraft in duels of epic strategy.
@@ -1189,7 +1280,7 @@ Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\
Shortcut\ Reader=Shortcut Reader
#: i18n/tmp/Engines/Wine/Shortcuts/application.js:2
-Shortcuts\ for\ Wine.=Shortcuts for Wine.
+Shortcuts\ for\ Wine.=Z\u00e1stupce pro WINE.
#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
#: Still Shower Dad/application.js:1
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,12 +1569,12 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
-The\ Wine\ engine.=The Wine engine.
+The\ Wine\ engine.=Modul WINE.
#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1
The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1558,7 +1671,7 @@ Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld
Tomb\ Raider\:\ Underworld\ represents\ a\ new\ advancement\ in\ exploration-based\ gameplay.\ As\ fearless\ adventurer\ Lara\ Croft\ explore\ exotic\ locations\ around\ the\ world,\ each\ designed\ with\ an\ incredible\ attention\ to\ detail\ resulting\ in\ breathtaking\ high-definition\ visual\ fidelity\ that\ creates\ a\ truly\ believable\ world\ and\ delivers\ a\ new\ level\ of\ challenge\ and\ choice.=Tomb Raider\: Underworld represents a new advancement in exploration-based gameplay. As fearless adventurer Lara Croft explore exotic locations around the world, each designed with an incredible attention to detail resulting in breathtaking high-definition visual fidelity that creates a truly believable world and delivers a new level of challenge and choice.
#: i18n/tmp/Engines/Wine/Tools/application.js:2
-Tools\ for\ Wine.=Tools for Wine.
+Tools\ for\ Wine.=N\u00e1stroje pro WINE.
#: i18n/tmp/Applications/Games/Total War Rome II/application.js:1
Total\ War\:\ ROME\ II=Total War\: ROME II
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1677,38 +1806,47 @@ Windows\ version=Windows version
Wine=Wine
#: i18n/tmp/Engines/Wine/Engine/application.js:1
-Wine\ Engine=Wine Engine
+Wine\ Engine=WINE Modul
#: i18n/tmp/Engines/Wine/Plugins/application.js:1
-Wine\ Plugins=Wine Plugins
+Wine\ Plugins=WINE Plugin
#: i18n/tmp/Engines/Wine/Settings/application.js:1
-Wine\ Settings=Wine Settings
+Wine\ Settings=WINE Nastaven\u00ed
#: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1
-Wine\ Shortcut=Wine Shortcut
+Wine\ Shortcut=WINE Z\u00e1stupce
#: i18n/tmp/Engines/Wine/Shortcuts/application.js:1
-Wine\ Shortcuts=Wine Shortcuts
+Wine\ Shortcuts=WINE Z\u00e1stupci
#: i18n/tmp/Engines/Wine/Tools/application.js:1
-Wine\ Tools=Wine Tools
+Wine\ Tools=WINE N\u00e1stroje
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
-Wine\ engine=Wine engine
+Wine\ engine=WINE modul
#: i18n/tmp/Engines/Wine/Engine/Implementation/script.js:1
Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation of Java interface)
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
-Wine\ uninstaller=Wine uninstaller
+Wine\ uninstaller=WINE odinstal\u00e1tor
+
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_da.properties b/i18n/Messages_da.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_da.properties
+++ b/i18n/Messages_da.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_de.properties b/i18n/Messages_de.properties
index 7a8614d779..7f0fb4ed87 100644
--- a/i18n/Messages_de.properties
+++ b/i18n/Messages_de.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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?=Eine reine, immersive Sci-Fi Einzelspieler-Simulation. Tauche ein in eine Welt, die durch DEINE Entscheidungen gepr\u00e4gt wird\! Erkunde, rede, k\u00e4mpfe oder schleiche durch The Churchill Tower im Jahr 2042\! \u00dcberlebst du The Tower?
+#: i18n/tmp/Applications/Games/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.=In Far Cry\u00ae, einem tropischen Inselparadies, h\u00e4lt das B\u00f6se Einzug. Dieser ausgekl\u00fcgelte, detailreiche Action-Shooter \u00fcberschreitet Grenzen des Genres und die neuen Levels sind verbl\u00fcffend.
Marine-Freelancer Jack Carver verflucht den Tag, an dem er einen Fu\u00df auf dieses Eiland setzte. Vor einer Woche bot ihm eine aufdringliche Reporterin namens Valerie eine schier unglaubliche Summe an, damit er sie auf diese unber\u00fchrte Insel begleitete. Kurze nach ihrer Ankunft werden sie jedoch von Artilleriefeuer einer mysteri\u00f6sen Milizentruppe in Empfang genommen.
Das Boot ist zerst\u00f6rt, die Moneten offensichtlich den Bach heruntergegangen und die bezaubernde Valerie verschwunden und Jack sieht sich in der Wildnis der Insel einer Armee von S\u00f6ldnern gegen\u00fcbergestellt und verf\u00fcgt nur \u00fcber einen Revolver und seinem \u00dcberlebenswillen. Aber je weiter er in den \u00fcppigen Dschungel vordringt, desto unwirklicher entwickeln sich die Dinge.
Jack begegnet einem Insider der Miliz und erf\u00e4hrt von den f\u00fcrchterlichen Absichten der S\u00f6ldnertruppe. Er stellt Jack vor eine unbequeme Wahl\: Nimm den Kampf gegen diese t\u00f6dlichen S\u00f6ldner auf oder weihe die gesamte Menschheit durch das hinterlistige Vorhaben eines Wahnsinnigen der ewigen Verdammnis.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Immer offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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.=Im malerischen Puzzlespiel Braid k\u00f6nnen Sie den Fluss der Zeit auf komische und ungewohnte Art und Weise beeinflussen. Reisen Sie durch eine Vielzahl von Welten und l\u00f6sen Sie alle Puzzles, um eine entf\u00fchrte Prinzessin zu retten. In jeder Welt steht Ihnen eine andere Macht zur Verf\u00fcgung, mit welcher Sie den Zeitverlauf beeinflussen k\u00f6nnen. Spulen Sie die Zeit selbst zur\u00fcck und stellen Sie sich Objekten und Zeitzonen, in welchen dies nicht m\u00f6glich ist. Begeben Sie sich in parallel geschaltete Realit\u00e4ten, verlangsamen Sie die Zeit und vieles mehr.
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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 versinkt im Krieg - f\u00fcr Abenteurer und S\u00f6ldner er\u00f6ffnen sich in diesem Land ungeahnte M\u00f6glichkeiten, aber auch gro\u00dfe Gefahren lauern \u00fcberall. Mit Mut und einem starken Schwert kann hier ein Niemand zum gef\u00fcrchteten K\u00e4mpfer werden.
-#: Engines/Wine/Engine/Implementation/script.js:214
+#: Engines/Wine/Engine/Implementation/script.js:414
Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=64bit Executable kann nicht in einem 32bit Wineprefix ausgef\u00fchrt werden.
-#: Utils/Functions/Filesystem/Files/script.js:172
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Dateikonsistenz wird gepr\u00fcft...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ Configure\ Wine=Wine einrichten
#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1
Consortium\:\ The\ Tower=Consortium\: The Tower
-#: Engines/Wine/Plugins/native application/script.js:28
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Konnte Mimetype f\u00fcr Dateiendung "{0}" nicht bestimmen
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Konnte {0} nicht deinstallieren\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Angepasst
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: i18n/tmp/Applications/Development/category.js:1
Development=Entwicklung
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:12
-#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1
-#: i18n/tmp/Engines/Wine/Plugins/DirectDraw
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Laden Sie "{0}" in Origin herunter und schlie\u00dfen Sie es, nachdem "{0}" installiert ist
#: i18n/tmp/Utils/Functions/Net/Download/script.js:1
Downloader=Downloader
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.=Die Emperor Edition ist ein unverzichtbarer Teil von ROME II und umfasst ein verbessertes Politiksystem, verbesserte Geb\u00e4udeketten, neu ausbalancierte Schlachten und verbesserte Grafiken f\u00fcr die Kampagne und Gefechte.
Zus\u00e4tzlich enth\u00e4lt die Emperor Edition alle Inhalte und Funktionen, die f\u00fcr ROME II seit der Ver\u00f6ffentlichung im September 2013 bereitgestellt wurden. Dazu geh\u00f6ren die Twitch.TV-Integration, eine Touchscreen-Steuerung, neue spielbare Fraktionen und Einheiten, Mac-Kompatibilit\u00e4t und vieles mehr.
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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.=Machen Sie sich bereit f\u00fcr einen tropischen Powertrip\! Werden Sie zu einem Diktator auf einer fernen Insel w\u00e4hrend des Kalten Kriegs. Verf\u00fchren, \u00fcberzeugen, versch\u00fcchtern, unterdr\u00fccken oder betr\u00fcgen Sie Ihre Untergebenen, um an der Macht zu bleiben\! Werden Sie ein gro\u00dfz\u00fcgiger Anf\u00fchrer sein?
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Fehler beim Pr\u00fcfen der Checksumme f\u00fcr "{0}".\n\nErwartet \= {1}\nTats\u00e4chlich \= {2}
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1
@@ -408,7 +447,7 @@ 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.=Hast du dich schon mal gefragt, wie es sich wohl anf\u00fchlt, eine Quadrillion Schaden pro Sekunde zu verursachen? Jetzt kannst du es herausfinden\! Begib dich auf deine Mission, um mal richtig viel Schaden anzurichten\!
-#: Engines/Wine/Shortcuts/Wine/script.js:120
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Ausf\u00fchrbare Datei {0} nicht gefunden\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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).=Erleben Sie wie es ist Batman zu sein und stellen Sie sich Gothams gef\u00e4hrlichsten Schurken. Erforschen Sie jeden Zentimer des Arkham Asylum und streifen Sie ungehindert auf der ber\u00fcchtigten Insel umher.
Das von Kritikern gefeierte Batman\: Arkham Asylum kehrt in einer \u00fcberarbeiteten Spiel des Jahres Edition mit 4 Extra 'Challenge Maps' zur\u00fcck. Diese zus\u00e4tzlichen Maps sind Crime Alley; Scarecrow Nightmare; Totally Insane und Nocturnal Hunter (diese beiden vom 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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
Extracting\ {0}...=Extrahiere {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 folgt den Schritten des legend\u00e4ren Mentors Altair, auf einer gef\u00e4hrlichen Reise voller Entdeckungen und Wendungen.
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
DRAGON BALL XENOVERSE besucht dank deines individuellen Avatars, der an der Seite von Trunks und vielen anderen Charakteren k\u00e4mpft, ber\u00fchmte K\u00e4mpfe aus der Serie erneut. Wird die St\u00e4rke dieser Partnerschaft ausreichen, um Siege zu erringen und die Dragonball-Geschichte, wie wir sie kennen, zu korrigieren? Zu den Features des Spiels geh\u00f6ren au\u00dferdem die geheimnisvolle Tokitoki-Stadt, neue Spielmechaniken und Charakter-Animationen sowie viele weitere tolle Neuheiten, die schon bald enth\u00fcllt werden\!
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:2
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:2
Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Ein Tomb Raider 2 Remake von Nicobass.
#: i18n/tmp/Applications/Games/Far Cry/application.js:1
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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 ist DER wahnsinnige Cyber-Shooter. Far Cry\u00ae 3\: Blood Dragon ist angesiedelt auf einer bizarren Open World-Insel, wo das B\u00f6se allgegenw\u00e4rtig ist. Willkommen in einer Vision der Zukunft aus Sicht der 80er. Wir schreiben das Jahr 2007 und Sie sind Sergeant Rex Colt, ein Mark IV Cyber Commando. Ihre Mission\: Schnappen Sie sich das M\u00e4dchen, t\u00f6ten Sie die B\u00f6sewichte und retten Sie die Welt\!
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=Datei-Extraktoren
@@ -474,14 +518,20 @@ 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 ist ein adrenalingeladenes, explosives Rennspiel mit spektakul\u00e4ren Effekten und Grafiken sowie innovativen Spielmechaniken, das jede Menge Spa\u00df garantiert\!
+#: i18n/tmp/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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.=\u00dcber Jahrhunderte wurde der Planet Hyllis von einer unbarmherzigen Alienrasse angegriffen. Skeptisch \u00fcber die Unf\u00e4higkeit der Regierung die Angreifer abzuwehren, versucht die rebellische Reporterin Jade jetzt die Wahrheit heraus zu finden.
-#: Engines/Wine/Settings/mouse warp override/script.js:8
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Erzwingen
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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.=Greifen Sie zur Waffe und folgen Sie den Pfaden eines echten Jediritters. Jedi Knight\: Jedi Academy ist der neueste Teil der hoch gefeierten Jedi Knight Serie. Sie begeben sich in die Rolle eines neuen Sch\u00fclers, der unbedingt die Kampftechniken vom Jedimaster Luke Skywalker erlernen m\u00f6chte. Kommunizieren Sie mit den ber\u00fchmten Star Wars Charakteren in vielen klassischen Star Wars St\u00e4tten. Es liegt ganz allein an Ihnen\: entscheiden Sie sich letztendlich f\u00fcr das Gute und daf\u00fcr, auf der Seite des Lichts zu k\u00e4mpfen oder w\u00e4hlen Sie die Macht und das B\u00f6se der dunklen Seite?
#: i18n/tmp/Applications/Games/Spore/application.js:2
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Spiele
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Grafik
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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 ist ein Tower Platformer, bei dem das Ziel des Spielers ist, von Ebene zu Ebene zu springen und dabei so hoch wie m\u00f6glich zu kommen ohne abzust\u00fcrzen.
-#: Applications/Games/Total War Rome II/Steam/script.js:21
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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.=Wenn Sie w\u00e4hrend der Installation einen internen Fehler von DirectX erhalten, l\u00f6schen Sie alle .cab Dateien in __Installer/directx/redist.
#: Applications/Games/Mass Effect/Steam/script.js:11
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installiere {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer ist ein alter Webbrowser. Sie sollten ihn nur verwenden, um eine Website auf ihre Kompatibilit\u00e4t zu testen. Nutzen Sie ihn nicht, um im Internet zu surfen.
#: i18n/tmp/Utils/Functions/Net/Resource/script.js:1
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
He\ must\ journey\ into\ Italy’s\ 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.=Ezios erbitterter Kampf gegen den m\u00e4chtigen Templer-Orden geht in die n\u00e4chste Runde. Diesmal f\u00fchrt es den legend\u00e4ren Meister-Assassinen nach Rom. Dort plant Ezio, das \u00dcbel direkt an seiner Wurzel zu bek\u00e4mpfen.
Doch Gier und Korruption haben die Herrschaft \u00fcber die gewaltige Metropole an sich gerissen. Um die korrupten Tyrannen der Hauptstadt zu besiegen, braucht Ezio mehr als nur St\u00e4rke. Auch seine F\u00fchrungsqualit\u00e4ten sind gefragt. Die gesamte Bruderschaft der Assassinen steht Ezio treu zur Seite und erwartet seine Befehle. Nur wenn die Assassinen wie ein Mann zusammenarbeiten, k\u00f6nnen sie ihre Todfeinde bezwingen.
Erstmals bietet ein Spiel der Assassin\u2019s Creed-Reihe einen Mehrspieler-Modus. Hier kann der Spieler aus zahlreichen Charakteren seinen pers\u00f6nlichen Favoriten w\u00e4hlen. Jede dieser Figuren verf\u00fcgt \u00fcber individuelle Waffenkenntnisse und Assassinen-Fertigkeiten.
Es ist Zeit, der Bruderschaft beizutreten.
#: 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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Lokal
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse Warp Override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=B\u00fcroprogramme
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.=Es kann sein, dass das Spiel beim ersten Starten nicht in den Vollbildmodus wechselt. Sollte dies der Fall sein, w\u00e4hlen Sie in den Optionen als Aufl\u00f6sung 1280x960. Best\u00e4tigen Sie die folgende Abfrage, das Spiel zu beenden, mit "Ja". Wenn Sie das Spiel nun nochmals starten, sollte ein Fenster erscheinen, in dem Sie eine Aufl\u00f6sung passend zu Ihrem Bildschirm w\u00e4hlen k\u00f6nnen.
-#: 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.=Sobald die Fortschrittsanzeige geschlossen wird sollte ein Fenster erscheinen, das anzeigt, dass die Installation abgeschlossen ist. Passiert dies nicht, sollten Sie den Prozess, der als Name einen Punkt hat, beenden.
-
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ Online\ Installer\ Script=Online Installer Script
#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1
Open\ a\ terminal=Terminal \u00f6ffnen
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ license\ by\ smashing\ through\ billboards,\ jumping\ ramps,\ and\ sustaining\ crashes\ with\ the\ improved\ damage\ system.=Burnout Paradise The Ultimate Box bringt Ihnen das beste Konosolen Rennspiel von 2008, Burnout Paradise auf den PC, mit vielen gro\u00dfartigen \u00c4nderungen und Verbesserungen, wie zum Beispiel Motorr\u00e4der und aufregenden neuen Onlinemodi und Herausforderungen.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Bitte schlie\u00dfen Sie Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Bitte stellen Sie sicher, dass winbind installiert ist, bevor Sie fortfahren.
-#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Bitte stellen Sie sicher, dass Sie den neuesten Treiber (mindestens 415.25 f\u00fcr NVIDIA und mesa 19 f\u00fcr AMD) installiert haben oder dieses Spiel wird nicht korrekt funktionieren.
-#: Engines/Wine/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Bitte geben Sie einen Namen f\u00fcr Ihre Anwendung ein.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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.=Bitte folgen Sie den Schritten der Steam-Installation. Warten Sie anschlie\u00dfend bis das Steam-Update fertiggestellt wurde, loggen Sie sich ein und schlie\u00dfen Steam vollst\u00e4ndig, sodass die Installation von "{0}" fortgesetzt werden kann.
-#: Engines/Wine/Verbs/Uplay/script.js:15
+#: Engines/Wine/Verbs/Uplay/script.js:25
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.=Bitte folgen Sie den Schritten der Uplay Installation.\n\nEntfernen Sie den Haken bei "Uplay ausf\u00fchren" oder schlie\u00dfen Sie Uplay nach der Installation, damit die Installation von "{0}" fortgesetzt werden kann.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:58
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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.=Bitte folgen Sie den Schritten der Uplay Installation.\n\nEntfernen Sie den Haken bei "Uplay ausf\u00fchren" oder schlie\u00dfen Sie Uplay nach der Installation, damit die Installation von "{0}" fortgesetzt werden kann.
-#: Engines/Wine/QuickScript/GoG Script/script.js:41
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Bitte loggen Sie sich mit Ihrem GoG.com Account ein, damit wir das Spiel f\u00fcr Sie herunterladen k\u00f6nnen\:
-#: Engines/Wine/QuickScript/Zip Script/script.js:45
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Bitte w\u00e4hlen Sie die .zip Datei aus.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Bitte w\u00e4hlen Sie die Download-URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Bitte w\u00e4hlen Sie die ausf\u00fchrbare Datei aus.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Bitte w\u00e4hlen Sie die Installationsdatei aus.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Bitte w\u00e4hlen Sie die Installationsdatei aus.\nSie k\u00f6nnen diese von https\://www.elster.de/elfo_down.php herunterladen.
-#: Engines/Wine/Verbs/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Bitte w\u00e4hlen Sie die Wine-Architektur.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Bitte w\u00e4hlen Sie die Wine-Distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Bitte w\u00e4hlen Sie die Wine-Version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Bitte warten Sie bis Steam den Download beendet hat...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Bitte warten Sie bis Uplay den Download beendet hat...
-#: Utils/Functions/Net/Resource/script.js:80
-#: Utils/Functions/Net/Download/script.js:108
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
Please\ wait\ while\ {0}\ is\ downloaded...=Bitte warten Sie w\u00e4hrend {0} heruntergeladen wird...
-#: Utils/Functions/Filesystem/Extract/script.js:57
-#: Utils/Functions/Filesystem/Extract/script.js:133
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Bitte warten Sie w\u00e4hrend {0} extrahiert wird...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Bitte warten Sie w\u00e4hrend {0} installiert wird...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
Please\ wait\ while\ {0}\ is\ uninstalled...=Bitte warten Sie w\u00e4hren {0} deinstalliert wird...
-#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74
-#: Engines/Wine/Verbs/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Bitte warten...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Der Prefix scheint 32bit zu sein
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts f\u00fcr Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Kommandieren Sie eine Multinationale Eliteeinheit aus Spezialisten gegen geheime Terrorkommandos. In Tom Clancy's Rainbox Six\: Raven Shield, dem dritten Teil der bekannten Rainbow Six Serie, muss das Team Rainbow sich einer geheimen und global operierenden Terror Organisation stellen und jagt einen geheimnisvollen Feind. Kommandieren Sie Rainbow in einem Rennen gegen die Zeit - an Orten wie England, Norwegen, der Karibik und Rio de Janeiro mitten im Karneval - um einen Verr\u00fcckten und sein Weltuntergangsszenario zu stoppen.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger ist ein First Person Shooter (FPS) Puzzle Spiel. Kannst du das System infiltrieren und zerst\u00f6ren?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registriere {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registryeditor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Erleben Si
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music.
Audiosurf ist ein Puzzel-Rennspiel, in dem Sie Ihre eigene Muskisammlung "absurfen" k\u00f6nnen. Die Streckenf\u00fchrung, die Geschwindigkeit und die Stimmung jeder Rennstrecke spiegeln die Charakteristika des jeweiligen Songs dar. Sie erhalten Punkte, indem Sie gleichfarbige Bl\u00f6cke auf der Strecke zusammenf\u00fcgen. Spielen Sie gegen andere Online, um f\u00fcr Ihren Lieblingssong die h\u00f6chste Punktzahl zu erreichen.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Lernprogramme
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=W\u00e4hlen Sie Ihre Region f\u00fcr den Patch (1.0 nach 1.60) aus.
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=W\u00e4hlen Sie Ihre Region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=In einer Welt, in der die Menschen lange verschwunden sind und Monster herrschen, spielt Earth Eternal - Valkal's Shadow, eine Fan-Fortsetzung von Earth Eternal, einem eingestellten MMORPG von Sparkplay Media. Valkal's Shadow basiert auf version 0.8.6, jedoch mit vielen neuen Inhalten und Funktionen, darunter zwei neue Gebiete, viele neue Dungeons und unz\u00e4hlige neue Quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty ist ein milit\u00e4risches Science-Fiction Echtzeitstrategiespiel, das von Blizzard Entertainment entwickelt und gepublished wurde.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam ist eine Internet-Vertriebsplattform f\u00fcr Computerspiele, Software, Filme und Serien, die von der Valve Corporation entwickelt und betrieben wird.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Feste Darstellungsreihenfolge
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter ist ein geheimnisvolles, storybasiertes First-Person Spiel.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=Der Container {0} wird nicht mehr verwendet.\nM\u00f6chten Sie ihn l\u00f6schen?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=Die brandneue Rocksmith 2014 Edition ist gr\u00f6\u00dfer, besser und schneller denn je. Von Grund auf erneuert, erlebst du stark verbesserte Features, ein neues Aussehen, flexiblere und tiefergehende \u00dcbungswerkzeuge, neue Techniken und Stimmungen, \u00fcber 50 neue Hits und vieles mehr.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=Der Spielablauf in Toki Tori ist ein Mix zweier Genres. W\u00e4hrend alles wie in einem Plattformer aussieht, ist dieses Spiel im Kern ein Puzzle-Spiel. Um im Spiel voranzukommen m\u00fcssen Sie in jedem Level ein Ei mit Hilfe einiger Werkzeuge aufsammeln. Die Spieler m\u00fcssen genauestens Achtgeben und im voraus planen, wenn sie Werkzeuge wie z.B. den Telewarp, Freeze-o-Matic und InstantRock\u2122 nutzen. Zus\u00e4tzliche Werkzeuge werden schrittweise eingef\u00fchrt w\u00e4hrend die Spieler in \u00fcber 80+ Level und vier einzigartigen Welten voranschreiten.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=Wir schreiben das Jahr 1715. Piraten herrschen \u00fcber die Karibik und haben dort ihre eigene, gesetzlose Republik gegr\u00fcndet, in der Korruption, Gier und Grausamkeit an der Tagesordnung sind.Einer dieser Gesetzlosen ist der ungest\u00fcme, junge Kapit\u00e4n Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=Dieses Spiel ben\u00f6tigt einen Kopierschutzpatch. Es k\u00f6nnte in ihrem Land illegal sein, den Kopierschutz zu patchen. Sie m\u00fcssen den Patch daher selbst einspielen.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Einzigartige Ereignisse bringen dich in die Hallen einer lange vergessenen Gruft. Das einzige Fluchtmittel ist in einem Steinsockel eingeschlossen und anbei findest du eine Notiz von deinem geheimnisvollen Verb\u00fcndeten.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay ist Ubisoft's Portal f\u00fcr PC-Spiele.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils f\u00fcr Apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils f\u00fcr die Interaktion mit dem Da
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils f\u00fcr die Interaktion mit dem Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs f\u00fcr Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Willkommen bei Unholy Heights, einer Mischung aus Tower Defense und Apartmentmanagementsimulation\! Der Teufel hat ein Wohnhaus in ein Mietshaus nur f\u00fcr Monster umgewandelt und hat gro\u00dfe Pl\u00e4ne f\u00fcr die Zukunft. Locke Monster in dein Haus, verlange von ihnen Miete und halte sie gl\u00fccklich durch den Kauf von Einrichtungsgegenst\u00e4nden. Ungl\u00fccklicherweise haben Helden von dem Plan mitbekommen und werden vor nichts Halt machen bevor sie den Teufel vernichtet haben. Klopfe an die T\u00fcr von Bewohnern um sie zum Kampf zu rufen, schlie\u00dfe Helden in gemeinen Scherenformationen und f\u00fchre deine Truppen zum Sieg. Monster finden Arbeit, verlieben sich, bekommen Kinder und \u00fcbergehen sogar ihre Mietzahlungen. Halte sie gl\u00fccklich oder du gehst das Risiko einen niemanden zu haben der f\u00fcr die K\u00e4mpft wenn Helden anklopfen. Aber sei nicht zu weich\: es sind immer vielversprechende B\u00f6sewichte unterwegs die gerne einziehen m\u00f6chten, daher schmei\u00dfe Schmarotzer raus solange die Zeit reif ist\! Ein Vermieter zu sein ist ein schwieriger Beruf, aber es kann nicht schwieriger sein all die H\u00f6lle zu leiten... richtig?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=Wenn Origin startet, werden Sie eine Fehlermeldung erhalten ("Die Aktualisierung konnte nicht abgeschlossen werden"). Dies ist kein Problem. Schlie\u00dfen Sie einfach das Popup-Fenster.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=Bei der Installation der Indeo Codecs m\u00fcssen Sie die benutzerdefinierte Installationsart ausw\u00e4hlen. Danach entfernen Sie den Haken bei "DirectShow Filter" und "Indeo 5 Netscape Browser Extension". Anderenfalls wird die Installation fehlschlagen.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=W\u00e4hlen Sie "Ja", wenn Sie gefragt werden, ob DirectX Media installiert werden soll. W\u00e4hlen Sie "Nein" bei DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Welche Sprachversion m\u00f6chten Sie installieren?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Werkzeuge
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine Engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine Uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Skyrim wurde mit mehr als als 200 "Spiel des Jahres"-Auszeichnungen pr\u00e4miert, die Skyrim Special Edition erweckt den epischen Fantasy-Meilenstein mit verbl\u00fcffender Detailf\u00fclle zu neuem Leben. Die Special Edition enth\u00e4lt das Spiel samt Add-ons und bietet neue Features wie \u00fcberarbeitete Grafiken und Effekte, volumetrische Strahlenb\u00fcschel, dynamische Tiefensch\u00e4rfe, Screen Space Reflections und einiges mehr, und gibt auch Konsolenspielern Zugriff auf PC-Mods. Neue Quests, Umgebungen, Charaktere, Dialoge, R\u00fcstungen, Waffen und mehr \u2013 dank Mods sind Ihrem Spielerlebnis keine Grenzen gesetzt.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=Wir schreiben das Jahr 2047. Ein gigantischer, nuklearer Feuerball explodiert hoch am Nachthimmel und l\u00e4utet den dramatischen Beginn des Dritten Tiberium Kriegs ein und zeitigt die Wiederkehr des revolution\u00e4rsten RTS-Franchise aller Zeiten.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=Sie k\u00f6nnen das Spiel fl\u00fcssiger machen, indem Sie dieser Anleitung folgen\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=Sie entscheiden \u00fcber Ihre eigene Einsatzrolle in der Welt von Brink bei Ihrem Kampf um die letzte Bastion der Menschheit\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=Sie nehmen an dem altert\u00fcmlichen, traditionellen Spiel Druidenfu\u00dfball teil.
@@ -1759,6 +1900,9 @@ always\ offscreen=immer offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=Schriftarten
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=Multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=Native Anwendung
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=feste Darstellungsreihenfolge
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} Anwendungen k\u00f6nnen Probleme haben, wenn die Windows-Version nicht auf "win2003" eingestellt ist
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 ist ein Arcade Top-Down Shooter mit Horde-Survival Gameplay in einer einzigartigen, atmosph\u00e4rischen Umgebung mit fesselnden Gameplay Elementen. Das Ganze kann auch kooperativ gespielt werden. Sie sind ein No-Nonsense Typ, der mit einer Taschenlampe und einer Waffe ausger\u00fcstet ist. Irgendwie haben Sie es geschafft, die Invasion einer gnadenlosen Alienspezies (einer von der Art, die sich von menschlichen Gehirnen ern\u00e4hrt) zu \u00fcberleben. Es sieht nicht gut aus als sie durch die Stadt und andere Orte wandern, \u00fcberall ist Chaos\! Sie suchen nach Ausr\u00fcstung und Waffen, um zu \u00fcberleben, als pinkes Licht emittierende Aliens versuchen, Sie um die Ecke zu bringen und Ihr Gehirn zu fressen. Sie erkennen, dass nur eins zu tun bleibt\: einen neuen Highscore erreichen und sterben wie ein Badass.
-
diff --git a/i18n/Messages_el.properties b/i18n/Messages_el.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_el.properties
+++ b/i18n/Messages_el.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_es.properties b/i18n/Messages_es.properties
index 922b0a283f..722a8b7a6a 100644
--- a/i18n/Messages_es.properties
+++ b/i18n/Messages_es.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,11 +64,14 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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
+Accessories=Accesorios
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1
Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -103,10 +109,10 @@ Anno\ 2070=Anno 2070
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
+App\ Resources=Recursos de la App
#: i18n/tmp/Utils/Functions/Apps/application.js:1
-App\ Utils=App Utils
+App\ Utils=Utilidades de Aplicaciones
#: 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\!
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -166,7 +175,7 @@ Batman™\:\ Arkham\ Origins\ is\ the\ next\ installment\ in\ the\ blockbuster\
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. 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\ –\ but\ at\ the\ expense\ of\ your\ Sims'\ health\ as\ pollution\ spreads.\ Implement\ green\ technology\ and\ improve\ your\ Sims’\ 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. 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.
+Because\ we\ are\ nostalgic\ people.=Porque somos personas nost\u00e1lgicas.
#: 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\!
@@ -200,7 +209,7 @@ Black\ Mesa=Black Mesa
#: i18n/tmp/Applications/Games/Blizzard app/application.js:1
#: app/Online/script.js:1
-Blizzard\ app=Blizzard app
+Blizzard\ app=Aplicaci\u00f3n Blizzard
#: i18n/tmp/Applications/Games/Borderlands/application.js:1
Borderlands=Borderlands
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,11 +239,14 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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...
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
+Checking\ file\ consistency...=Comprobando coherencia de archivo...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
ChromaGun=ChromaGun
@@ -257,19 +272,19 @@ Command\ and\ Conquer\ -\ Tiberium\ Wars=Command and Conquer - Tiberium Wars
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
+Command\ prompt=Cursor de l\u00ednea de comandos
#: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1
-Configure\ Wine=Configure Wine
+Configure\ Wine=Configurar 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
-Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
+#: Engines/Wine/Engine/Object/script.js:190
+Could\ not\ uninstall\ {0}\!=No se pudo desinstalar {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
Crayon\ Physics=Crayon Physics
@@ -278,10 +293,16 @@ Crayon\ Physics=Crayon Physics
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
+Custom=Personalizar
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
-Custom\ Installer\ Script=Custom Installer Script
+Custom\ Installer\ Script=Script de instalaci\u00f3n personalizado
+
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK puede no funcionar correctamente en macOS. Esto depende del soporte de la Api de Metal y el grado de avance de la capa de compatibilidad MoltenVK
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online
DOOM\ (2016)=DOOM (2016)
#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1
-DOS\ support=DOS support
+DOS\ support=Compatible con DOS
#: 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.
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.
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.
@@ -298,43 +319,55 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Default=Por defecto
#: 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\ –\ whether\ you’re\ 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
+Development=Desarrollo
-#: 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/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/DirectDraw
+DirectDraw\ renderer=Renderizado DirectDraw
-#: 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/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
+Disabled=Desactivado
-#: 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
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
+Download\ "{0}"\ in\ Origin\ and\ shut\ it\ down\ once\ "{0}"\ is\ installed=Descargar "{0}" en Origen y cerrarlo una vez que "{0}" est\u00e9 instalado
#: i18n/tmp/Utils/Functions/Net/Download/script.js:1
-Downloader=Downloader
+Downloader=Descargador
+
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
#: Emerald: A Whirlwind Heist/application.js:1
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,12 +403,13 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Enabled=Habilitado
#: i18n/tmp/Applications/Games/Enderal/application.js:1
Enderal=Enderal
@@ -384,11 +420,14 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: 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}
+#: Utils/Functions/Net/Download/script.js:155
+Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Error al calcular la suma de verificaci\u00f3n para "{0}". \n\nEsperado \= {1}\nActual \= {2}
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1
Ether\ One\ Redux=Ether One Redux
@@ -408,8 +447,8 @@ 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\!
+#: Engines/Wine/Shortcuts/Wine/script.js:153
+Executable\ {0}\ not\ found\!=\u00a1No se ha encontrado el ejecutable {0}\!
#: 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\!
@@ -417,29 +456,28 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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}...
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
+Extracting\ {0}...=Extrayendo {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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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/Tomb Raider: The Dagger Of Xian/application.js:2
+Fan\ Game\ Tomb\ Raider\ 2\ Remake\ by\ Nicobass.=Fan Game Tomb Raider 2 Remake por Nicobass.
#: i18n/tmp/Applications/Games/Far Cry/application.js:1
Far\ Cry=Far Cry
@@ -453,20 +491,26 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Obteniendo versiones disponibles de Wine...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
-File\ Extractors=File Extractors
+File\ Extractors=Extractores de archivo
#: i18n/tmp/Utils/Functions/Filesystem/Files/script.js:1
-File\ Utilities=File Utilities
+File\ Utilities=Utilidades de archivo
#: i18n/tmp/Utils/Functions/Filesystem/application.js:1
-Filesystem\ Utils=Filesystem Utils
+Filesystem\ Utils=Utilidades sistema de archivos
#: 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
+First\ installment\ of\ The\ Elder\ Scrolls=Primera instalaci\u00f3n de The Elder Scrolls
#: i18n/tmp/Applications/Games/FlatOut/application.js:1
FlatOut=FlatOut
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Suavizado de fuentes
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Suavizado de fuentes
+
#: 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.
+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.=Durante siglos, el planeta Hyllis ha sido bombardeado por una carrera alien\u00edgena implacable. La incapacidad esc\u00e9ptica de su gobierno para repeler a los invasores, un reportero de acci\u00f3n rebelde llamado Jade se propone capturar la verdad.
-#: Engines/Wine/Settings/mouse warp override/script.js:8
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -491,17 +541,17 @@ From\ a\ single\ cell\ to\ a\ galactic\ deity,\ develop\ your\ creation\ in\ the
From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Juarez®\ 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’s\ 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
+Functions=Funciones
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
-GLSL\ support=GLSL support
+#: Engines/Wine/Settings/GLSL/script.js:17
+GLSL\ support=Soporte GLSL
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
#: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1
@@ -514,16 +564,22 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta
GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
-Games=Games
+Games=Juegos
+
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
-GoG\ Script=GoG Script
+GoG\ Script=Script GoG
#: i18n/tmp/Applications/Games/Goodbye Deponia/application.js:1
Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
-Graphics=Graphics
+Graphics=Gr\u00e1ficos
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Escala de grises
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -584,7 +640,7 @@ If\ you\ have\ sound\ issues,\ please\ edit\ the\ BIOEngine.ini\ and/or\ BaseEng
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.
+ImgBurn\ is\ a\ lightweight\ CD\ /\ DVD\ /\ HD\ DVD\ /\ Blu-ray\ burning\ application.=ImgBurn es una aplicaci\u00f3n de grabaci\u00f3n de CD / DVD / HD / Blu-ray.
#: i18n/tmp/Applications/Games/Age of Empires III: Complete
#: Collection/application.js:2
@@ -609,15 +665,15 @@ In\ a\ time\ of\ chaotic\ upheaval,\ the\ player\ takes\ the\ role\ of\ a\ great
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
+Installer\ Script=Script de instalaci\u00f3n
-#: Engines/Wine/Engine/Implementation/script.js:48
-Installing\ version\:\ {0}=Installing version\: {0}
+#: Engines/Wine/Engine/Implementation/script.js:65
+Installing\ version\:\ {0}=Instalando versi\u00f3n\: {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}...
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+Installing\ {0}...=Instalando {0}...
#: i18n/tmp/Applications/Internet/category.js:1
Internet=Internet
@@ -628,12 +684,12 @@ 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. 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. You may need it if you want to test a website compatibility, you should not use it to navigate.
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
+Internet\ Explorer\ is\ an\ old\ web\ browser. You\ may\ need\ it\ if\ you\ want\ to\ test\ a\ website\ compatibility,\ you\ should\ not\ use\ it\ to\ navigate.=Internet Explorer es un navegador web antiguo. Puede que lo necesites si deseas probar cierta compatibilidad de un sitio web, aunque no deber\u00edas usarlo para navegar.
#: i18n/tmp/Utils/Functions/Net/Resource/script.js:1
-Internet\ Resource=Internet Resource
+Internet\ Resource=Recursos de Internet
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:1
@@ -651,10 +707,10 @@ Jedi\ Knight\:\ Dark\ Forces\ II\ picks\ up\ where\ the\ award-winning\ Dark\ Fo
Join\ the\ rise\ of\ Darth\ Vader’s\ 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
+Kill\ processes=Terminar procesos
#: 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.
+Launcher\ for\ Unreal\ Engine,\ Unreal\ Tournament,\ Paragon\ etc.=Lanzador para Unreal Engine, Unreal Tournament, Paragon etc.
#: i18n/tmp/Applications/Games/League of Legends/application.js:1
League\ of\ Legends=League of Legends
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -702,10 +761,10 @@ Local\ (Demo)=Local (Demo)
Local\ (Legacy)=Local (Legacy)
#: i18n/tmp/Applications/Custom/LocalInstaller/application.js:1
-Local\ Installer=Local Installer
+Local\ Installer=Instalador local
#: i18n/tmp/Engines/Wine/QuickScript/Local Installer Script/script.js:1
-Local\ Installer\ Script=Local Installer Script
+Local\ Installer\ Script=Script de instalaci\u00f3n local
#: i18n/tmp/Applications/Games/Borderlands/application.js:2
Lock,\ Load,\ &\ Face\ the\ Madness
Get ready for the mind blowing insanity\! Play as one of four trigger-happy mercenaries and take out everything that stands in your way\!
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.
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -729,13 +794,13 @@ Michel\ Ancel,\ the\ celebrated\ creator\ of\ Rayman®,\ Beyond\ Good\ &\ Evil®
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.
+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 es una versi\u00f3n de Microsoft Office, una suite de productividad para Microsoft Windows, que es el sucesor de 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.
+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 es una versi\u00f3n de Microsoft Office, una suite de productividad para Microsoft Windows.
#: i18n/tmp/Applications/Graphics/Microsoft Paint/application.js:1
Microsoft\ Paint=Microsoft Paint
@@ -744,12 +809,12 @@ Microsoft\ Paint=Microsoft Paint
Mirror's\ Edge™=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\!
+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\!=M\u00e1s caos, m\u00e1s destrucci\u00f3n, m\u00e1s Rufus. \u00a1No uno, no dos, sino tres Rufus causan todo tipo de alocado caos en la esperada aventura de la comedia Goodbye Deponia\!
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,11 +826,11 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
-Net\ Utils=Net Utils
+Net\ Utils=Utilidades de red
#: 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\!
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No se especific\u00f3 ning\u00fan modo de suavizado de fuente\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -780,89 +848,96 @@ Notepad++=Notepad++
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.
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.
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.
Source\: http\://notepad-plus.sourceforge.net/uk/site.htm
#: i18n/tmp/Applications/Office/category.js:1
-Office=Office
+Office=Oficina
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
+Online=En l\u00ednea
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
#: (Demo)/script.js:1
-Online\ (Demo)=Online (Demo)
+Online\ (Demo)=En l\u00ednea (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
-Online\ (Legacy)=Online (Legacy)
+Online\ (Legacy)=En l\u00ednea (Legacy)
+
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=En l\u00ednea (Prueba)
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
-Online\ Installer=Online Installer
+Online\ Installer=Instalador en l\u00ednea
#: i18n/tmp/Engines/Wine/QuickScript/Online Installer Script/script.js:1
-Online\ Installer\ Script=Online Installer Script
+Online\ Installer\ Script=Script de instalaci\u00f3n en l\u00ednea
#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1
-Open\ a\ terminal=Open a terminal
+Open\ a\ terminal=Abrir una terminal
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
+Origin\ Script=Script de Origin
#: i18n/tmp/Applications/Games/Origin/application.js:2
-Origin\ is\ EA's\ PC\ games\ portal.=Origin is EA's PC games portal.
+Origin\ is\ EA's\ PC\ games\ portal.=Origin es el portal de juegos de PC de EA.
#: 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
+Other=Otros
#: i18n/tmp/Applications/Games/Overwatch/application.js:1
Overwatch=Overwatch
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,142 +961,157 @@ 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.
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Instalador simple
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
+Please\ close\ Uplay.=Por favor cierre 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.
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
+Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Por favor, aseg\u00farese de que winbind est\u00e1 instalado antes de continuar.
-#: 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.
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (415.25\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ this\ game\ will\ not\ work.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (415.25 m\u00ednimo para NVIDIA y mesa 19 para AMD) o de lo contrario este juego no funcionar\u00e1.
-#: Engines/Wine/Verbs/DXVK/script.js:21
-Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (418.30 m\u00ednimo para NVIDIA y mesa 19 para AMD) o de lo contrario D9VK podr\u00eda no funcionar correctamente.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/DXVK/script.js:51
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Por favor aseg\u00farese de que tiene los \u00faltimos controladores (418.30 m\u00ednimo para NVIDIA y la mesa 19 para AMD) o de lo contrario DXVK no puede funcionar correctamente.
+
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: 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/Installer Script/script.js:22
+Please\ enter\ the\ name\ of\ your\ application.=Por favor, introduzca el nombre de su aplicaci\u00f3n.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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/GoG Script/script.js:44
+Please\ login\ to\ your\ GoG.com\ account\ so\ that\ we\ can\ download\ the\ game\ for\ you\:=Por favor, inicia sesi\u00f3n en tu cuenta de GoG.com para que podamos descargar el juego para ti\:
+
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
+Please\ select\ the\ .zip\ file.=Por favor, seleccione el archivo .zip.
-#: 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:64
+Please\ select\ the\ SP3\ file.=Por favor, seleccione el archivo SP3.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
-Please\ select\ the\ SP3\ file.=Please select the SP3 file.
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Por favor, seleccione la distribuci\u00f3n de wine.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
-Please\ select\ the\ download\ URL.=Please select the download URL.
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
+Please\ select\ the\ download\ URL.=Por favor, seleccione la URL de descarga.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
-Please\ select\ the\ executable.=Please select the executable.
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
+Please\ select\ the\ executable.=Por favor, seleccione el ejecutable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
-Please\ select\ the\ installation\ file.=Please select the installation file.
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
+Please\ select\ the\ installation\ file.=Por favor, seleccione el archivo de instalaci\u00f3n.
-#: 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.
+#: Applications/Office/ElsterFormular/Online/script.js:12
+Please\ select\ the\ installation\ file.\nYou\ can\ download\ it\ from\ https\://www.elster.de/elfo_down.php.=Por favor, seleccione el archivo de instalaci\u00f3n.\nPuede descargarlo desde https\://www.elster.de/elfo_down.php.
-#: Engines/Wine/Verbs/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
-Please\ select\ the\ version.=Please select the version.
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Por favor, seleccione la versi\u00f3n de wine.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
-Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
+Please\ select\ the\ version.=Por favor, seleccione la versi\u00f3n.
-#: 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:36
+Please\ select\ the\ wine\ architecture.=Por favor, seleccione la arquitectura de wine.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
-Please\ select\ the\ wine\ version.=Please select the wine version.
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
+Please\ select\ the\ wine\ distribution.=Por favor, seleccione la distribuci\u00f3n de wine.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
+Please\ select\ the\ wine\ version.=Por favor, seleccione la versi\u00f3n de wine.
+
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
-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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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...
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
+Please\ wait\ while\ {0}\ is\ downloaded...=Por favor, espere mientras {0} se descarga...
+
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
+Please\ wait\ while\ {0}\ is\ extracted...=Por favor, espere mientras {0} se extrae...
+
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
+Please\ wait\ while\ {0}\ is\ installed...=Por favor, espere mientras {0} est\u00e1 instal\u00e1ndose...
+
+#: Engines/Wine/Engine/Object/script.js:185
+Please\ wait\ while\ {0}\ is\ uninstalled...=Por favor, espere mientras {0} se desinstala...
+
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
+Please\ wait...=Por favor espere...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
-Plugins\ for\ Wine.=Plugins for Wine.
+Plugins\ for\ Wine.=Complementos para Wine.
-#: Engines/Wine/Engine/Object/script.js:327
-Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
+#: Engines/Wine/Engine/Object/script.js:340
+Prefix\ seems\ to\ be\ 32bits=El prefijo parece ser de 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
Prehistorik=Prehistorik
@@ -1052,11 +1145,14 @@ Quick\ Script=Quick Script
QuickScript=QuickScript
#: i18n/tmp/Engines/Wine/QuickScript/application.js:2
-QuickScripts\ for\ Wine.=QuickScripts for Wine.
+QuickScripts\ for\ Wine.=QuickScripts para Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,23 +1172,20 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
-Registry\ Editor=Registry Editor
+Registry\ Editor=Editor de registro
#: i18n/tmp/Applications/Games/Black Mesa/application.js:2
-Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Half-Life in this highly acclaimed, fan-made recreation
+Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Revive Half-Life en esta recreaci\u00f3n de gran prestigio y hecha por los fans
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
-Remove\ Mono=Remove Mono
+Remove\ Mono=Eliminar Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
-Repair\ virtual\ drive=Repair virtual drive
+Repair\ virtual\ drive=Reparar unidad virtual
#: i18n/tmp/Applications/Games/Resident Evil 3/application.js:1
Resident\ Evil\ 3=Resident Evil 3
@@ -1103,8 +1196,8 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
-Retina\ support=Retina support
+#: Engines/Wine/Settings/hdpi/script.js:14
+Retina\ support=Compatible con Retina
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ action-adventure\ runner\ with\ a\ twist\!\ Hone\ your\ DISC\ and\ CYCLE\ skills,\ then\ challenge\ the\ grueling\ STREAM\ program\ that\ throws\ endless\ combinations\ of\ modes\ and\ levels\ at\ you\ until\ you\ crash\ –\ how\ long\ can\ you\ survive?=Return to the world of TRON with TRON RUN/r, a new lightning fast, action-adventure runner with a twist\! Hone your DISC and CYCLE skills, then challenge the grueling STREAM program that throws endless combinations of modes and levels at you until you crash \u2013 how long can you survive?
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1160,24 +1255,23 @@ STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic
Save\ the\ colony\!\ Your\ crew\ are\ fighting\ and\ new\ life\ forms\ begin\ to\ appear\ in\ the\ canteen.\ You\ are\ somewhere\ in\ the\ Universe\ with\ a\ limited\ amount\ of\ resources,\ a\ corporation\ that\ sent\ you\ into\ space\ awaits\ back\ at\ the\ Earth,\ and\ your\ colonists\ expect\ payment.\ Everyone\ has\ their\ own\ mind,\ so\ remember\ the\ golden\ rule\:\ a\ happy\ crew\ is\ a\ productive\ crew.\ You\ must\ build\ a\ base\ and\ defend\ it\ against\ aliens,\ but\ do\ not\ forget\ about\ your\ crew.\ If\ you\ treat\ them\ well,\ they\ will\ work\ hard\ for\ you.\ In\ Space\ Colony\ your\ career\ and\ life\ depend\ on\ an\ unruly\ team\ that\ wants\ to\ return\ to\ Earth.\ When\ creating\ a\ colony,\ you\ have\ over\ 100\ different\ structures\ to\ choose\ from,\ which\ will\ help\ you\ build\ a\ great\ base\ for\ your\ crew.\ So\ before\ you\ spend\ all\ your\ savings\ on\ iron\ mining\ and\ the\ production\ of\ space\ chickens,\ keep\ in\ mind\ that\ without\ laser\ towers,\ saunas\ and\ restaurants\ no\ one\ will\ want\ to\ work\ for\ you\!=Save the colony\! Your crew are fighting and new life forms begin to appear in the canteen. You are somewhere in the Universe with a limited amount of resources, a corporation that sent you into space awaits back at the Earth, and your colonists expect payment. Everyone has their own mind, so remember the golden rule\: a happy crew is a productive crew. You must build a base and defend it against aliens, but do not forget about your crew. If you treat them well, they will work hard for you. In Space Colony your career and life depend on an unruly team that wants to return to Earth. When creating a colony, you have over 100 different structures to choose from, which will help you build a great base for your crew. So before you spend all your savings on iron mining and the production of space chickens, keep in mind that without laser towers, saunas and restaurants no one will want to work for you\!
#: i18n/tmp/Applications/Science/category.js:1
-Science=Science
+Science=Ciencias
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:1
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
-Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
+#: (1.0->1.6)/script.js:16
+Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Seleccione su regi\u00f3n para el parche (1.0 a 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
-Select\ your\ region\:=Select your region\:
+#: Applications/Games/League of Legends/Online/script.js:34
+Select\ your\ region\:=Seleccione su regi\u00f3n\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
-Settings\ for\ Wine.=Settings for Wine.
+Settings\ for\ Wine.=Configuraci\u00f3n para Wine.
#: i18n/tmp/Applications/Games/Hearthstone/application.js:2
Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ the\ fast-paced\ strategy\ card\ game\ that's\ easy\ to\ learn\ and\ massively\ fun.\ Start\ a\ free\ game\ and\ play\ your\ cards\ to\ sling\ spells,\ summon\ creatures,\ and\ command\ the\ heroes\ of\ Warcraft\ in\ duels\ of\ epic\ strategy.=Sheathe your sword, draw your deck, and get ready for Hearthstone - the fast-paced strategy card game that's easy to learn and massively fun. Start a free game and play your cards to sling spells, summon creatures, and command the heroes of Warcraft in duels of epic strategy.
@@ -1186,7 +1280,7 @@ Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\
Shortcut\ Reader=Shortcut Reader
#: i18n/tmp/Engines/Wine/Shortcuts/application.js:2
-Shortcuts\ for\ Wine.=Shortcuts for Wine.
+Shortcuts\ for\ Wine.=Atajos para Wine.
#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
#: Still Shower Dad/application.js:1
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1340,12 +1448,12 @@ Steam\ (GOTY)=Steam (GOTY)
Steam\ (Gold)=Steam (Gold)
#: i18n/tmp/Engines/Wine/QuickScript/Steam Script/script.js:1
-Steam\ Script=Steam Script
+Steam\ Script=Script de Steam
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=Utilidades del sistema
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1382,7 +1493,7 @@ Take\ control\ of\ your\ own\ starship\ in\ a\ cutthroat\ galaxy.\ Elite\ Danger
Take\ on\ the\ role\ of\ a\ hardened\ career\ criminal\ executing\ intense,\ dynamic\ heists\ in\ constant\ pursuit\ of\ the\ next\ “big\ score”=Take on the role of a hardened career criminal executing intense, dynamic heists in constant pursuit of the next \u201cbig score\u201d
#: i18n/tmp/Engines/Wine/Tools/Wine Task Manager/script.js:1
-Task\ manager=Task manager
+Task\ manager=Gestor de tareas
#: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:1
TeamSpeak\ 3=TeamSpeak 3
@@ -1458,12 +1569,12 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
-The\ Wine\ engine.=The Wine engine.
+The\ Wine\ engine.=El motor Wine.
#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1
The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
-This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=Este juego requiere winebind (para Ubuntu) o samba y libwbclient/lib32-libwbclient (para Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
+This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=Este paquete ({0}) no funciona actualmente. \u00a1\u00dasalo s\u00f3lo para probar\!
+
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1555,7 +1671,7 @@ Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld
Tomb\ Raider\:\ Underworld\ represents\ a\ new\ advancement\ in\ exploration-based\ gameplay.\ As\ fearless\ adventurer\ Lara\ Croft\ explore\ exotic\ locations\ around\ the\ world,\ each\ designed\ with\ an\ incredible\ attention\ to\ detail\ resulting\ in\ breathtaking\ high-definition\ visual\ fidelity\ that\ creates\ a\ truly\ believable\ world\ and\ delivers\ a\ new\ level\ of\ challenge\ and\ choice.=Tomb Raider\: Underworld represents a new advancement in exploration-based gameplay. As fearless adventurer Lara Croft explore exotic locations around the world, each designed with an incredible attention to detail resulting in breathtaking high-definition visual fidelity that creates a truly believable world and delivers a new level of challenge and choice.
#: i18n/tmp/Engines/Wine/Tools/application.js:2
-Tools\ for\ Wine.=Tools for Wine.
+Tools\ for\ Wine.=Herramientas para Wine.
#: i18n/tmp/Applications/Games/Total War Rome II/application.js:1
Total\ War\:\ ROME\ II=Total War\: ROME II
@@ -1584,45 +1700,61 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Modo de suavizado de fuentes desconocido\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
-Uplay\ Script=Uplay Script
+Uplay\ Script=Script de Uplay
#: i18n/tmp/Applications/Games/Uplay/application.js:2
-Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay es el portal de juegos de PC de Ubisoft.
+
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=El uso de Gallium 9 requiere tener un controlador que soporte el rastreador de estado Gallium 9, as\u00ed como d3dapater9.so instalado (ej\: paquete libd3d9adapter-mesa). Por favor aseg\u00farese de que est\u00e9 instalado (sea en sus versiones de 32 y 64 bits).
#: i18n/tmp/Utils/Functions/Apps/application.js:2
-Utils\ for\ apps.=Utils for apps.
+Utils\ for\ apps.=Utilidades para aplicaciones.
#: i18n/tmp/Utils/Functions/Filesystem/application.js:2
-Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
+Utils\ for\ file\ system\ interaction.=Utilidades para la interacci\u00f3n del sistema de archivos.
#: i18n/tmp/Utils/Functions/Net/application.js:2
-Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+Utils\ for\ interaction\ with\ the\ Internet.=Utilidades para la interacci\u00f3n con Internet.
+
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utilidades para la interacci\u00f3n del sistema.
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ imagination.\ Help\ Maxwell\ solve\ robust\ puzzles\ in\ seamless,\ free-roaming\ levels\ by\ summoning\ any\ object\ you\ can\ think\ of.\ Create\ your\ own\ original\ objects,\ assign\ unique\ properties,\ and\ share\ them\ with\ friends\ online\ using\ Steam\ Workshop\ –\ to\ be\ used\ in\ game\ or\ further\ modified\ as\ you\ like\!=Venture into a wide-open world where the most powerful tool is your imagination. Help Maxwell solve robust puzzles in seamless, free-roaming levels by summoning any object you can think of. Create your own original objects, assign unique properties, and share them with friends online using Steam Workshop \u2013 to be used in game or further modified as you like\!
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
-Verbs\ for\ Wine.=Verbs for Wine.
+Verbs\ for\ Wine.=Verbs para Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
-Video\ memory\ size=Video memory size
+#: Engines/Wine/Settings/video memory size/script.js:17
+Video\ memory\ size=Tama\u00f1o de memoria de v\u00eddeo
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
Vito\ Scaletta\ has\ started\ to\ make\ a\ name\ for\ himself\ on\ the\ streets\ of\ Empire\ Bay\ as\ someone\ who\ can\ be\ trusted\ to\ get\ a\ job\ done.\ Together\ with\ his\ buddy\ Joe,\ he\ is\ working\ to\ prove\ himself\ to\ the\ Mafia,\ quickly\ escalating\ up\ the\ family\ ladder\ with\ crimes\ of\ larger\ reward,\ status\ and\ consequence…\ the\ life\ as\ a\ wise\ guy\ isn’t\ quite\ as\ untouchable\ as\ it\ seems.=Vito Scaletta has started to make a name for himself on the streets of Empire Bay as someone who can be trusted to get a job done. Together with his buddy Joe, he is working to prove himself to the Mafia, quickly escalating up the family ladder with crimes of larger reward, status and consequence\u2026 the life as a wise guy isn\u2019t quite as untouchable as it seems.
@@ -1645,18 +1777,18 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
-Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
+Which\ language\ version\ would\ you\ like\ to\ install?=\u00bfQu\u00e9 versi\u00f3n de idioma desea instalar?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
Wildlife\ Park\ 2=Wildlife Park 2
@@ -1665,47 +1797,56 @@ Wildlife\ Park\ 2=Wildlife Park 2
Windows\ XP\ Service\ Pack\ 3=Windows XP Service Pack 3
#: i18n/tmp/Engines/Wine/Tools/Reboot Wine/script.js:1
-Windows\ reboot=Windows reboot
+Windows\ reboot=Reinicio de Windows
#: i18n/tmp/Engines/Wine/Plugins/Windows version/script.js:1
-Windows\ version=Windows version
+Windows\ version=Versi\u00f3n de Windows
#: i18n/tmp/Engines/Wine/category.js:1
Wine=Wine
#: i18n/tmp/Engines/Wine/Engine/application.js:1
-Wine\ Engine=Wine Engine
+Wine\ Engine=Motor de Wine
#: i18n/tmp/Engines/Wine/Plugins/application.js:1
-Wine\ Plugins=Wine Plugins
+Wine\ Plugins=Complementos de Wine
#: i18n/tmp/Engines/Wine/Settings/application.js:1
-Wine\ Settings=Wine Settings
+Wine\ Settings=Ajustes de Wine
#: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1
-Wine\ Shortcut=Wine Shortcut
+Wine\ Shortcut=Acceso directo a Wine
#: i18n/tmp/Engines/Wine/Shortcuts/application.js:1
-Wine\ Shortcuts=Wine Shortcuts
+Wine\ Shortcuts=Atajos de Wine
#: i18n/tmp/Engines/Wine/Tools/application.js:1
-Wine\ Tools=Wine Tools
+Wine\ Tools=Herramientas de Wine
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Constantes Wine
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
-Wine\ engine=Wine engine
+Wine\ engine=Motor de Wine
#: i18n/tmp/Engines/Wine/Engine/Implementation/script.js:1
-Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation of Java interface)
+Wine\ engine\ (implementation\ of\ Java\ interface)=Motor de Wine (implementaci\u00f3n de interfaz Java)
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
-Wine\ uninstaller=Wine uninstaller
+Wine\ uninstaller=Desinstalador de Wine
+
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Versiones Wine
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=Debe instalar libjpeg62 y libjpeg62-dev o, de lo contrario, las miniaturas en el men\u00fa de Juego Nuego se mostrar\u00e1n como rect\u00e1ngulos en color magenta.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1748,7 +1892,7 @@ You\ wake\ up,\ alone,\ on\ a\ strange\ island\ full\ of\ puzzles\ that\ will\ c
Your\ car\ is\ your\ avatar\ -\ fine\ tune\ your\ ride\ as\ you\ level\ up\ and\ progress\ through\ 5\ unique\ and\ richly\ detailed\ regions\ of\ a\ massive\ open-world\ US.\ Maneuver\ through\ the\ bustling\ streets\ of\ New\ York\ City\ and\ Los\ Angeles,\ cruise\ down\ sunny\ Miami\ Beach\ or\ trek\ through\ the\ breathtaking\ plateaus\ of\ Monument\ Valley.\ Each\ locale\ comes\ with\ its\ own\ set\ of\ surprises\ and\ driving\ challenges\ to\ master.\ On\ your\ journey\ you\ will\ encounter\ other\ players\ on\ the\ road\ –\ all\ potentially\ worthy\ companions\ to\ crew\ up\ with,\ or\ future\ rivals\ to\ compete\ against.\ This\ is\ driving\ at\ its\ most\ exciting,\ varied\ and\ open.=Your car is your avatar - fine tune your ride as you level up and progress through 5 unique and richly detailed regions of a massive open-world US. Maneuver through the bustling streets of New York City and Los Angeles, cruise down sunny Miami Beach or trek through the breathtaking plateaus of Monument Valley. Each locale comes with its own set of surprises and driving challenges to master. On your journey you will encounter other players on the road \u2013 all potentially worthy companions to crew up with, or future rivals to compete against. This is driving at its most exciting, varied and open.
#: i18n/tmp/Engines/Wine/QuickScript/Zip Script/script.js:1
-Zip\ Script=Zip Script
+Zip\ Script=Script de Zip
#: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1
always\ offscreen=always offscreen
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
-fonts=fonts
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+fonts=fuentes
+
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1800,7 +1953,7 @@ luna=luna
mIRC=mIRC
#: i18n/tmp/Engines/Wine/Plugins/managed/script.js:1
-managed=managed
+managed=administrado
#: i18n/tmp/Engines/Wine/Verbs/mfc42/script.js:1
mfc42=mfc42
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,17 +1997,17 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
regedit=regedit
#: i18n/tmp/Engines/Wine/Plugins/register font/script.js:1
-register\ font=register font
+register\ font=registrar fuente
#: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1
regsvr32=regsvr32
@@ -1860,14 +2022,11 @@ sandbox=sandbox
secur32=secur32
#: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1
-sound\ driver=sound driver
+sound\ driver=controlador de sonido
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,11 +2060,15 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
-video\ memory\ size=video memory size
+video\ memory\ size=tama\u00f1o de memoria de v\u00eddeo
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
-virtual\ desktop=virtual desktop
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
+virtual\ desktop=escritorio virtual
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
vulkanSDK=vulkanSDK
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
-{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
+{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} aplicaciones pueden tener problemas cuando la versi\u00f3n de Windows no est\u00e1 configurada para "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_fa.properties b/i18n/Messages_fa.properties
new file mode 100644
index 0000000000..ae268f5a63
--- /dev/null
+++ b/i18n/Messages_fa.properties
@@ -0,0 +1,2085 @@
+#: 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/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
+#: 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/dotnet46/script.js:1
+.NET\ 4.6=.NET 4.6
+
+#: i18n/tmp/Engines/Wine/Verbs/dotnet461/script.js:1
+.NET\ 4.6.1=.NET 4.6.1
+
+#: i18n/tmp/Engines/Wine/Verbs/dotnet462/script.js:1
+.NET\ 4.6.2=.NET 4.6.2
+
+#: i18n/tmp/Engines/Wine/Verbs/dotnet472/script.js:1
+.NET\ 4.7.2=.NET 4.7.2
+
+#: 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
+Introduction 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.=Introduction 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
+
mIRC is a popular Internet Relay Chat client 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 Internet community for over a decade, mIRC has evolved into a powerful, reliable and fun piece of technology.
+
+#: 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
+#: i18n/tmp/Applications/Games/Far Cry/application.js:2
+A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
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.
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®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
+
+#: Engines/Wine/Settings/always offscreen/script.js:17
+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®\ Revelations=Assassin's Creed\u00ae Revelations
+
+#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:1
+Assassin's\ Creed™=Assassin's Creed\u2122
+
+#: i18n/tmp/Applications/Games/Assassin's Creed/application.js:2
+Assassin's\ Creed™\ 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.
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.
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’s\ Creed\ II=Assassin\u2019s Creed II
+
+#: i18n/tmp/Applications/Games/Assassin's Creed: Brotherhood/application.js:1
+Assassin’s\ Creed®\ Brotherhood=Assassin\u2019s Creed\u00ae Brotherhood
+
+#: i18n/tmp/Applications/Games/Assassin's Creed III/application.js:1
+Assassin’s\ Creed®\ III=Assassin\u2019s Creed\u00ae III
+
+#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:1
+Assassin’s\ Creed®\ IV\ Black\ Flag™=Assassin\u2019s Creed\u00ae IV Black Flag\u2122
+
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:1
+Assassin’s\ Creed®\ Unity=Assassin\u2019s Creed\u00ae Unity
+
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/application.js:2
+Assassin’s\ Creed®\ 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
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
+#: i18n/tmp/Applications/Games/BRINK/application.js:1
+BRINK=BRINK
+
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+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™\:\ Arkham\ Asylum=Batman\u2122\: Arkham Asylum
+
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:1
+Batman™\:\ Arkham\ City=Batman\u2122\: Arkham City
+
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Origins/application.js:1
+Batman™\:\ Arkham\ Origins=Batman\u2122\: Arkham Origins
+
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Origins/application.js:2
+Batman™\:\ Arkham\ Origins\ is\ the\ next\ installment\ in\ the\ blockbuster\ Batman\:\ Arkham\ videogame\ franchise.\ Developed\ by\ WB\ Games\ Montréal,\ 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’s\ 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. 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\ –\ but\ at\ the\ expense\ of\ your\ Sims'\ health\ as\ pollution\ spreads.\ Implement\ green\ technology\ and\ improve\ your\ Sims’\ 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. 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/Subnautica Below Zero/application.js:2
+Below\ Zero\ is\ an\ underwater\ adventure\ game\ set\ on\ an\ alien\ ocean\ world.\ It\ is\ a\ new\ chapter\ in\ the\ Subnautica\ universe,\ and\ is\ currently\ in\ development\ by\ Unknown\ Worlds. Return\ to\ planet\ 4546B Dive\ into\ a\ freezing\ underwater\ adventure.\ Below\ Zero\ is\ set\ in\ an\ arctic\ region\ of\ planet\ 4546B.\ As\ a\ scientist\ posted\ to\ a\ research\ station\ on\ the\ planet's\ surface,\ you\ are\ tasked\ with\ studying\ alien\ artefacts.\ The\ Vesper\ space\ station\ orbits\ high\ above\ you,\ sending\ supplies,\ instructions,\ and\ receiving\ samples\ you\ launch\ from\ the\ surface.\ When\ disaster\ strikes\ the\ research\ station,\ you\ must\ improvise\ to\ survive\:\ Construct\ habitats,\ scavenge\ for\ resources,\ hunt\ for\ food,\ and\ craft\ equipment. Explore\ new\ biomes Swim\ beneath\ the\ blue-lit,\ arching\ growth\ of\ Twisty\ Bridges.\ Navigate\ treacherous\ ice\ floes\ on\ the\ ocean\ surface.\ Clamber\ up\ snow\ covered\ peaks,\ and\ venture\ into\ icy\ caves.\ Maneuver\ between\ steaming\ Thermal\ Vents.\ Below\ Zero\ presents\ entirely\ new\ environments\ for\ you\ to\ survive,\ study,\ and\ explore.\ Discover\ new\ lifeforms\ in\ the\ icy\ depths\ of\ 4546B.\ Swim\ through\ the\ giant\ Titan\ Holefish,\ escape\ from\ the\ aggressive\ Brute\ Shark,\ and\ visit\ the\ adorable\ Pengwings.\ Some\ residents\ of\ the\ frozen\ ocean\ will\ help\ you,\ and\ some\ might\ try\ to\ harm\ you.=Below Zero is an underwater adventure game set on an alien ocean world. It is a new chapter in the Subnautica universe, and is currently in development by Unknown Worlds. Return to planet 4546B Dive into a freezing underwater adventure. Below Zero is set in an arctic region of planet 4546B. As a scientist posted to a research station on the planet's surface, you are tasked with studying alien artefacts. The Vesper space station orbits high above you, sending supplies, instructions, and receiving samples you launch from the surface. When disaster strikes the research station, you must improvise to survive\: Construct habitats, scavenge for resources, hunt for food, and craft equipment. Explore new biomes Swim beneath the blue-lit, arching growth of Twisty Bridges. Navigate treacherous ice floes on the ocean surface. Clamber up snow covered peaks, and venture into icy caves. Maneuver between steaming Thermal Vents. Below Zero presents entirely new environments for you to survive, study, and explore. Discover new lifeforms in the icy depths of 4546B. Swim through the giant Titan Holefish, escape from the aggressive Brute Shark, and visit the adorable Pengwings. Some residents of the frozen ocean will help you, and some might try to harm you.
+
+#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:1
+Beyond\ Good\ and\ Evil™=Beyond Good and Evil\u2122
+
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/application.js:2
+Big\ Brother\ has\ arrived\ -\ and\ it’s\ 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. 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. 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™=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\ –\ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
+#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
+#: Box/application.js:1
+Burnout™\ 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®\ 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:414
+Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Cannot run 64bit executable in a 32bit Wine prefix.
+
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
+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:32
+Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
+
+#: Engines/Wine/Engine/Object/script.js:190
+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/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
+#: 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.
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.
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/Verbs/DXVK/script.js:45
+DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+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\ –\ whether\ you’re\ 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:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/DirectDraw
+DirectDraw\ renderer=DirectDraw renderer
+
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
+Disabled=Disabled
+
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
+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
+
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
+#: 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/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
+
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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.
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.
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/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
+#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
+Epic\ Games\ Launcher=Epic Games Launcher
+
+#: Utils/Functions/Net/Download/script.js:155
+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:153
+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’s\ 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.
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.
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:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
+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:11
+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\!
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®\ 2=Far Cry\u00ae 2
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
+Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
+#: 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
+#: 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:11
+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. 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. 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. 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. 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®\ 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’s\ 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:11
+GDI=GDI
+
+#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
+GLSL=GLSL
+
+#: Engines/Wine/Settings/GLSL/script.js:17
+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’s\ 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/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
+#: 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
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
+#: 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.
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.
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.
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.
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:24
+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:17
+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\ –\ 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:65
+Installing\ version\:\ {0}=Installing version\: {0}
+
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+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 7.0/application.js:2
+#: 6.0/application.js:2
+Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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™\ 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’s\ 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.
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/Command and Conquer - Tiberium
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/Local/script.js:1 i18n/tmp/Applications/Games/Epic Games
+#: Launcher/Local/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/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
Get ready for the mind blowing insanity\! Play as one of four trigger-happy mercenaries and take out everything that stands in your way\!
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/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
+#: 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™=Medieval II\: Total War\u2122
+
+#: i18n/tmp/Applications/Games/Rayman Legends/application.js:2
+Michel\ Ancel,\ the\ celebrated\ creator\ of\ Rayman®,\ Beyond\ Good\ &\ Evil®,\ and\ the\ Raving\ Rabbids®,\ returns\ to\ unleash\ his\ innovative\ creativity\ on\ this\ new\ entry\ into\ the\ Rayman®\ franchise.
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.
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\!
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™=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:17
+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:17
+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
+
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
+#: 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.
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.
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.
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:17
+Offscreen\ rendering\ mode=Offscreen rendering mode
+
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
+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.
+
+#: i18n/tmp/Applications/Custom/OnlineInstaller/Online/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/Online/script.js:1
+#: i18n/tmp/Applications/Games/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
+#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
+#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/Online/script.js:1
+#: i18n/tmp/Applications/Games/DC Universe Online/Online/script.js:1
+#: i18n/tmp/Applications/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/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/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
+#: 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:11
+OpenGL=OpenGL
+
+#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
+OpenGL_version=OpenGL_version
+
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
+#: i18n/tmp/Applications/Games/Mass Effect 2/Origin/script.js:1
+#: i18n/tmp/Applications/Games/Spore/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™\ The\ Heist=PAYDAY\u2122 The Heist
+
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
+#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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
+
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
+Please\ close\ Uplay.=Please close Uplay.
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
+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:17
+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/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
+
+#: Engines/Wine/Verbs/VK9/script.js:48
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
+
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
+Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
+
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
+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:25
+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:74
+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:44
+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:44
+Please\ select\ the\ .zip\ file.=Please select the .zip file.
+
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
+Please\ select\ the\ SP3\ file.=Please select the SP3 file.
+
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
+Please\ select\ the\ download\ URL.=Please select the download URL.
+
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
+Please\ select\ the\ executable.=Please select the executable.
+
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
+Please\ select\ the\ installation\ file.=Please select the installation file.
+
+#: Applications/Office/ElsterFormular/Online/script.js:12
+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/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
+Please\ select\ the\ version.=Please select the version.
+
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
+Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
+
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
+Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
+
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
+Please\ select\ the\ wine\ version.=Please select the wine version.
+
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
+Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
+Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download...
+
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
+Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded...
+
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
+Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
+
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
+Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
+
+#: Engines/Wine/Engine/Object/script.js:185
+Please\ wait\ while\ {0}\ is\ uninstalled...=Please wait while {0} is uninstalled...
+
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
+Please\ wait...=Please wait...
+
+#: i18n/tmp/Engines/Wine/Plugins/application.js:2
+Plugins\ for\ Wine.=Plugins for Wine.
+
+#: Engines/Wine/Engine/Object/script.js:340
+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
+Prey=Prey
+
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/application.js:1
+Prince\ of\ Persia\:\ Original=Prince of Persia\: Original
+
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/application.js:1
+Prince\ of\ Persia®\:\ The\ Sands\ of\ Time=Prince of Persia\u00ae\: The Sands of Time
+
+#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/application.js:1
+Pro\ Evolution\ Soccer\ 2018=Pro Evolution Soccer 2018
+
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/application.js:1
+Q.U.B.E\:\ Director's\ Cut=Q.U.B.E\: Director's Cut
+
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/application.js:2
+Q.U.B.E\:\ Director's\ Cut\ is\ the\ definitive\ version\ of\ the\ brain-twisting\ first-person\ puzzler.\ Using\ special\ high-tech\ gloves\ to\ manipulate\ cubes\ in\ the\ environment,\ the\ player\ solves\ an\ array\ of\ conundrums\ -\ from\ physics-based\ challenges;\ to\ 3D\ jigsaws;\ to\ platform-based\ trials.=Q.U.B.E\: Director's Cut is the definitive version of the brain-twisting first-person puzzler. Using special high-tech gloves to manipulate cubes in the environment, the player solves an array of conundrums - from physics-based challenges; to 3D jigsaws; to platform-based trials.
+
+#: i18n/tmp/Applications/Games/Quantum Conundrum/application.js:1
+Quantum\ Conundrum=Quantum Conundrum
+
+#: i18n/tmp/Engines/Wine/QuickScript/Quick Script/script.js:1
+Quick\ Script=Quick Script
+
+#: i18n/tmp/Engines/Wine/QuickScript/application.js:1
+QuickScript=QuickScript
+
+#: i18n/tmp/Engines/Wine/QuickScript/application.js:2
+QuickScripts\ for\ Wine.=QuickScripts for Wine.
+
+#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
+QuickTime\ 7.6=QuickTime 7.6
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
+#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
+#: Shield/application.js:2
+Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
+
+#: i18n/tmp/Applications/Games/Rayman Legends/application.js:1
+Rayman®\ Legends=Rayman\u00ae Legends
+
+#: i18n/tmp/Applications/Games/Rayman Origins/application.js:1
+Rayman®\ Origins=Rayman\u00ae Origins
+
+#: i18n/tmp/Applications/Games/Mass Effect 2/application.js:2
+Recruit.\ Explore.\ Control.Two\ years\ after\ Commander\ Shepard\ repelled\ invading\ Reapers\ bent\ on\ the\ destruction\ of\ organic\ life,\ a\ mysterious\ new\ enemy\ has\ emerged.\ On\ the\ fringes\ of\ known\ space,\ something\ is\ silently\ abducting\ entire\ human\ colonies.=Recruit. Explore. Control.Two years after Commander Shepard repelled invading Reapers bent on the destruction of organic life, a mysterious new enemy has emerged. On the fringes of known space, something is silently abducting entire human colonies.
+
+#: i18n/tmp/Applications/Games/Red Trigger/application.js:1
+Red\ Trigger=Red Trigger
+
+#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
+Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
+
+#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
+Registry\ Editor=Registry Editor
+
+#: i18n/tmp/Applications/Games/Black Mesa/application.js:2
+Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Half-Life in this highly acclaimed, fan-made recreation
+
+#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
+Remove\ Mono=Remove Mono
+
+#: Engines/Wine/Settings/render target lock mode/script.js:17
+Render\ target\ lock\ mode=Render target lock mode
+
+#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
+Repair\ virtual\ drive=Repair virtual drive
+
+#: i18n/tmp/Applications/Games/Resident Evil 3/application.js:1
+Resident\ Evil\ 3=Resident Evil 3
+
+#: i18n/tmp/Applications/Games/Resident Evil 3/application.js:2
+Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escape\ (バイオハザード3 ラストエスケープ),\ is\ a\ survival\ horror\ video\ game\ and\ the\ sequel\ to\ Resident\ Evil\ 2,\ developed\ and\ published\ by\ Capcom.\ The\ game\ was\ released\ for\ the\ PlayStation,\ and\ was\ subsequently\ ported\ to\ the\ Dreamcast,\ Microsoft\ Windows\ and\ Nintendo\ GameCube.\ A\ Windows\ PC\ version\ was\ released\ first\ in\ Japan\ in\ June\ 2000\ and\ later\ in\ other\ regions,\ which\ features\ enhanced\ 3D\ character\ model\ graphics\ and\ higher\ resolutions.=Resident Evil 3\: Nemesis, known in Japan as Biohazard 3\: Last Escape (\u30d0\u30a4\u30aa\u30cf\u30b6\u30fc\u30c93\u3000\u30e9\u30b9\u30c8\u30a8\u30b9\u30b1\u30fc\u30d7), is a survival horror video game and the sequel to Resident Evil 2, developed and published by Capcom. The game was released for the PlayStation, and was subsequently ported to the Dreamcast, Microsoft Windows and Nintendo GameCube. A Windows PC version was released first in Japan in June 2000 and later in other regions, which features enhanced 3D character model graphics and higher resolutions.
+
+#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
+Retina=Retina
+
+#: Engines/Wine/Settings/hdpi/script.js:14
+Retina\ support=Retina support
+
+#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
+Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\ action-adventure\ runner\ with\ a\ twist\!\ Hone\ your\ DISC\ and\ CYCLE\ skills,\ then\ challenge\ the\ grueling\ STREAM\ program\ that\ throws\ endless\ combinations\ of\ modes\ and\ levels\ at\ you\ until\ you\ crash\ –\ how\ long\ can\ you\ survive?=Return to the world of TRON with TRON RUN/r, a new lightning fast, action-adventure runner with a twist\! Hone your DISC and CYCLE skills, then challenge the grueling STREAM program that throws endless combinations of modes and levels at you until you crash \u2013 how long can you survive?
+
+#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
+Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
+#: i18n/tmp/Applications/Games/Road Rash/application.js:1
+Road\ Rash=Road Rash
+
+#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:1
+Rocksmith®\ 2014=Rocksmith\u00ae 2014
+
+#: i18n/tmp/Applications/Games/Rocksmith/application.js:2
+Rocksmith’s\ innovative\ game\ design\ makes\ playing\ music\ visually\ intuitive\ and\ will\ engage\ experienced\ musicians\ as\ well\ as\ those\ who\ have\ never\ picked\ up\ a\ guitar\ in\ their\ lives.=Rocksmith\u2019s innovative game design makes playing music visually intuitive and will engage experienced musicians as well as those who have never picked up a guitar in their lives.
+
+#: i18n/tmp/Applications/Games/Rocksmith/application.js:1
+Rocksmith™=Rocksmith\u2122
+
+#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:2
+SBBP\ is\ a\ 2D\ platformer\ with\ pixel\ graphics.\ Blue\ boy’s\ girlfriend\ is\ kidnapped\ by\ aliens\ so\ he\ goes\ through\ 21\ levels\ to\ save\ her\ and\ he\ also\ fight\ bosses\ along\ the\ way.=SBBP is a 2D platformer with pixel graphics. Blue boy\u2019s girlfriend is kidnapped by aliens so he goes through 21 levels to save her and he also fight bosses along the way.
+
+#: i18n/tmp/Applications/Games/STAR WARS Battlefront II/application.js:1
+STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
+
+#: i18n/tmp/Applications/Games/STAR WARS - Empire at War Gold
+#: Pack/application.js:1
+STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
+
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
+STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
+
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
+#: Sith/application.js:1
+STAR\ WARS™\ Jedi\ Knight\ -\ Mysteries\ of\ the\ Sith™=STAR WARS\u2122 Jedi Knight - Mysteries of the Sith\u2122
+
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/application.js:1
+STAR\ WARS™\ Jedi\ Knight\ II\ -\ Jedi\ Outcast™=STAR WARS\u2122 Jedi Knight II - Jedi Outcast\u2122
+
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight: Dark Forces
+#: II/application.js:1
+STAR\ WARS™\ Jedi\ Knight\:\ Dark\ Forces\ II=STAR WARS\u2122 Jedi Knight\: Dark Forces II
+
+#: i18n/tmp/Applications/Games/STAR WARS: Dark Forces/application.js:1
+STAR\ WARS™\:\ Dark\ Forces=STAR WARS\u2122\: Dark Forces
+
+#: i18n/tmp/Applications/Games/STAR WARS: The Old Republic/application.js:1
+STAR\ WARS™\:\ The\ Old\ Republic=STAR WARS\u2122\: The Old Republic
+
+#: i18n/tmp/Applications/Games/Space Colony/application.js:2
+Save\ the\ colony\!\ Your\ crew\ are\ fighting\ and\ new\ life\ forms\ begin\ to\ appear\ in\ the\ canteen.\ You\ are\ somewhere\ in\ the\ Universe\ with\ a\ limited\ amount\ of\ resources,\ a\ corporation\ that\ sent\ you\ into\ space\ awaits\ back\ at\ the\ Earth,\ and\ your\ colonists\ expect\ payment.\ Everyone\ has\ their\ own\ mind,\ so\ remember\ the\ golden\ rule\:\ a\ happy\ crew\ is\ a\ productive\ crew.\ You\ must\ build\ a\ base\ and\ defend\ it\ against\ aliens,\ but\ do\ not\ forget\ about\ your\ crew.\ If\ you\ treat\ them\ well,\ they\ will\ work\ hard\ for\ you.\ In\ Space\ Colony\ your\ career\ and\ life\ depend\ on\ an\ unruly\ team\ that\ wants\ to\ return\ to\ Earth.\ When\ creating\ a\ colony,\ you\ have\ over\ 100\ different\ structures\ to\ choose\ from,\ which\ will\ help\ you\ build\ a\ great\ base\ for\ your\ crew.\ So\ before\ you\ spend\ all\ your\ savings\ on\ iron\ mining\ and\ the\ production\ of\ space\ chickens,\ keep\ in\ mind\ that\ without\ laser\ towers,\ saunas\ and\ restaurants\ no\ one\ will\ want\ to\ work\ for\ you\!=Save the colony\! Your crew are fighting and new life forms begin to appear in the canteen. You are somewhere in the Universe with a limited amount of resources, a corporation that sent you into space awaits back at the Earth, and your colonists expect payment. Everyone has their own mind, so remember the golden rule\: a happy crew is a productive crew. You must build a base and defend it against aliens, but do not forget about your crew. If you treat them well, they will work hard for you. In Space Colony your career and life depend on an unruly team that wants to return to Earth. When creating a colony, you have over 100 different structures to choose from, which will help you build a great base for your crew. So before you spend all your savings on iron mining and the production of space chickens, keep in mind that without laser towers, saunas and restaurants no one will want to work for you\!
+
+#: i18n/tmp/Applications/Science/category.js:1
+Science=Science
+
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:1
+Scribblenauts\ Unlimited=Scribblenauts Unlimited
+
+#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
+#: (1.0->1.6)/script.js:16
+Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
+
+#: Applications/Games/League of Legends/Online/script.js:34
+Select\ your\ region\:=Select your region\:
+
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
+Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
+
+#: i18n/tmp/Engines/Wine/Settings/application.js:2
+Settings\ for\ Wine.=Settings for Wine.
+
+#: i18n/tmp/Applications/Games/Hearthstone/application.js:2
+Sheathe\ your\ sword,\ draw\ your\ deck,\ and\ get\ ready\ for\ Hearthstone\ -\ the\ fast-paced\ strategy\ card\ game\ that's\ easy\ to\ learn\ and\ massively\ fun.\ Start\ a\ free\ game\ and\ play\ your\ cards\ to\ sling\ spells,\ summon\ creatures,\ and\ command\ the\ heroes\ of\ Warcraft\ in\ duels\ of\ epic\ strategy.=Sheathe your sword, draw your deck, and get ready for Hearthstone - the fast-paced strategy card game that's easy to learn and massively fun. Start a free game and play your cards to sling spells, summon creatures, and command the heroes of Warcraft in duels of epic strategy.
+
+#: i18n/tmp/Engines/Wine/Shortcuts/Reader/script.js:1
+Shortcut\ Reader=Shortcut Reader
+
+#: i18n/tmp/Engines/Wine/Shortcuts/application.js:2
+Shortcuts\ for\ Wine.=Shortcuts for Wine.
+
+#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
+#: Still Shower Dad/application.js:1
+Shower\ With\ Your\ Dad\ Simulator\ 2015\:\ Do\ You\ Still\ Shower\ With\ Your\ Dad=Shower With Your Dad Simulator 2015\: Do You Still Shower With Your Dad
+
+#: i18n/tmp/Applications/Games/SimCity (2013)/application.js:1
+SimCity\ (2013)=SimCity (2013)
+
+#: i18n/tmp/Applications/Games/DC Universe Online/application.js:2
+Sony's\ new\ MMORPG\ based\ on\ the\ DC\ universe.\ Be\ a\ hero\ or\ villain\ in\ 2\ humongous\ cities.=Sony's new MMORPG based on the DC universe. Be a hero or villain in 2 humongous cities.
+
+#: i18n/tmp/Applications/Accessories/Soundplant/application.js:1
+Soundplant=Soundplant
+
+#: i18n/tmp/Applications/Accessories/Soundplant/application.js:2
+Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\ sound\ trigger\ and\ playable\ instrument.
\ N.B.\:\ Free\ version\ has\ some\ features\ unavailable,\ see\ http\://soundplant.org/support.htm/=Soundplant turns your computer keyboard into a versatile, low latency sound trigger and playable instrument.
Via drag & drop, easily assign sound files of any format and length onto 72 keyboard keys, creating custom soundboards that put hours of instantly-playing audio at your fingertips with no extra hardware needed.
Soundplant is used for live music and sound effects, as a drum pad, as a unique electronic instrument, as an educational aid, and just for fun - in radio, television, theater, podcasting, presentations, studios, stadiums, classrooms, clubs, museums, and churches - by DJs, musicians, engineers, sound designers, composers, artists, teachers, magicians, puppeteers, comedians, public speakers, gamers, and more.
N.B.\: Free version has some features unavailable, see http\://soundplant.org/support.htm/
+
+#: i18n/tmp/Applications/Games/Space Colony/application.js:1
+Space\ Colony=Space Colony
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
+#: i18n/tmp/Applications/Games/Spore/application.js:1
+Spore=Spore
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
+#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
+Star\ Craft\ II=Star Craft II
+
+#: i18n/tmp/Applications/Games/Star Trek Online/application.js:1
+Star\ Trek\ Online=Star Trek Online
+
+#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
+StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
+
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
+Steam=Steam
+
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
+#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
+#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
+#: i18n/tmp/Applications/Games/ChromaGun/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
+#: i18n/tmp/Applications/Games/Prey/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
+Steam\ (Demo)=Steam (Demo)
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
+Steam\ (GOTY)=Steam (GOTY)
+
+#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
+#: (Gold)/script.js:1
+Steam\ (Gold)=Steam (Gold)
+
+#: i18n/tmp/Engines/Wine/QuickScript/Steam Script/script.js:1
+Steam\ Script=Steam Script
+
+#: i18n/tmp/Applications/Games/Steam/application.js:2
+Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
+
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
+Strict\ Draw\ Ordering=Strict Draw Ordering
+
+#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
+Styx\ returns\ in\ a\ new\ stealth\ adventure\!\ Explore\ and\ master\ huge\ open\ environments,\ sneak\ past\ or\ assassinate\ new\ enemies\ and\ bosses,\ and\ experiment\ with\ the\ new\ array\ of\ lethal\ abilities\ and\ weapons\ in\ our\ goblin\ assassin's\ arsenal.=Styx returns in a new stealth adventure\! Explore and master huge open environments, sneak past or assassinate new enemies and bosses, and experiment with the new array of lethal abilities and weapons in our goblin assassin's arsenal.
+
+#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:1
+Styx\:\ Shards\ of\ Darkness=Styx\: Shards of Darkness
+
+#: i18n/tmp/Applications/Games/Subnautica/application.js:1
+Subnautica=Subnautica
+
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/application.js:1
+Subnautica\ Below\ Zero=Subnautica Below Zero
+
+#: i18n/tmp/Applications/Games/Subnautica/application.js:2
+Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underwater\ world.\ After\ an\ emergency\ landing\ on\ a\ foreign\ water\ planet\ you\ can\ only\ look\ in\ the\ depths.\ Discover\ seaweed\ forests\ and\ grass\ plateaus,\ reefs\ and\ labyrinths\ of\ underwater\ caves,\ but\ remember\ the\ ever-diminished\ oxygen.\ Water\ is\ swarming\ with\ life\:\ some\ creatures\ are\ useful,\ but\ a\ large\ part\ is\ dangerous.\ When\ you\ wake\ up\ in\ a\ life\ capsule,\ you\ fight\ with\ time\ -\ you\ need\ to\ find\ drinking\ water,\ food,\ and\ develop\ equipment\ that\ will\ be\ useful\ during\ exploration.\ Collect\ resources\ from\ the\ ocean\ around\ you.\ Create\ knives,\ lighting,\ diving\ equipment,\ and\ build\ small\ submarines.\ The\ ocean\ is\ full\ of\ life\:\ use\ the\ ecosystem\ to\ your\ advantage.\ Lure\ and\ outwit\ the\ dangerous\ creature\ with\ a\ fresh\ fish,\ or\ just\ swim\ as\ fast\ as\ you\ can\ to\ avoid\ the\ jaws\ of\ omnipresent\ predators.\ Cave\ systems\ extend\ below\ the\ bottom\ of\ the\ ocean\ -\ from\ dark,\ claustrophobic\ passages\ to\ caves\ illuminated\ by\ bioluminescent\ life\ forms.\ Explore\ the\ world\ below\ the\ bottom\ of\ the\ ocean,\ but\ watch\ out\ for\ oxygen\ levels\ and\ avoid\ the\ dangers\ lurking\ in\ the\ dark.=Subnautica is a game about exploration and adventure set in an underwater world. After an emergency landing on a foreign water planet you can only look in the depths. Discover seaweed forests and grass plateaus, reefs and labyrinths of underwater caves, but remember the ever-diminished oxygen. Water is swarming with life\: some creatures are useful, but a large part is dangerous. When you wake up in a life capsule, you fight with time - you need to find drinking water, food, and develop equipment that will be useful during exploration. Collect resources from the ocean around you. Create knives, lighting, diving equipment, and build small submarines. The ocean is full of life\: use the ecosystem to your advantage. Lure and outwit the dangerous creature with a fresh fish, or just swim as fast as you can to avoid the jaws of omnipresent predators. Cave systems extend below the bottom of the ocean - from dark, claustrophobic passages to caves illuminated by bioluminescent life forms. Explore the world below the bottom of the ocean, but watch out for oxygen levels and avoid the dangers lurking in the dark.
+
+#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
+Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
+#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
+TRON\ RUN/r=TRON RUN/r
+
+#: i18n/tmp/Engines/Wine/Verbs/Tahoma/script.js:1
+Tahoma=Tahoma
+
+#: i18n/tmp/Applications/Games/Medieval II: Total War/application.js:2
+Take\ command\ of\ your\ army\ and\ expand\ your\ reign\ in\ Medieval\ II\ -\ the\ fourth\ installment\ of\ the\ award-winning\ Total\ War\ series\ of\ strategy\ games.\ Direct\ massive\ battles\ featuring\ up\ to\ 10,000\ bloodthirsty\ troops\ on\ epic\ 3D\ battlefields,\ while\ presiding\ over\ some\ of\ the\ greatest\ Medieval\ nations\ of\ the\ Western\ and\ Middle\ Eastern\ world.\ Spanning\ the\ most\ turbulent\ era\ in\ Western\ history,\ your\ quest\ for\ territory\ and\ power\ takes\ you\ through\ Europe,\ Africa,\ and\ the\ Middle\ East,\ and\ even\ onto\ the\ shores\ of\ the\ New\ World. You'll\ manage\ your\ empire\ with\ an\ iron\ fist,\ handling\ everything\ from\ building\ and\ improving\ cities\ to\ recruiting\ and\ training\ armies.\ Wield\ diplomacy\ to\ manipulate\ allies\ and\ enemies,\ outsmart\ the\ dreaded\ Inquisition,\ and\ influence\ the\ Pope.\ Lead\ the\ fight\ in\ the\ Crusades\ and\ bring\ victory\ to\ Islam\ or\ Christianity\ in\ the\ Holy\ War.\ Rewrite\ history\ and\ conquer\ the\ world.\ This\ is\ Total\ War\!=Take command of your army and expand your reign in Medieval II - the fourth installment of the award-winning Total War series of strategy games. Direct massive battles featuring up to 10,000 bloodthirsty troops on epic 3D battlefields, while presiding over some of the greatest Medieval nations of the Western and Middle Eastern world. Spanning the most turbulent era in Western history, your quest for territory and power takes you through Europe, Africa, and the Middle East, and even onto the shores of the New World. You'll manage your empire with an iron fist, handling everything from building and improving cities to recruiting and training armies. Wield diplomacy to manipulate allies and enemies, outsmart the dreaded Inquisition, and influence the Pope. Lead the fight in the Crusades and bring victory to Islam or Christianity in the Holy War. Rewrite history and conquer the world. This is Total War\!
+
+#: i18n/tmp/Applications/Games/Elite:Dangerous/application.js:2
+Take\ control\ of\ your\ own\ starship\ in\ a\ cutthroat\ galaxy.\ Elite\ Dangerous\ brings\ gaming’s\ original\ open\ world\ adventure\ into\ the\ modern\ generation\ with\ a\ connected\ galaxy,\ evolving\ narrative\ and\ the\ entirety\ of\ the\ Milky\ Way\ re-created\ at\ its\ full\ galactic\ proportions.
Elite\ Dangerous\ is\ the\ definitive\ massively\ multiplayer\ space\ epic,\ bringing\ gaming’s\ original\ open\ world\ adventure\ to\ the\ modern\ generation\ with\ a\ connected\ galaxy,\ evolving\ narrative\ and\ the\ entirety\ of\ the\ Milky\ Way\ re-created\ at\ its\ full\ galactic\ proportions.=Take control of your own starship in a cutthroat galaxy. Elite Dangerous brings gaming\u2019s original open world adventure into the modern generation with a connected galaxy, evolving narrative and the entirety of the Milky Way re-created at its full galactic proportions.
Elite Dangerous is the definitive massively multiplayer space epic, bringing gaming\u2019s original open world adventure to the modern generation with a connected galaxy, evolving narrative and the entirety of the Milky Way re-created at its full galactic proportions.
+
+#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:2
+Take\ on\ the\ role\ of\ a\ hardened\ career\ criminal\ executing\ intense,\ dynamic\ heists\ in\ constant\ pursuit\ of\ the\ next\ “big\ score”=Take on the role of a hardened career criminal executing intense, dynamic heists in constant pursuit of the next \u201cbig score\u201d
+
+#: i18n/tmp/Engines/Wine/Tools/Wine Task Manager/script.js:1
+Task\ manager=Task manager
+
+#: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:1
+TeamSpeak\ 3=TeamSpeak 3
+
+#: i18n/tmp/Applications/Internet/TeamSpeak 3/application.js:2
+TeamSpeak\ 3\ offers\ the\ ideal\ voice\ communication\ tool\ for\ online\ gaming,\ education\ and\ training,\ internal\ business\ communication,\ and\ staying\ in\ touch\ with\ friends\ and\ family.=TeamSpeak 3 offers the ideal voice communication tool for online gaming, education and training, internal business communication, and staying in touch with friends and family.
+
+#: i18n/tmp/Applications/Games/Teenagent/application.js:1
+Teenagent=Teenagent
+
+#: i18n/tmp/Applications/Games/Teenagent/application.js:2
+Teenagent\ is\ a\ 1995\ point-and-click\ adventure\ game\ developed\ by\ Polish\ developer\ Metropolis\ Software\ House.\ It\ was\ released\ for\ Amiga\ and\ MS-DOS.\ The\ player\ controls\ teenage\ boy\ Mark\ Hopper\ who\ wants\ to\ be\ a\ secret\ agent.\ The\ CD\ version\ was\ the\ first\ game\ to\ be\ released\ on\ CD-ROM\ in\ Poland.=Teenagent is a 1995 point-and-click adventure game developed by Polish developer Metropolis Software House. It was released for Amiga and MS-DOS. The player controls teenage boy Mark Hopper who wants to be a secret agent. The CD version was the first game to be released on CD-ROM in Poland.
+
+#: i18n/tmp/Applications/Games/Assassin's Creed III/application.js:2
+The\ American\ Colonies,\ 1775.\ It’s\ a\ time\ of\ civil\ unrest\ and\ political\ upheaval\ in\ the\ Americas.\ As\ a\ Native\ American\ assassin\ fights\ to\ protect\ his\ land\ and\ his\ people,\ he\ will\ ignite\ the\ flames\ of\ a\ young\ nation’s\ revolution. Assassin’s\ Creed®\ III\ takes\ you\ back\ to\ the\ American\ Revolutionary\ War,\ but\ not\ the\ one\ you’ve\ read\ about\ in\ history\ books...=The American Colonies, 1775. It\u2019s a time of civil unrest and political upheaval in the Americas. As a Native American assassin fights to protect his land and his people, he will ignite the flames of a young nation\u2019s revolution. Assassin\u2019s Creed\u00ae III takes you back to the American Revolutionary War, but not the one you\u2019ve read about in history books...
+
+#: i18n/tmp/Applications/Games/Blizzard app/application.js:2
+The\ Blizzard\ desktop\ app\ is\ designed\ to\ improve\ your\ gaming\ experience.\ It’ll\ streamline\ your\ login\ and\ make\ it\ even\ easier\ to\ keep\ up\ with\ your\ friends\!=The Blizzard desktop app is designed to improve your gaming experience. It\u2019ll streamline your login and make it even easier to keep up with your friends\!
+
+#: i18n/tmp/Applications/Games/The Crew/application.js:1
+The\ Crew™=The Crew\u2122
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls I: Arena/application.js:1
+The\ Elder\ Scrolls\ I\:\ Arena=The Elder Scrolls I\: Arena
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/application.js:1
+The\ Elder\ Scrolls\ IV\:\ Oblivion=The Elder Scrolls IV\: Oblivion
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/application.js:2
+The\ Elder\ Scrolls\ IV\:\ Oblivion®\ presents\ one\ of\ the\ best\ RPGs\ of\ all\ time\ like\ never\ before.\ Step\ inside\ the\ most\ richly\ detailed\ and\ vibrant\ game-world\ ever\ created.\ With\ a\ powerful\ combination\ of\ freeform\ gameplay\ and\ unprecedented\ graphics,\ you\ can\ unravel\ the\ main\ quest\ at\ your\ own\ pace\ or\ explore\ the\ vast\ world\ and\ find\ your\ own\ challenges.=The Elder Scrolls IV\: Oblivion\u00ae presents one of the best RPGs of all time like never before. Step inside the most richly detailed and vibrant game-world ever created. With a powerful combination of freeform gameplay and unprecedented graphics, you can unravel the main quest at your own pace or explore the vast world and find your own challenges.
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:1
+The\ Elder\ Scrolls\ V\:\ Skyrim=The Elder Scrolls V\: Skyrim
+
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/application.js:2
+The\ Legacy\ of\ Star\ Wars\ Dark\ Forces™\ and\ Star\ Wars®\ Jedi\ Knight\ lives\ on\ in\ the\ intense\ first-person\ action\ of\ Jedi\ Outcast.=The Legacy of Star Wars Dark Forces\u2122 and Star Wars\u00ae Jedi Knight lives on in the intense first-person action of Jedi Outcast.
+
+#: i18n/tmp/Applications/Custom/LocalInstaller/application.js:2
+The\ Local\ Installer\ allows\ you\ to\ install\ custom\ applications\ from\ your\ local\ computer.=The Local Installer allows you to install custom applications from your local computer.
+
+#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:2
+The\ Online\ Installer\ allows\ you\ to\ install\ custom\ applications\ from\ the\ Internet.=The Online Installer allows you to install custom applications from the Internet.
+
+#: i18n/tmp/Applications/Games/The Room/application.js:1
+The\ Room=The Room
+
+#: i18n/tmp/Applications/Games/The Room Two/application.js:1
+The\ Room\ Two=The Room Two
+
+#: i18n/tmp/Applications/Games/The Sims/application.js:1
+The\ Sims=The Sims
+
+#: i18n/tmp/Applications/Games/The Sims 3/application.js:1
+The\ Sims\ 3=The Sims 3
+
+#: i18n/tmp/Applications/Games/The Sims 3/application.js:2
+The\ Sims\ 3\ is\ the\ third\ major\ title\ in\ the\ life\ simulation\ video\ game\ developed\ by\ The\ Sims\ Studio\ (Maxis)\ and\ published\ by\ Electronic\ Arts.=The Sims 3 is the third major title in the life simulation video game developed by The Sims Studio (Maxis) and published by Electronic Arts.
+
+#: i18n/tmp/Applications/Games/The Sims/application.js:2
+The\ Sims\ is\ a\ simulation\ game\ that\ simulates\ people.\ With\ various\ goals\ and\ objectives\ you\ control\ people\ called\ sims.\ These\ sims\ require\ the\ user\ to\ periodically\ replenish\ their\ needs,\ socialize,\ and\ buy\ new\ stuff.\ The\ game\ currently\ has\ 7\ expansion\ packs,\ Livin\ Large,\ House\ Party,\ Hot\ Date,\ Vacation,\ Superstar,\ Makin\ Magic,\ and\ Unleashed.=The Sims is a simulation game that simulates people. With various goals and objectives you control people called sims. These sims require the user to periodically replenish their needs, socialize, and buy new stuff. The game currently has 7 expansion packs, Livin Large, House Party, Hot Date, Vacation, Superstar, Makin Magic, and Unleashed.
+
+#: i18n/tmp/Applications/Games/The Turing Test/application.js:1
+The\ Turing\ Test=The Turing Test
+
+#: i18n/tmp/Applications/Games/The Turing Test/application.js:2
+The\ Turing\ Test\ is\ a\ challenging\ first-person\ puzzle\ game\ set\ on\ Jupiter’s\ moon,\ Europa.\ You\ are\ Ava\ Turing,\ an\ engineer\ for\ the\ International\ Space\ Agency\ (ISA)\ sent\ to\ discover\ the\ cause\ behind\ the\ disappearance\ of\ the\ ground\ crew\ stationed\ there.=The Turing Test is a challenging first-person puzzle game set on Jupiter\u2019s moon, Europa. You are Ava Turing, an engineer for the International Space Agency (ISA) sent to discover the cause behind the disappearance of the ground crew stationed there.
+
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:1
+The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
+
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
+#: Redux/application.js:1
+The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
+
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
+The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
+
+#: i18n/tmp/Engines/Wine/Engine/application.js:2
+The\ Wine\ engine.=The Wine engine.
+
+#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:1
+The\ Witcher\ 3\:\ Wild\ Hunt=The Witcher 3\: Wild Hunt
+
+#: i18n/tmp/Applications/Games/The Witcher 3: Wild Hunt/application.js:2
+The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\ role-playing\ game\ set\ in\ a\ visually\ stunning\ fantasy\ universe\ full\ of\ meaningful\ choices\ and\ impactful\ consequences.\ In\ The\ Witcher\ you\ play\ as\ the\ professional\ monster\ hunter,\ Geralt\ of\ Rivia,\ tasked\ with\ finding\ a\ child\ of\ prophecy\ in\ a\ vast\ open\ world\ rich\ with\ merchant\ cities,\ viking\ pirate\ islands,\ dangerous\ mountain\ passes,\ and\ forgotten\ caverns\ to\ explore.=The Witcher\: Wild Hunt is a story-driven, next-generation open world role-playing game set in a visually stunning fantasy universe full of meaningful choices and impactful consequences. In The Witcher you play as the professional monster hunter, Geralt of Rivia, tasked with finding a child of prophecy in a vast open world rich with merchant cities, viking pirate islands, dangerous mountain passes, and forgotten caverns to explore.
+
+#: i18n/tmp/Applications/Games/The Witness/application.js:1
+The\ Witness=The Witness
+
+#: Engines/Wine/Shortcuts/Reader/script.js:61
+The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
+
+#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
+The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a\ nation\ to\ guide\ through\ the\ years\ in\ order\ to\ create\ a\ dominant\ global\ empire.\ Rule\ your\ nation\ through\ the\ centuries,\ with\ unparalleled\ freedom,\ depth\ and\ historical\ accuracy.=The empire building game Europa Universalis IV gives you control of a nation to guide through the years in order to create a dominant global empire. Rule your nation through the centuries, with unparalleled freedom, depth and historical accuracy.
+
+#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
+The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
+#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
+The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
+
+#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:2
+The\ gaming\ world's\ sexiest\ and\ most\ intrepid\ adventurer\ makes\ her\ triumphant\ return\ in\ Lara\ Croft\ Tomb\ Raider\:\ Legend\!
Follow Lara down a path of discovery as she travels the globe to remote, exotic locales in search of one of history's greatest artifacts that unleash unwelcome figures from Lara's mysterious past. With guns blazing, Lara must use her athletic ability and intellectual wits to explore vast, treacherous tombs, riddled with challenging puzzles and deadly traps. Experience the beginning of the new Legend in the most adrenaline-fueled Tomb Raider adventure ever\!
+
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/application.js:2
+The\ war\ rages\ on.\ The\ demonic\ threat\ has\ been\ banished\ from\ the\ battle-scarred\ fields\ of\ Azeroth,\ but\ peace\ is\ still\ a\ distant\ dream.\ The\ epic\ conflict\ that\ began\ in\ Warcraft\ III\:\ Reign\ of\ Chaos\ continues\ with\ more\ units,\ more\ missions,\ and\ more\ explosive\ strategic\ combat.
This\ set\ contains\ both\ Warcraft\ III\:\ Reign\ of\ Chaos\ and\ Warcraft\ III\:\ The\ Frozen\ Throne.=The war rages on. The demonic threat has been banished from the battle-scarred fields of Azeroth, but peace is still a distant dream. The epic conflict that began in Warcraft III\: Reign of Chaos continues with more units, more missions, and more explosive strategic combat.
Tropico\ 4\ also\ brings\ a\ new\ level\ of\ social\ interaction\ with\ the\ addition\ of\ Facebook\ and\ Twitter\ integration.\ Post\ comments\ on\ Twitter\ direct\ from\ the\ game\ and\ have\ updates\ go\ out\ when\ you\ complete\ missions\ or\ unlock\ new\ achievements.\ You\ can\ even\ take\ screenshots\ of\ your\ burgeoning\ island\ and\ post\ your\ dream\ creation\ on\ your\ Tropico\ 4\ Facebook\ page\ and\ compare\ your\ interactive\ Dictator\ Ranking\ on\ the\ online\ leaderboards.=The world is changing and Tropico is moving with the times - geographical powers rise and fall and the world market is dominated by new players with new demands and offers - and you, as El Presidente, face a whole new set of challenges. If you are to triumph over your naysayers you will need to gain as much support from your people as possible. Your decisions will shape the future of your nation, and more importantly, the size of your off-shore bank account.
Tropico 4 expands on the gameplay of the previous game with new political additions \u223c including more superpowers to negotiate with, along with the ability to elect ministers into power to help get your more controversial policies passed. But remember to keep your friends close and your enemies closer as everyone has an agenda\! Your political mettle will be thoroughly tested, as new natural disasters will have the populace clamoring for you and your cabinet to help them recover from some of the worst Mother Nature can dish out.
Tropico 4 also brings a new level of social interaction with the addition of Facebook and Twitter integration. Post comments on Twitter direct from the game and have updates go out when you complete missions or unlock new achievements. You can even take screenshots of your burgeoning island and post your dream creation on your Tropico 4 Facebook page and compare your interactive Dictator Ranking on the online leaderboards.
+
+#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
+The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
+
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
+This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
+
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
+This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
+
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
+This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
+
+#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
+Those\ intrepid\ invertebrates\ return\ with\ a\ vengeance\ in\ the\ much-loved\ Worms™\ Armageddon.\ It’s\ a\ whole\ new\ can\ of\ worms\!\ It’s\ hilarious\ fun\ that\ you\ can\ enjoy\ on\ your\ own\ or\ with\ all\ your\ friends.=Those intrepid invertebrates return with a vengeance in the much-loved Worms\u2122 Armageddon. It\u2019s a whole new can of worms\! It\u2019s hilarious fun that you can enjoy on your own or with all your friends.
+
+#: i18n/tmp/Applications/Games/Toki Tori/application.js:1
+Toki\ Tori=Toki Tori
+
+#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
+#: Shield/application.js:1
+Tom\ Clancy's\ Rainbow\ Six\ 3\ \:\ Raven\ Shield=Tom Clancy's Rainbow Six 3 \: Raven Shield
+
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/application.js:1
+Tom\ Clancy's\ Splinter\ Cell®=Tom Clancy's Splinter Cell\u00ae
+
+#: i18n/tmp/Applications/Games/Tom Clancy's The Division/application.js:1
+Tom\ Clancy’s\ The\ Division™=Tom Clancy\u2019s The Division\u2122
+
+#: i18n/tmp/Applications/Games/Tomb Raider Anniversary/application.js:1
+Tomb\ Raider\:\ Anniversary=Tomb Raider\: Anniversary
+
+#: i18n/tmp/Applications/Games/Tomb Raider Anniversary/application.js:2
+Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\ adventure\ globe-trotting\ 3rd\ person\ action-adventure\ in\ pursuit\ of\ the\ legendary\ Scion\ artifact.\ Using\ an\ enhanced\ 'Tomb\ Raider\:\ Legend'\ game\ engine,\ the\ graphics,\ technology\ and\ physics\ bring\ Lara's\ adventure\ and\ pursuit\ of\ a\ mystical\ artifact\ known\ only\ as\ the\ Scion\ right\ up\ to\ today's\ technology\ standards\ and\ offers\ gamers\ a\ completely\ new\ gameplay\ experience.\ Re-imagined,\ Anniversary\ delivers\ a\ dynamic\ fluidly\ and\ fast\ Lara\ Croft,\ massive\ environments\ of\ stunning\ visuals,\ intense\ combat\ and\ game\ pacing,\ and\ an\ enhanced\ and\ clarified\ original\ story.=Tomb Raider\: Anniversary retraces Lara Croft's original genre-defining adventure globe-trotting 3rd person action-adventure in pursuit of the legendary Scion artifact. Using an enhanced 'Tomb Raider\: Legend' game engine, the graphics, technology and physics bring Lara's adventure and pursuit of a mystical artifact known only as the Scion right up to today's technology standards and offers gamers a completely new gameplay experience. Re-imagined, Anniversary delivers a dynamic fluidly and fast Lara Croft, massive environments of stunning visuals, intense combat and game pacing, and an enhanced and clarified original story.
+
+#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
+Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
+
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
+Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
+
+#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
+Tomb\ Raider\:\ Underworld=Tomb Raider\: Underworld
+
+#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:2
+Tomb\ Raider\:\ Underworld\ represents\ a\ new\ advancement\ in\ exploration-based\ gameplay.\ As\ fearless\ adventurer\ Lara\ Croft\ explore\ exotic\ locations\ around\ the\ world,\ each\ designed\ with\ an\ incredible\ attention\ to\ detail\ resulting\ in\ breathtaking\ high-definition\ visual\ fidelity\ that\ creates\ a\ truly\ believable\ world\ and\ delivers\ a\ new\ level\ of\ challenge\ and\ choice.=Tomb Raider\: Underworld represents a new advancement in exploration-based gameplay. As fearless adventurer Lara Croft explore exotic locations around the world, each designed with an incredible attention to detail resulting in breathtaking high-definition visual fidelity that creates a truly believable world and delivers a new level of challenge and choice.
+
+#: i18n/tmp/Engines/Wine/Tools/application.js:2
+Tools\ for\ Wine.=Tools for Wine.
+
+#: i18n/tmp/Applications/Games/Total War Rome II/application.js:1
+Total\ War\:\ ROME\ II=Total War\: ROME II
+
+#: i18n/tmp/Applications/Games/Totally Accurate Battlegrounds/application.js:1
+Totally\ Accurate\ Battlegrounds=Totally Accurate Battlegrounds
+
+#: i18n/tmp/Applications/Games/Totally Accurate Battlegrounds/application.js:2
+Totally\ Accurate\ Battlegrounds\ is\ a\ parody\ of\ the\ Battle\ Royale\ genre.\ A\ bunch\ of\ physics-based\ weirdos\ fight\ it\ out\ on\ an\ island,\ everything\ is\ silly\ and\ possibly\ a\ bit\ buggy.=Totally Accurate Battlegrounds is a parody of the Battle Royale genre. A bunch of physics-based weirdos fight it out on an island, everything is silly and possibly a bit buggy.
+
+#: i18n/tmp/Applications/Games/Trackmania Turbo/application.js:2
+Trackmania\ offers\ you\ the\ ultimate\ arcade\ racing\ universe\ where\ everything\ is\ about\ reaching\ the\ perfect\ racing\ time.\ Test\ your\ skills\ in\ over\ 200\ tracks,\ experience\ immediate\ fun\ by\ challenging\ your\ friends\ at\ home\ (offline\ splitscreen)\ or\ online.=Trackmania offers you the ultimate arcade racing universe where everything is about reaching the perfect racing time. Test your skills in over 200 tracks, experience immediate fun by challenging your friends at home (offline splitscreen) or online.
+
+#: i18n/tmp/Applications/Games/Trackmania Turbo/application.js:1
+Trackmania®\ Turbo=Trackmania\u00ae Turbo
+
+#: i18n/tmp/Applications/Games/Tropico 3/application.js:1
+Tropico\ 3=Tropico 3
+
+#: i18n/tmp/Applications/Games/Tropico 4/application.js:1
+Tropico\ 4=Tropico 4
+
+#: i18n/tmp/Applications/Games/Unholy Heights/application.js:1
+Unholy\ Heights=Unholy Heights
+
+#: i18n/tmp/Applications/Games/The Room Two/application.js:2
+Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
+
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
+#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+Uplay=Uplay
+
+#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
+Uplay\ Script=Uplay Script
+
+#: i18n/tmp/Applications/Games/Uplay/application.js:2
+Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
+#: i18n/tmp/Utils/Functions/Apps/application.js:2
+Utils\ for\ apps.=Utils for apps.
+
+#: i18n/tmp/Utils/Functions/Filesystem/application.js:2
+Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
+
+#: i18n/tmp/Utils/Functions/Net/application.js:2
+Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
+#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
+VK9=VK9
+
+#: Engines/Wine/Verbs/VK9/script.js:42
+VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
+Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ imagination.\ Help\ Maxwell\ solve\ robust\ puzzles\ in\ seamless,\ free-roaming\ levels\ by\ summoning\ any\ object\ you\ can\ think\ of.\ Create\ your\ own\ original\ objects,\ assign\ unique\ properties,\ and\ share\ them\ with\ friends\ online\ using\ Steam\ Workshop\ –\ to\ be\ used\ in\ game\ or\ further\ modified\ as\ you\ like\!=Venture into a wide-open world where the most powerful tool is your imagination. Help Maxwell solve robust puzzles in seamless, free-roaming levels by summoning any object you can think of. Create your own original objects, assign unique properties, and share them with friends online using Steam Workshop \u2013 to be used in game or further modified as you like\!
+
+#: i18n/tmp/Engines/Wine/Verbs/application.js:2
+Verbs\ for\ Wine.=Verbs for Wine.
+
+#: Engines/Wine/Settings/video memory size/script.js:17
+Video\ memory\ size=Video memory size
+
+#: i18n/tmp/Applications/Games/Mafia II/application.js:2
+Vito\ Scaletta\ has\ started\ to\ make\ a\ name\ for\ himself\ on\ the\ streets\ of\ Empire\ Bay\ as\ someone\ who\ can\ be\ trusted\ to\ get\ a\ job\ done.\ Together\ with\ his\ buddy\ Joe,\ he\ is\ working\ to\ prove\ himself\ to\ the\ Mafia,\ quickly\ escalating\ up\ the\ family\ ladder\ with\ crimes\ of\ larger\ reward,\ status\ and\ consequence…\ the\ life\ as\ a\ wise\ guy\ isn’t\ quite\ as\ untouchable\ as\ it\ seems.=Vito Scaletta has started to make a name for himself on the streets of Empire Bay as someone who can be trusted to get a job done. Together with his buddy Joe, he is working to prove himself to the Mafia, quickly escalating up the family ladder with crimes of larger reward, status and consequence\u2026 the life as a wise guy isn\u2019t quite as untouchable as it seems.
+
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/application.js:1
+Warcraft®\ III\:\ Expansion\ Set=Warcraft\u00ae III\: Expansion Set
+
+#: i18n/tmp/Applications/Games/Warface/application.js:1
+Warface=Warface
+
+#: i18n/tmp/Applications/Games/Warface/application.js:2
+Warface\ offers\ an\ intense\ Co-op\ experience\ with\ daily\ new\ content,\ in\ which\ players\ can\ master\ unique\ teamwork\ moves\ and\ gameplay\ styles.\ They\ can\ also\ engage\ in\ fast-paced\ or\ tactical\ action\ in\ Versus\ modes\ such\ as\ Team\ Death\ Match\ or\ Plant\ The\ Bomb.=Warface offers an intense Co-op experience with daily new content, in which players can master unique teamwork moves and gameplay styles. They can also engage in fast-paced or tactical action in Versus modes such as Team Death Match or Plant The Bomb.
+
+#: i18n/tmp/Applications/Games/Warlock - Master of the Arcane/application.js:1
+Warlock\ -\ Master\ of\ the\ Arcane=Warlock - Master of the Arcane
+
+#: i18n/tmp/Applications/Games/ChromaGun/application.js:2
+Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\ state-of-the-art\ military-grade\ color-technology\:\ The\ ChromaGun\ (patent\ pending)\!\ Use\ it\ to\ try\ and\ solve\ our\ meticulously\ designed\ test\ chambers.\ The\ basic\ principle\ is\ as\ easy\ as\ applying\ it\ is\ complex\:\ Exit\ the\ chambers\ via\ the\ exit\ doors.\ But\ be\ weary\ of\ the\ WorkerDroids\ in\ charge\ of\ maintaining\ the\ chambers.\ They’re\ not\ exactly\ what\ you\ and\ I\ would\ call\ “human\ friendly”.
That\ being\ said,\ welcome\ and\ good\ luck\!=Welcome to ChromaTec\u2019s test lab\! You\u2019re here to test our newest, state-of-the-art military-grade color-technology\: The ChromaGun (patent pending)\! Use it to try and solve our meticulously designed test chambers. The basic principle is as easy as applying it is complex\: Exit the chambers via the exit doors. But be weary of the WorkerDroids in charge of maintaining the chambers. They\u2019re not exactly what you and I would call \u201chuman friendly\u201d.
Use the ChromaGun to colorize walls and WorkerDroids to progress in the chambers. WorkerDroids are attracted to walls of the same color. Using that mechanic, try to reach the exit door of each chamber. Some doors are more complicated to use than others\: They can only be opened using door triggers and only stay open as long as the triggers are occupied. br>If all of this sounds like your brain can handle it, congratulations\! You\u2019re the perfect candidate for our test chambers\!
That being said, welcome and good luck\!
+
+#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
+Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
+
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
+When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
+
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
+When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
+
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
+When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
+
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
+Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
+
+#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
+Wildlife\ Park\ 2=Wildlife Park 2
+
+#: i18n/tmp/Engines/Wine/Verbs/Windows XP SP 3/script.js:1
+Windows\ XP\ Service\ Pack\ 3=Windows XP Service Pack 3
+
+#: i18n/tmp/Engines/Wine/Tools/Reboot Wine/script.js:1
+Windows\ reboot=Windows reboot
+
+#: i18n/tmp/Engines/Wine/Plugins/Windows version/script.js:1
+Windows\ version=Windows version
+
+#: i18n/tmp/Engines/Wine/category.js:1
+Wine=Wine
+
+#: i18n/tmp/Engines/Wine/Engine/application.js:1
+Wine\ Engine=Wine Engine
+
+#: i18n/tmp/Engines/Wine/Plugins/application.js:1
+Wine\ Plugins=Wine Plugins
+
+#: i18n/tmp/Engines/Wine/Settings/application.js:1
+Wine\ Settings=Wine Settings
+
+#: i18n/tmp/Engines/Wine/Shortcuts/Wine/script.js:1
+Wine\ Shortcut=Wine Shortcut
+
+#: i18n/tmp/Engines/Wine/Shortcuts/application.js:1
+Wine\ Shortcuts=Wine Shortcuts
+
+#: i18n/tmp/Engines/Wine/Tools/application.js:1
+Wine\ Tools=Wine Tools
+
+#: i18n/tmp/Engines/Wine/Verbs/application.js:1
+Wine\ Verbs=Wine Verbs
+
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
+#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
+Wine\ engine=Wine engine
+
+#: i18n/tmp/Engines/Wine/Engine/Implementation/script.js:1
+Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation of Java interface)
+
+#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
+Wine\ uninstaller=Wine uninstaller
+
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
+#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
+Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
+#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
+Worms\ Armageddon=Worms Armageddon
+
+#: i18n/tmp/Applications/Games/Worms Reloaded/application.js:1
+Worms™\ Reloaded=Worms\u2122 Reloaded
+
+#: i18n/tmp/Applications/Games/Worms Reloaded/application.js:2
+Worms™\ Reloaded\ is\ a\ turn-based\ computer\ games\ developed\ by\ Team17\ Software.\ Players\ control\ a\ small\ platoon\ of\ earthworms\ across\ a\ deformable\ landscape,\ battling\ other\ computer-\ or\ player-controlled\ teams.\ The\ games\ feature\ bright\ and\ humorous\ cartoon-style\ animation\ and\ a\ varied\ arsenal\ of\ bizarre\ weapons.=Worms\u2122 Reloaded is a turn-based computer games developed by Team17 Software. Players control a small platoon of earthworms across a deformable landscape, battling other computer- or player-controlled teams. The games feature bright and humorous cartoon-style animation and a varied arsenal of bizarre weapons.
+
+#: i18n/tmp/Applications/Games/XIII/application.js:1
+XIII=XIII
+
+#: i18n/tmp/Applications/Games/XIII/application.js:2
+XIII\ is\ a\ first-person\ shooter\ video\ game\ developed\ by\ Ubisoft\ Paris\ and\ published\ by\ Ubisoft\ for\ most\ platforms.=XIII is a first-person shooter video game developed by Ubisoft Paris and published by Ubisoft for most platforms.
+
+#: i18n/tmp/Applications/Games/Xenon 2/application.js:1
+Xenon\ 2=Xenon 2
+
+#: i18n/tmp/Applications/Games/Far Cry 2/application.js:2
+You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricken\ with\ malaria\ and\ forced\ to\ make\ deals\ with\ corrupt\ warlords\ on\ both\ sides\ of\ the\ conflict\ in\ order\ to\ make\ this\ country\ your\ home.
You\ must\ identify\ and\ exploit\ your\ enemies'\ weaknesses,\ neutralizing\ their\ superior\ numbers\ and\ firepower\ with\ surprise,\ subversion,\ cunning\ and\ of\ course\ brute\ force.=You are a gun for hire, trapped in a war-torn African state, stricken with malaria and forced to make deals with corrupt warlords on both sides of the conflict in order to make this country your home.
You must identify and exploit your enemies' weaknesses, neutralizing their superior numbers and firepower with surprise, subversion, cunning and of course brute force.
+
+#: i18n/tmp/Applications/Games/Command and Conquer - Tiberium
+#: Wars/application.js:2
+You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
+
+#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
+You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
+
+#: i18n/tmp/Applications/Games/BRINK/application.js:2
+You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
+#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
+You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
+
+#: i18n/tmp/Applications/Games/The Witness/application.js:2
+You\ wake\ up,\ alone,\ on\ a\ strange\ island\ full\ of\ puzzles\ that\ will\ challenge\ and\ surprise\ you.
The\ Witness\ is\ a\ single-player\ game\ in\ an\ open\ world\ with\ dozens\ of\ locations\ to\ explore\ and\ over\ 500\ puzzles.\ This\ game\ respects\ you\ as\ an\ intelligent\ player\ and\ it\ treats\ your\ time\ as\ precious.\ There's\ no\ filler;\ each\ of\ those\ puzzles\ brings\ its\ own\ new\ idea\ into\ the\ mix.\ So,\ this\ is\ a\ game\ full\ of\ ideas.=You wake up, alone, on a strange island full of puzzles that will challenge and surprise you.
You don't remember who you are, and you don't remember how you got here, but there's one thing you can do\: explore the island in hope of discovering clues, regaining your memory, and somehow finding your way home.
The Witness is a single-player game in an open world with dozens of locations to explore and over 500 puzzles. This game respects you as an intelligent player and it treats your time as precious. There's no filler; each of those puzzles brings its own new idea into the mix. So, this is a game full of ideas.
+
+#: i18n/tmp/Applications/Games/The Crew/application.js:2
+Your\ car\ is\ your\ avatar\ -\ fine\ tune\ your\ ride\ as\ you\ level\ up\ and\ progress\ through\ 5\ unique\ and\ richly\ detailed\ regions\ of\ a\ massive\ open-world\ US.\ Maneuver\ through\ the\ bustling\ streets\ of\ New\ York\ City\ and\ Los\ Angeles,\ cruise\ down\ sunny\ Miami\ Beach\ or\ trek\ through\ the\ breathtaking\ plateaus\ of\ Monument\ Valley.\ Each\ locale\ comes\ with\ its\ own\ set\ of\ surprises\ and\ driving\ challenges\ to\ master.\ On\ your\ journey\ you\ will\ encounter\ other\ players\ on\ the\ road\ –\ all\ potentially\ worthy\ companions\ to\ crew\ up\ with,\ or\ future\ rivals\ to\ compete\ against.\ This\ is\ driving\ at\ its\ most\ exciting,\ varied\ and\ open.=Your car is your avatar - fine tune your ride as you level up and progress through 5 unique and richly detailed regions of a massive open-world US. Maneuver through the bustling streets of New York City and Los Angeles, cruise down sunny Miami Beach or trek through the breathtaking plateaus of Monument Valley. Each locale comes with its own set of surprises and driving challenges to master. On your journey you will encounter other players on the road \u2013 all potentially worthy companions to crew up with, or future rivals to compete against. This is driving at its most exciting, varied and open.
+
+#: i18n/tmp/Engines/Wine/QuickScript/Zip Script/script.js:1
+Zip\ Script=Zip Script
+
+#: i18n/tmp/Engines/Wine/Settings/always offscreen/script.js:1
+always\ offscreen=always offscreen
+
+#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
+amstream=amstream
+
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
+#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
+corefonts=corefonts
+
+#: i18n/tmp/Engines/Wine/Verbs/crypt32/script.js:1
+crypt32=crypt32
+
+#: i18n/tmp/Engines/Wine/Plugins/csmt/script.js:1
+csmt=csmt
+
+#: i18n/tmp/Engines/Wine/Verbs/d3drm/script.js:1
+d3drm=d3drm
+
+#: i18n/tmp/Engines/Wine/Verbs/d3dx10/script.js:1
+d3dx10=d3dx10
+
+#: i18n/tmp/Engines/Wine/Verbs/d3dx11/script.js:1
+d3dx11=d3dx11
+
+#: i18n/tmp/Engines/Wine/Verbs/d3dx9/script.js:1
+d3dx9=d3dx9
+
+#: i18n/tmp/Engines/Wine/Verbs/devenum/script.js:1
+devenum=devenum
+
+#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
+faudio=faudio
+
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
+fonts=fonts
+
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
+gdiplus=gdiplus
+
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
+#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
+hdpi=hdpi
+
+#: i18n/tmp/Engines/Wine/Verbs/luna/script.js:1
+luna=luna
+
+#: i18n/tmp/Applications/Internet/mIRC/application.js:1
+mIRC=mIRC
+
+#: i18n/tmp/Engines/Wine/Plugins/managed/script.js:1
+managed=managed
+
+#: i18n/tmp/Engines/Wine/Verbs/mfc42/script.js:1
+mfc42=mfc42
+
+#: i18n/tmp/Engines/Wine/Settings/mouse warp override/script.js:1
+mouse\ warp\ override=mouse warp override
+
+#: i18n/tmp/Engines/Wine/Verbs/msls31/script.js:1
+msls31=msls31
+
+#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
+mspatcha=mspatcha
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
+#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
+multisampling=multisampling
+
+#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
+native\ application=native application
+
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
+#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
+offscreen\ rendering\ mode=offscreen rendering mode
+
+#: i18n/tmp/Applications/Games/osu!/application.js:1
+osu\!=osu\!
+
+#: i18n/tmp/Applications/Games/osu!/application.js:2
+osu\!\ is\ a\ free-to-win\ online\ rhythm\ game.=osu\! is a free-to-win online rhythm game.
+
+#: i18n/tmp/Engines/Wine/Plugins/override DLL/script.js:1
+override\ DLL=override DLL
+
+#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
+quartz=quartz
+
+#: Engines/Wine/Settings/render target lock mode/script.js:11
+readdraw=readdraw
+
+#: Engines/Wine/Settings/render target lock mode/script.js:11
+readtext=readtext
+
+#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
+regedit=regedit
+
+#: i18n/tmp/Engines/Wine/Plugins/register font/script.js:1
+register\ font=register font
+
+#: i18n/tmp/Engines/Wine/Plugins/regsvr32/script.js:1
+regsvr32=regsvr32
+
+#: i18n/tmp/Engines/Wine/Settings/render target lock mode/script.js:1
+render\ target\ lock\ mode=render target lock mode
+
+#: i18n/tmp/Engines/Wine/Verbs/sandbox/script.js:1
+sandbox=sandbox
+
+#: i18n/tmp/Engines/Wine/Verbs/secur32/script.js:1
+secur32=secur32
+
+#: i18n/tmp/Engines/Wine/Plugins/sound driver/script.js:1
+sound\ driver=sound driver
+
+#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
+strict\ draw\ ordering=strict draw ordering
+
+#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
+v1.5=v1.5
+
+#: i18n/tmp/Applications/Internet/TeamSpeak 3/v3.0.19.4/script.js:1
+v3.0.19.4=v3.0.19.4
+
+#: i18n/tmp/Applications/Internet/mIRC/v7.46/script.js:1
+v7.46=v7.46
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2003/script.js:1
+vcrun2003=vcrun2003
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2005/script.js:1
+vcrun2005=vcrun2005
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2008/script.js:1
+vcrun2008=vcrun2008
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2010/script.js:1
+vcrun2010=vcrun2010
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2012/script.js:1
+vcrun2012=vcrun2012
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2013/script.js:1
+vcrun2013=vcrun2013
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2015/script.js:1
+vcrun2015=vcrun2015
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
+vcrun2017=vcrun2017
+
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
+#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
+video\ memory\ size=video memory size
+
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
+virtual\ desktop=virtual desktop
+
+#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
+vulkanSDK=vulkanSDK
+
+#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
+xact=xact
+
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
+{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
+
+#: i18n/tmp/Applications/Games/It came from space and ate our
+#: brains/application.js:2
+‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
diff --git a/i18n/Messages_fi.properties b/i18n/Messages_fi.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_fi.properties
+++ b/i18n/Messages_fi.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_fr.properties b/i18n/Messages_fr.properties
index 2e6aeaed4f..e8c570b158 100644
--- a/i18n/Messages_fr.properties
+++ b/i18n/Messages_fr.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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?=Une pure simulation immersive de science fiction \u00e0 un joueur. Plonger dans un monde modifi\u00e9 par vos choix \! Explorez, discutez, battez-vous ou faufilez-vous dans The Churchill Tower en 2041 \! Pourrez-vous survivre \u00e0 The Tower ?
+#: i18n/tmp/Applications/Games/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.=Far Cry\u00ae - Sous les tropiques \: l'Enfer. Ce jeu d'action et de tir repousse les fronti\u00e8res du combat virtuel dans ses derniers retranchements.
Vous \u00eates Jack Carver, un aventurier comme les autres, et vous n'auriez pas d\u00fb accepter de conduire cette jeune journaliste sur cette \u00eele apparemment paradisiaque.
\u00c0 peine le pied pos\u00e9 sur cette \u00eele vous \u00eates victime du feu nourri d'une myst\u00e9rieuse milice paramilitaire. Bilan \: bateau d\u00e9truit et journaliste enlev\u00e9e. Il vous reste un pistolet et une farouche d\u00e9termination.
Vous allez bient\u00f4t faire la rencontre d'un membre de cette milice qui vous r\u00e9v\u00e8lera les secrets de l'\u00eele. Vous n'aurez, \u00e0 partir de cet instant, plus le choix \: il va falloir combattre cette arm\u00e9e de mercenaires et contrecarrer leur plan d\u00e9moniaque.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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 est un jeu de plateforme et de casse-t\u00eates, dessin\u00e9 comme une peinture, o\u00f9 vous pouvez manipuler l'\u00e9coulement du temps d'une mani\u00e8re \u00e9trange et inhabituelle. Depuis une maison dans la ville, parcourez une s\u00e9rie de mondes et r\u00e9solvez des casse-t\u00eates pour sauver une princesse enlev\u00e9e.
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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 est une terre en guerre, offrant de grandes richesses et des dangers encore plus grands pour les aventuriers et les mercenaires qui affluent pour y verser leur sang sur son sol. Avec du courage et une \u00e9p\u00e9e forte, un \u00e9tranger inconnu peut se faire un nom comme guerrier.
-#: Engines/Wine/Engine/Implementation/script.js:214
+#: Engines/Wine/Engine/Implementation/script.js:414
Cannot\ run\ 64bit\ executable\ in\ a\ 32bit\ Wine\ prefix.=Ne peut pas lancer un ex\u00e9cutable 64bit dans un pr\u00e9fixe Wine 32bit.
-#: Utils/Functions/Filesystem/Files/script.js:172
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ Configure\ Wine=Configurer 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Impossible de d\u00e9terminer le type mime pour l''extension de fichier "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Impossible de d\u00e9sinstaller {0} \!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Personnalis\u00e9
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Script d'installation personnalis\u00e9
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: i18n/tmp/Applications/Development/category.js:1
Development=D\u00e9veloppement
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:12
-#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1
-#: i18n/tmp/Engines/Wine/Plugins/DirectDraw
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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=T\u00e9l\u00e9chargeur
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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 est la version ultime de ROME II, elle inclut un syst\u00e8me politique am\u00e9lior\u00e9, des cha\u00eenes de construction remani\u00e9es, des combats r\u00e9\u00e9quilibr\u00e9s et des visuels am\u00e9lior\u00e9s \u00e0 la fois en campagne et en bataille.
De plus, Emperor Edition inclut tout le contenu et les mises \u00e0 jour disponibles pour ROME II depuis son lancement en septembre 2013. Celles-ci incluent l'int\u00e9gration de Twitch.TV, les commandes tactiles, de nouvelles factions et unit\u00e9s jouables et la compatibilit\u00e9 Mac. Le pack de campagne Imperator Augustus ainsi que tout le contenu et fonctionnalit\u00e9s de Emperor Edition sont gratuits, via une mise \u00e0 jour gratuite pour tous les possesseurs de ROME II.
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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.=Engagez-vous dans un voyage du pouvoir tropical \! Devenez le dictateur d'une \u00eele perdue au cours de la guerre froide. Le charme, la persuasion, l'intimidation, l'oppression ou la triche, tout est bon pour rester au pouvoir \! \u00cates-vous un chef bon et g\u00e9n\u00e9reux? Un tyran \u00e0 la main de fer sans scrupules et aux pouvoirs corrompus ? Transformez votre \u00eele en un paradis touristique ou en une puissance industrielle. Faites des promesses \u00e9lectorales ou diffamez vos adversaires politiques pour obtenir le vote lors des prochaines \u00e9lections. Envoyez votre avatar f\u00e9liciter les gens, visitez l'\u00eele d'un autre joueur, ou simplement prenez un bain de soleil sur la plage des Cara\u00efbes.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}=Erreur pendant le calcul de la somme de contr\u00f4le de "{0}". \n\nAttendue \= {1}\nR\u00e9elle \= {2}
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1
@@ -408,7 +447,7 @@ 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.=Vous \u00eates-vous jamais demand\u00e9 ce qu'un quadrillion de d\u00e9g\u00e2t par seconde faisait ? Ne vous posez plus de questions \! Embarquez sur votre qu\u00eate pour l'atteindre aujourd'hui \! Commencez par cliquer sur les monstres pour les tuer et obtenir leur or. D\u00e9penser cet or lors de l'embauche de nouveaux h\u00e9ros et faites plus de d\u00e9g\u00e2ts. Plus vous infligez de d\u00e9g\u00e2ts, plus vous obtiendrez d'or.
-#: Engines/Wine/Shortcuts/Wine/script.js:120
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Ex\u00e9cutable {0} introuvable \!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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).=Soyez Batman et affrontez les super-vilains de Gotham City. Parcourez l'asile d'Arkham et son \u00eele terrifiante.
Le jeu Batman\: Arkham Asylum, r\u00e9compens\u00e9 par les critiques, revient dans une \u00e9dition remast\u00e9ris\u00e9e "Game of the Year" qui comporte 4 nouvelles cartes pour le mode D\u00e9fi. Dans ce lot de 4 cartes figurent l'All\u00e9e du Crime, Cauchemar, Compl\u00e8tement fou, et Chasseur Nocturne (les deux derni\u00e8res proviennent du pack de cartes Nuit d\u00e9mentielle).
-#: 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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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 marche dans les pas du l\u00e9gendaire mentor Alta\u00efr, dans un dangereux p\u00e9riple de d\u00e9couvertes et r\u00e9v\u00e9lations.
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_hu.properties b/i18n/Messages_hu.properties
index ee2182024f..2d1a29217f 100644
--- a/i18n/Messages_hu.properties
+++ b/i18n/Messages_hu.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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?=Egy tiszta sci-fi egyj\u00e1t\u00e9kos szimul\u00e1ci\u00f3. Mer\u00fclj el egy olyan vil\u00e1gba, amelyet az \u00d6n v\u00e1laszt\u00e1sai alkotnak\! Fedezd fel, besz\u00e9lj, harcolj vagy harcolj a Churchill-toronyon 2042-ben\! Meg tudja \u00e9lni a tornyot?
+#: i18n/tmp/Applications/Games/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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 tr\u00f3pusi paradicsomban forr rejtett gonosz Far Cry\u00ae, a ravaszul r\u00e9szletezett akci\u00f3 vad\u00e1sz, hogy kitolja a hat\u00e1rait harci sokkol\u00f3 \u00faj szinteket.
Szabad\u00fasz\u00f3 tenger\u00e9sz Carver Jack van \u00e1tkozva a napon, amikor sem j\u00f6tt erre a szigetre. Egy h\u00e9ttel ezel\u0151tt a Val\u00e9ria nev\u0171 r\u00e1men\u0151s-riporter hihetetlen \u00f6sszeg\u0171 k\u00e9szp\u00e9nzt aj\u00e1nlott neki, hogy vigye mag\u00e1hoz ezt az \u00e9rintetlen paradicsomot. R\u00f6viddel a dokkol\u00e1s ut\u00e1n Jack haj\u00f3j\u00e1t egy titokzatos t\u0171z k\u00f6sz\u00f6nt\u00f6tte egy titokzatos mil\u00edcia csoport, amely a szigeten zajlott.
A haj\u00f3ja elpusztult, p\u00e9nz\u00e9b\u0151l elt\u0171nt, \u00e9s a gy\u00f6ny\u00f6r\u0171 Val\u00e9ria hirtelen elt\u0171nt, Jack most m\u00e1r szembes\u00fcl egy zsoldos hadsereg a sziget vadjainak k\u00f6zepette, csak egy pisztolyt \u00e9s az eszeit, hogy t\u00fal\u00e9lje. De min\u00e9l jobban behatol a buja dzsungel-baldachinba, az idegen dolgok v\u00e1lnak.
Jack tal\u00e1lkozik egy bennfentesekkel a mil\u00edcia csoporton bel\u00fcl, aki felt\u00e1rja a zsoldosok val\u00f3di sz\u00e1nd\u00e9kainak sz\u00f6rny\u0171 r\u00e9szleteit. Zavarba ejt\u0151 v\u00e1laszt\u00e1ssal mutat be Jacket\: harcoljon a legvesz\u00e9lyesebb zsoldosokkal, vagy el\u00edt\u00e9lje az emberis\u00e9get egy m\u00e1ni\u00e1kus \u00e1rtatlan napirendj\u00e9re.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection \u2013 A birodalmak kora 3. sorozat\: teljes gy\u0171jtem\u00e9ny
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Mindig k\u00e9perny\u0151n k\u00edv\u00fcl
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf \u2013 hang-hull\u00e1mt\u00f6r\u00e9s
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK \u2013 sz\u00e9le
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Vissza puffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ Braid=Braid \u2013 Fonat
#: 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=A f\u00e1jl ellen\u0151rz\u00e9se\u2026
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ Configure\ Wine=A Wine be\u00e1ll\u00edt\u00e1sai
#: i18n/tmp/Applications/Games/Consortium: The Tower/application.js:1
Consortium\:\ The\ Tower=Consortium\: The Tower
-#: Engines/Wine/Plugins/native application/script.js:28
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=A(z) {0} elt\u00e1vol\u00edt\u00e1sa sikertelen.
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Egy\u00e9ni
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Egy\u00e9ni telep\u00edt\u0151 parancsf\u00e1jl
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online \u2013 k\u00e9preg\u00e9ny nyomoz\u00f3 univerzum online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Alap\u00e9rtelmezett
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: i18n/tmp/Applications/Development/category.js:1
Development=Fejleszt\u00e9s
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:12
-#: i18n/tmp/Engines/Wine/Settings/DirectDraw renderer/script.js:1
-#: i18n/tmp/Engines/Wine/Plugins/DirectDraw
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Tiltva
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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=Let\u00f6lt\u0151
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ Dragon\ Ball\ Xenoverse\ 2=Dragon Ball Xenoverse 2
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:1
Druid\ Soccer=Druid Soccer \u2013 \u00f6skelta pap futball
-#: 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enged\u00e9lyezve
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
Error\ while\ calculating\ checksum\ for\ "{0}".\ \n\nExpected\ \=\ {1}\nActual\ \=\ {2}={0} f\u00e1jlellen\u0151rz\u0151 hiba.\n\nv\u00e1rhat\u00f3 ellen\u0151rz\u0151\u00f6sszeg \= {1}\nsz\u00e1m\u00edtott ellen\u0151rz\u0151\u00f6sszeg \= {2}
#: i18n/tmp/Applications/Games/Ether One Redux/application.js:1
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=A(z) {0} v\u00e9grehajthat\u00f3 f\u00e1jl nem tal\u00e1lhat\u00f3.
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
Extracting\ {0}...=A(z) {0} kicsomagol\u00e1sa\u2026
#: 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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=F\u00e1jl kicsomagol\u00e1sok
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=F\u00fcggv\u00e9ny
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=J\u00e1t\u00e9k
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Grafika
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Telep\u00edt\u0151 parancsf\u00e1jl
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
Installing\ version\:\ {0}=Verzi\u00f3 telep\u00edt\u00e9se\: {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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=A(z) {0} telep\u00edt\u00e9se\u2026
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Helyi
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II \u2013 Maffia 2. sorozat
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multim\u00e9dia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Iroda
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=K\u00e9perny\u0151n k\u00edv\u00fcli megjelen\u00edt\u00e9si m\u00f3d
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Csatlakoz\u00e1s
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Csatlakoz\u00e1s (bemutat\u00e1s)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Csatlakoz\u00e1s (hagyom\u00e1nyos)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Csatlakoz\u00e1s telep\u00edt\u0151
@@ -843,15 +915,15 @@ Online\ Installer\ Script=Csatlakoz\u00e1s telep\u00edt\u0151 parancsf\u00e1jl
#: i18n/tmp/Engines/Wine/Tools/Wine Terminal Opener/script.js:1
Open\ a\ terminal=Termin\u00e1l megnyit\u00e1sa
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=A folytat\u00e1shoz z\u00e1rja be az Uplay programot.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
Please\ ensure\ that\ winbind\ is\ installed\ before\ you\ continue.=Gy\u0151z\u0151dj\u00f6n meg arr\u00f3l, hogy telep\u00edtett winbind a folytat\u00e1s el\u0151tt.
-#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:15
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=V\u00e1lasszon ZIP arch\u00edv f\u00e1jlt (.zip).
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=V\u00e1lasszon SP3 f\u00e1jlt.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=V\u00e1lasszon let\u00f6lt\u00e9si URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=V\u00e1lasszon v\u00e9grehajthat\u00f3 f\u00e1jlt.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=V\u00e1lasszon telep\u00edt\u00e9si f\u00e1jlt.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=V\u00e1lasszon Wine \u00e9p\u00edt\u00e9szet.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=V\u00e1lasszon Wine eloszt\u00e1st.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=V\u00e1lasszon Wine verzi\u00f3t.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=K\u00e9rem v\u00e1rjon, am\u00edg a Steam befejezte a let\u00f6lt\u00e9st\u2026
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=K\u00e9rem v\u00e1rjon, am\u00edg az Uplay befejezte a let\u00f6lt\u00e9st\u2026
-#: Utils/Functions/Net/Resource/script.js:80
-#: Utils/Functions/Net/Download/script.js:108
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
Please\ wait\ while\ {0}\ is\ downloaded...=A(z) {0} let\u00f6lt\u00e9se, k\u00e9rem v\u00e1rjon\u2026
-#: Utils/Functions/Filesystem/Extract/script.js:57
-#: Utils/Functions/Filesystem/Extract/script.js:133
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=A(z) {0} kicsomagol\u00e1sa, k\u00e9rem v\u00e1rjon\u2026
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=A(z) {0} telep\u00edt\u00e9se, k\u00e9rem v\u00e1rjon\u2026
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
Please\ wait\ while\ {0}\ is\ uninstalled...=A(z) {0} elt\u00e1vol\u00edt\u00e1sa, k\u00e9rem v\u00e1rjon\u2026
-#: Applications/Internet/Internet Explorer 6.0/Online/script.js:74
-#: Engines/Wine/Verbs/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=K\u00e9rem v\u00e1rjon\u2026
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Az el\u0151tag 32-bitesnek t\u0171nik
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=A(z) {0} nyilv\u00e1ntart\u00e1sa\u2026
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Rendszerle\u00edr\u00f3adatb\u00e1zis-szerkeszt\u0151
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Tudom\u00e1ny
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=V\u00e1lassza ki a ter\u00fcletet a jav\u00edt\u00e1shoz (1,0 \u00e9s 1,60 k\u00f6z\u00f6tt).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=V\u00e1lassza ki a ter\u00fcletet\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (bemutat\u00e1s)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Stream parancsf\u00e1jl
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness \u2013 A tan\u00fa
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=A(z) {0} t\u00e1rol\u00f3 m\u00e1r nem haszn\u00e1lt.\nSzeretne t\u00f6r\u00f6lni?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend \u2013 S\u00edr tolvaj\: legenda
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian \u2013 S\u00edr tolvaj\: a Xian t\u0151rje
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay parancsf\u00e1jl
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Alkalmaz\u00e1s eszk\u00f6z\u00f6k
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=F\u00e1jlrendszer-eszk\u00f6z\u00f6k
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Internetes eszk\u00f6z\u00f6k
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Wine ig\u00e9k
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Melyik nyelvet szeretne telep\u00edteni?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine-i eszk\u00f6z\u00f6k
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine ig\u00e9k
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine-szolg\u00e1ltat\u00e1s
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine elt\u00e1vol\u00edt\u00f3
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=Mindig k\u00e9perny\u0151n k\u00edv\u00fcl
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_it.properties b/i18n/Messages_it.properties
index c30ab8da12..106c9ff00e 100644
--- a/i18n/Messages_it.properties
+++ b/i18n/Messages_it.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -34,13 +37,13 @@
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.
+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 \u00e8 un archiviatore di file con un rapporto di compressione elevato. 7-zip \u00e8 software open source. La maggior parte del codice sorgente \u00e8 sotto la licenza GNU LGPL. Il codice unRAR \u00e8 sotto una licenza mista\: GNU LGPL + restrizioni unRAR. \u00c8 possibile utilizzare 7-Zip su qualsiasi computer, tra cui un computer in un'organizzazione commerciale. Non devi registrarsi o pagare per 7-Zip.
#: i18n/tmp/Applications/Accessories/7-zip/application.js:1
7-zip=7-zip
#: i18n/tmp/Applications/Graphics/Photofiltre/application.js:2
-Introduction 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.=Introduction 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.
+Introduction 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.=Introduzione PhotoFiltre Studio \u00e8 un programma di ritocco immagine completa. Ti permette di fare regolazioni semplici o avanzati a un'immagine e applicare una vasta gamma di filtri su di esso. \u00c8 semplice e intuitivo da usare, ed ha un facile curva di apprendimento. La barra degli strumenti, che vi d\u00e0 accesso ai filtri standard con pochi clic, offre PhotoFiltre Studio un aspetto robusto. PhotoFiltre Studio \u00e8 anche strato manager (con canale alfa) pennelli, avanzati ugelli (o tubi), occhi rossi correttore, modulo batch e molti altri potenti strumenti.
#: i18n/tmp/Applications/Internet/mIRC/application.js:2
mIRC is a popular Internet Relay Chat client 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 Internet community for over a decade, mIRC has evolved into a powerful, reliable and fun piece of technology.
@@ -61,14 +64,17 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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
+Accessories=Accessori
#: i18n/tmp/Applications/Office/Adobe Acrobat Reader DC/application.js:1
-Adobe\ Acrobat\ Reader\ DC=Adobe Acrobat Reader DC
+Adobe\ Acrobat\ Reader\ DC=Lettore Adobe Acrobat 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.
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.
Premium features, online services and updates do not work.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -103,7 +109,7 @@ Anno\ 2070=Anno 2070
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
+App\ Resources=Risorse app
#: i18n/tmp/Utils/Functions/Apps/application.js:1
App\ Utils=App Utils
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -154,7 +163,7 @@ Batman\:\ Arkham\ City\ builds\ upon\ the\ intense,\ atmospheric\ foundation\ of
Batman™\:\ Arkham\ Asylum=Batman\u2122\: Arkham Asylum
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:1
-Batman™\:\ Arkham\ City=Batman\u2122\: Arkham City
+Batman™\:\ Arkham\ City=Batman\u2122\: Arkham Asylum
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Origins/application.js:1
Batman™\:\ Arkham\ Origins=Batman\u2122\: Arkham Origins
@@ -175,7 +184,7 @@ Become\ a\ zoo\ manager\ and\ take\ good\ care\ of\ your\ animals.\ Wildlife\ Pa
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/Subnautica Below Zero/application.js:2
-Below\ Zero\ is\ an\ underwater\ adventure\ game\ set\ on\ an\ alien\ ocean\ world.\ It\ is\ a\ new\ chapter\ in\ the\ Subnautica\ universe,\ and\ is\ currently\ in\ development\ by\ Unknown\ Worlds. Return\ to\ planet\ 4546B Dive\ into\ a\ freezing\ underwater\ adventure.\ Below\ Zero\ is\ set\ in\ an\ arctic\ region\ of\ planet\ 4546B.\ As\ a\ scientist\ posted\ to\ a\ research\ station\ on\ the\ planet's\ surface,\ you\ are\ tasked\ with\ studying\ alien\ artefacts.\ The\ Vesper\ space\ station\ orbits\ high\ above\ you,\ sending\ supplies,\ instructions,\ and\ receiving\ samples\ you\ launch\ from\ the\ surface.\ When\ disaster\ strikes\ the\ research\ station,\ you\ must\ improvise\ to\ survive\:\ Construct\ habitats,\ scavenge\ for\ resources,\ hunt\ for\ food,\ and\ craft\ equipment. Explore\ new\ biomes Swim\ beneath\ the\ blue-lit,\ arching\ growth\ of\ Twisty\ Bridges.\ Navigate\ treacherous\ ice\ floes\ on\ the\ ocean\ surface.\ Clamber\ up\ snow\ covered\ peaks,\ and\ venture\ into\ icy\ caves.\ Maneuver\ between\ steaming\ Thermal\ Vents.\ Below\ Zero\ presents\ entirely\ new\ environments\ for\ you\ to\ survive,\ study,\ and\ explore.\ Discover\ new\ lifeforms\ in\ the\ icy\ depths\ of\ 4546B.\ Swim\ through\ the\ giant\ Titan\ Holefish,\ escape\ from\ the\ aggressive\ Brute\ Shark,\ and\ visit\ the\ adorable\ Pengwings.\ Some\ residents\ of\ the\ frozen\ ocean\ will\ help\ you,\ and\ some\ might\ try\ to\ harm\ you.=Below Zero is an underwater adventure game set on an alien ocean world. It is a new chapter in the Subnautica universe, and is currently in development by Unknown Worlds. Return to planet 4546B Dive into a freezing underwater adventure. Below Zero is set in an arctic region of planet 4546B. As a scientist posted to a research station on the planet's surface, you are tasked with studying alien artefacts. The Vesper space station orbits high above you, sending supplies, instructions, and receiving samples you launch from the surface. When disaster strikes the research station, you must improvise to survive\: Construct habitats, scavenge for resources, hunt for food, and craft equipment. Explore new biomes Swim beneath the blue-lit, arching growth of Twisty Bridges. Navigate treacherous ice floes on the ocean surface. Clamber up snow covered peaks, and venture into icy caves. Maneuver between steaming Thermal Vents. Below Zero presents entirely new environments for you to survive, study, and explore. Discover new lifeforms in the icy depths of 4546B. Swim through the giant Titan Holefish, escape from the aggressive Brute Shark, and visit the adorable Pengwings. Some residents of the frozen ocean will help you, and some might try to harm you.
+Below\ Zero\ is\ an\ underwater\ adventure\ game\ set\ on\ an\ alien\ ocean\ world.\ It\ is\ a\ new\ chapter\ in\ the\ Subnautica\ universe,\ and\ is\ currently\ in\ development\ by\ Unknown\ Worlds. Return\ to\ planet\ 4546B Dive\ into\ a\ freezing\ underwater\ adventure.\ Below\ Zero\ is\ set\ in\ an\ arctic\ region\ of\ planet\ 4546B.\ As\ a\ scientist\ posted\ to\ a\ research\ station\ on\ the\ planet's\ surface,\ you\ are\ tasked\ with\ studying\ alien\ artefacts.\ The\ Vesper\ space\ station\ orbits\ high\ above\ you,\ sending\ supplies,\ instructions,\ and\ receiving\ samples\ you\ launch\ from\ the\ surface.\ When\ disaster\ strikes\ the\ research\ station,\ you\ must\ improvise\ to\ survive\:\ Construct\ habitats,\ scavenge\ for\ resources,\ hunt\ for\ food,\ and\ craft\ equipment. Explore\ new\ biomes Swim\ beneath\ the\ blue-lit,\ arching\ growth\ of\ Twisty\ Bridges.\ Navigate\ treacherous\ ice\ floes\ on\ the\ ocean\ surface.\ Clamber\ up\ snow\ covered\ peaks,\ and\ venture\ into\ icy\ caves.\ Maneuver\ between\ steaming\ Thermal\ Vents.\ Below\ Zero\ presents\ entirely\ new\ environments\ for\ you\ to\ survive,\ study,\ and\ explore.\ Discover\ new\ lifeforms\ in\ the\ icy\ depths\ of\ 4546B.\ Swim\ through\ the\ giant\ Titan\ Holefish,\ escape\ from\ the\ aggressive\ Brute\ Shark,\ and\ visit\ the\ adorable\ Pengwings.\ Some\ residents\ of\ the\ frozen\ ocean\ will\ help\ you,\ and\ some\ might\ try\ to\ harm\ you.=Sotto Zero \u00e8 un gioco di avventura subacquea ambientato in un mondo alieno. Un nuovo capitolo nell'universo di Subnautica \u00e8 attualmente in sviluppo di mondi sconosciuti. ritorno al pianeta 4546B immersioni in una gelida avventura subacquea. Sotto Zero \u00e8 situato in una regione artica del pianeta 4546B. Come uno scienziato \u00e8 inviato ad una stazione di ricerca sulla superficie del pianeta, hanno il compito di studiare i manufatti alieni. La stazione spaziale di Vesper orbita alta sopra voi, invio forniture, istruzioni, e raccogliendo campioni si avvia dalla superficie. Quando il disastro colpisce la stazione di ricerca, si deve improvvisare per sopravvivere\: costruire habitat, lo scavenging per le risorse, a caccia di cibo e attrezzature del mestiere. Esplora nuovi biomi nuotate sotto l'illuminata di blu, inarcando la crescita di Twisty ponti. Navigare infidi lastroni di ghiaccio sulla superficie dell'oceano. Inerpicano cime innevate e avventurarsi in grotte ghiacciate. Manovra tra bocche termali fumanti. Sotto Zero presenta ambienti completamente nuovi per poter sopravvivere, studiare ed esplorare. Scoprire nuove forme di vita in profondit\u00e0 ghiacciate del 4546B. Nuotare attraverso il gigante Titan Holefish, fuga dallo squalo bruta aggressivo e visitare il Pengwings adorabile. Alcuni residenti dell'oceano ghiacciato vi aiuter\u00e0, e alcuni potrebbero tentare di farti del male.
#: i18n/tmp/Applications/Games/Beyond Good and Evil/application.js:1
Beyond\ Good\ and\ Evil™=Beyond Good and Evil\u2122
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -260,15 +275,15 @@ Command\ or\ corrupt\ an\ entire\ galaxy\ in\ the\ definitive\ Star\ Wars\ strat
Command\ prompt=Command prompt
#: i18n/tmp/Engines/Wine/Tools/Configure Wine/script.js:1
-Configure\ Wine=Configure Wine
+Configure\ Wine=Configura 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -278,11 +293,17 @@ Crayon\ Physics=Crayon Physics
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
+Custom=Personalizzato
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -290,7 +311,7 @@ DC\ Universe\ Online=DC Universe Online
DOOM\ (2016)=DOOM (2016)
#: i18n/tmp/Engines/Wine/Plugins/DOS support/script.js:1
-DOS\ support=DOS support
+DOS\ support=Supporto DOS
#: 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.
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.
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.
@@ -298,18 +319,20 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
-DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-
-#: 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
+#: Engines/Wine/Verbs/DXVK/script.js:45
+DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK potrebbe non funzionare correttamente su macOS. Questo dipende dal supporto api e dall'avanzamento e dal livello di compatibilit\u00e0 MoltenVK
+
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Default=Predefinito
#: 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\ –\ whether\ you’re\ 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.
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,12 +403,13 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
+Enabled=Abilitato
#: i18n/tmp/Applications/Games/Enderal/application.js:1
Enderal=Enderal
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,11 +491,17 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Recupero elenco versioni...
+
#: 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
+File\ Utilities=Utilit\u00e0 file
#: i18n/tmp/Utils/Functions/Filesystem/application.js:1
Filesystem\ Utils=Filesystem Utils
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
+Force=Forza
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,15 +543,15 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
-GLSL\ support=GLSL support
+#: Engines/Wine/Settings/GLSL/script.js:17
+GLSL\ support=Supporto GLSL
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
#: i18n/tmp/Applications/Games/Teenagent/GOG/script.js:1
@@ -514,7 +564,10 @@ GOG\ GALAXY\ is\ a\ fully\ optional\ Steam-like\ client\ for\ GOG.com\ to\ insta
GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
-Games=Games
+Games=Giochi
+
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Rilasci di Github
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -523,7 +576,10 @@ GoG\ Script=GoG Script
Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
-Graphics=Graphics
+Graphics=Grafica
+
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
-Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Assicurati di avere gli ultimi driver (418.30 minimo per NVIDIA e mesa 19 per AMD) o altrimenti DXVK potrebbe non funzionare correttamente.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Si prega di selezionare la distribuzione di wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Si prega di selezionare la versione di wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1089,9 +1179,9 @@ Registry\ Editor=Registry Editor
Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Half-Life in this highly acclaimed, fan-made recreation
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
-Remove\ Mono=Remove Mono
+Remove\ Mono=Rimuovi Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1361,7 +1466,7 @@ Styx\:\ Shards\ of\ Darkness=Styx\: Shards of Darkness
Subnautica=Subnautica
#: i18n/tmp/Applications/Games/Subnautica Below Zero/application.js:1
-Subnautica\ Below\ Zero=Subnautica Below Zero
+Subnautica\ Below\ Zero=Subnautica Sotto Zero
#: i18n/tmp/Applications/Games/Subnautica/application.js:2
Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underwater\ world.\ After\ an\ emergency\ landing\ on\ a\ foreign\ water\ planet\ you\ can\ only\ look\ in\ the\ depths.\ Discover\ seaweed\ forests\ and\ grass\ plateaus,\ reefs\ and\ labyrinths\ of\ underwater\ caves,\ but\ remember\ the\ ever-diminished\ oxygen.\ Water\ is\ swarming\ with\ life\:\ some\ creatures\ are\ useful,\ but\ a\ large\ part\ is\ dangerous.\ When\ you\ wake\ up\ in\ a\ life\ capsule,\ you\ fight\ with\ time\ -\ you\ need\ to\ find\ drinking\ water,\ food,\ and\ develop\ equipment\ that\ will\ be\ useful\ during\ exploration.\ Collect\ resources\ from\ the\ ocean\ around\ you.\ Create\ knives,\ lighting,\ diving\ equipment,\ and\ build\ small\ submarines.\ The\ ocean\ is\ full\ of\ life\:\ use\ the\ ecosystem\ to\ your\ advantage.\ Lure\ and\ outwit\ the\ dangerous\ creature\ with\ a\ fresh\ fish,\ or\ just\ swim\ as\ fast\ as\ you\ can\ to\ avoid\ the\ jaws\ of\ omnipresent\ predators.\ Cave\ systems\ extend\ below\ the\ bottom\ of\ the\ ocean\ -\ from\ dark,\ claustrophobic\ passages\ to\ caves\ illuminated\ by\ bioluminescent\ life\ forms.\ Explore\ the\ world\ below\ the\ bottom\ of\ the\ ocean,\ but\ watch\ out\ for\ oxygen\ levels\ and\ avoid\ the\ dangers\ lurking\ in\ the\ dark.=Subnautica is a game about exploration and adventure set in an underwater world. After an emergency landing on a foreign water planet you can only look in the depths. Discover seaweed forests and grass plateaus, reefs and labyrinths of underwater caves, but remember the ever-diminished oxygen. Water is swarming with life\: some creatures are useful, but a large part is dangerous. When you wake up in a life capsule, you fight with time - you need to find drinking water, food, and develop equipment that will be useful during exploration. Collect resources from the ocean around you. Create knives, lighting, diving equipment, and build small submarines. The ocean is full of life\: use the ecosystem to your advantage. Lure and outwit the dangerous creature with a fresh fish, or just swim as fast as you can to avoid the jaws of omnipresent predators. Cave systems extend below the bottom of the ocean - from dark, claustrophobic passages to caves illuminated by bioluminescent life forms. Explore the world below the bottom of the ocean, but watch out for oxygen levels and avoid the dangers lurking in the dark.
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=Utilit\u00e0 di Sistema
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,26 +1612,29 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
-This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
-This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
+This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=Questo pacchetto ({0}) non funziona attualmente. Utilizzarlo solo per il test\!
+
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
+This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=Questo pacchetto ({0}) potrebbe non funzionare completamente su un''installazione a 64 bit. I prefissi a 32 bit potrebbero funzionare meglio.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
Those\ intrepid\ invertebrates\ return\ with\ a\ vengeance\ in\ the\ much-loved\ Worms™\ Armageddon.\ It’s\ a\ whole\ new\ can\ of\ worms\!\ It’s\ hilarious\ fun\ that\ you\ can\ enjoy\ on\ your\ own\ or\ with\ all\ your\ friends.=Those intrepid invertebrates return with a vengeance in the much-loved Worms\u2122 Armageddon. It\u2019s a whole new can of worms\! It\u2019s hilarious fun that you can enjoy on your own or with all your friends.
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,11 +1738,14 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utilit\u00e0 per l'interazione del sistema.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
-VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+#: Engines/Wine/Verbs/VK9/script.js:42
+VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 potrebbe non funzionare correttamente su macOS. Questo dipende dal supporto api e dall'avanzamento dello strato di compatibilit\u00e0 MoltenVK
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\ imagination.\ Help\ Maxwell\ solve\ robust\ puzzles\ in\ seamless,\ free-roaming\ levels\ by\ summoning\ any\ object\ you\ can\ think\ of.\ Create\ your\ own\ original\ objects,\ assign\ unique\ properties,\ and\ share\ them\ with\ friends\ online\ using\ Steam\ Workshop\ –\ to\ be\ used\ in\ game\ or\ further\ modified\ as\ you\ like\!=Venture into a wide-open world where the most powerful tool is your imagination. Help Maxwell solve robust puzzles in seamless, free-roaming levels by summoning any object you can think of. Create your own original objects, assign unique properties, and share them with friends online using Steam Workshop \u2013 to be used in game or further modified as you like\!
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Costanti di Wine
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Versioni di Wine
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ja.properties b/i18n/Messages_ja.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_ja.properties
+++ b/i18n/Messages_ja.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ko.properties b/i18n/Messages_ko.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_ko.properties
+++ b/i18n/Messages_ko.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_nl.properties b/i18n/Messages_nl.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_nl.properties
+++ b/i18n/Messages_nl.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_no.properties b/i18n/Messages_no.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_no.properties
+++ b/i18n/Messages_no.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_pl.properties b/i18n/Messages_pl.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_pl.properties
+++ b/i18n/Messages_pl.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_pt.properties b/i18n/Messages_pt.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_pt.properties
+++ b/i18n/Messages_pt.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ro.properties b/i18n/Messages_ro.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_ro.properties
+++ b/i18n/Messages_ro.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_ru.properties b/i18n/Messages_ru.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_ru.properties
+++ b/i18n/Messages_ru.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_sk.properties b/i18n/Messages_sk.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_sk.properties
+++ b/i18n/Messages_sk.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_sr.properties b/i18n/Messages_sr.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_sr.properties
+++ b/i18n/Messages_sr.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_sv.properties b/i18n/Messages_sv.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_sv.properties
+++ b/i18n/Messages_sv.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_tr.properties b/i18n/Messages_tr.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_tr.properties
+++ b/i18n/Messages_tr.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_uk.properties b/i18n/Messages_uk.properties
index c30ab8da12..ae268f5a63 100644
--- a/i18n/Messages_uk.properties
+++ b/i18n/Messages_uk.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,49 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -834,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -843,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -876,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -886,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:32
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1060,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1079,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1091,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1106,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1115,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1137,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1169,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1210,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1222,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1348,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1369,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1461,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1477,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1486,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1501,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1547,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1587,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1603,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1612,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1624,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1648,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1697,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1706,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1735,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1759,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1786,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1817,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1838,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1868,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1904,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1916,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_vi.properties b/i18n/Messages_vi.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_vi.properties
+++ b/i18n/Messages_vi.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-
diff --git a/i18n/Messages_zh.properties b/i18n/Messages_zh.properties
index 922b0a283f..ae268f5a63 100644
--- a/i18n/Messages_zh.properties
+++ b/i18n/Messages_zh.properties
@@ -8,6 +8,9 @@
#: i18n/tmp/Engines/Wine/Verbs/dotnet20/script.js:1
.NET\ 2.0=.NET 2.0
+#: i18n/tmp/Engines/Wine/Verbs/dotnet20sp2/script.js:1
+.NET\ 2.0\ SP2=.NET 2.0 SP2
+
#: i18n/tmp/Engines/Wine/Verbs/dotnet40/script.js:1
.NET\ 4.0=.NET 4.0
@@ -61,6 +64,9 @@ A\ mysterious\ invitation\ leads\ to\ the\ attic\ of\ an\ abandoned\ house.\ 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/RimWorld/application.js:2
+A\ sci-fi\ colony\ sim\ driven\ by\ an\ intelligent\ AI\ storyteller.\ Colonize\ the\ planet\ or\ survive\ far\ enough\ to\ win\ the\ game\ by\ escaping\ from\ the\ RimWorld.=A sci-fi colony sim driven by an intelligent AI storyteller. Colonize the planet or survive far enough to win the game by escaping from the RimWorld.
+
#: i18n/tmp/Applications/Games/Far Cry/application.js:2
A\ tropical\ paradise\ seethes\ with\ hidden\ evil\ in\ Far\ Cry®,\ a\ cunningly\ detailed\ action\ shooter\ that\ pushes\ the\ boundaries\ of\ combat\ to\ shocking\ new\ levels.
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.
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.
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.
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.
@@ -86,7 +92,7 @@ Age\ of\ Empires\ II\ has\ been\ re-imagined\ in\ high\ definition\ with\ new\ f
#: Collection/application.js:1
Age\ of\ Empires®\ III\:\ Complete\ Collection=Age of Empires\u00ae III\: Complete Collection
-#: Engines/Wine/Settings/always offscreen/script.js:12
+#: Engines/Wine/Settings/always offscreen/script.js:17
Always\ offscreen=Always offscreen
#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
@@ -141,10 +147,13 @@ Assassin’s\ Creed®\ Unity\ tells\ the\ story\ of\ Arno,\ a\ young\ man\ who\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:1
Audiosurf=Audiosurf
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+BGR=BGR
+
#: i18n/tmp/Applications/Games/BRINK/application.js:1
BRINK=BRINK
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:8
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
Backbuffer=Backbuffer
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/application.js:2
@@ -211,6 +220,9 @@ 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/PC Building Simulator/application.js:2
+Build\ your\ very\ own\ PC\ empire,\ from\ simple\ diagnosis\ and\ repairs\ to\ bespoke,\ boutique\ creations\ that\ would\ be\ the\ envy\ of\ any\ enthusiast.\ With\ an\ ever-expanding\ marketplace\ full\ of\ real-world\ components\ you\ can\ finally\ stop\ dreaming\ of\ that\ ultimate\ PC\ and\ get\ out\ there,\ build\ it\ and\ see\ how\ it\ benchmarks\ in\ 3DMark\!=Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark\!
+
#: i18n/tmp/Applications/Games/Burnout Paradise: The Ultimate
#: Box/application.js:1
Burnout™\ Paradise\:\ The\ Ultimate\ Box=Burnout\u2122 Paradise\: The Ultimate Box
@@ -227,10 +239,13 @@ Call\ of\ Juarez®\ 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
+#: Engines/Wine/Engine/Implementation/script.js:414
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
+#: Engines/Wine/Engine/Implementation/script.js:498
+Change\ {0}\ container\ Wine\ version=Change {0} container Wine version
+
+#: Utils/Functions/Filesystem/Files/script.js:215
Checking\ file\ consistency...=Checking file consistency...
#: i18n/tmp/Applications/Games/ChromaGun/application.js:1
@@ -265,10 +280,10 @@ 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
+#: Engines/Wine/Plugins/native application/script.js:32
Could\ not\ determine\ mimetype\ for\ file\ extension\ "{0}"=Could not determine mimetype for file extension "{0}"
-#: Engines/Wine/Engine/Object/script.js:195
+#: Engines/Wine/Engine/Object/script.js:190
Could\ not\ uninstall\ {0}\!=Could not uninstall {0}\!
#: i18n/tmp/Applications/Games/Crayon Physics/application.js:1
@@ -283,6 +298,12 @@ Custom=Custom
#: i18n/tmp/Engines/Wine/QuickScript/Custom Installer Script/script.js:1
Custom\ Installer\ Script=Custom Installer Script
+#: i18n/tmp/Engines/Wine/Verbs/D9VK/script.js:1
+D9VK=D9VK
+
+#: Engines/Wine/Verbs/D9VK/script.js:44
+D9VK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=D9VK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
+
#: i18n/tmp/Applications/Games/DC Universe Online/application.js:1
DC\ Universe\ Online=DC Universe Online
@@ -298,17 +319,19 @@ DRAGON\ BALL\ XENOVERSE\ 2\ builds\ upon\ the\ highly\ popular\ DRAGON\ BALL\ XE
#: i18n/tmp/Engines/Wine/Verbs/DXVK/script.js:1
DXVK=DXVK
-#: Engines/Wine/Verbs/DXVK/script.js:17
+#: Engines/Wine/Verbs/DXVK/script.js:45
DXVK\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=DXVK might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
-#: 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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
+#: Engines/Wine/Settings/video memory size/script.js:11
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
+#: Engines/Wine/Settings/always offscreen/script.js:11
+#: Engines/Wine/Settings/render target lock Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Default=Default
#: i18n/tmp/Applications/Games/DOOM (2016)/application.js:2
@@ -317,25 +340,35 @@ Developed\ by\ id\ software,\ the\ studio\ that\ pioneered\ the\ first-person\ s
#: 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:17
+#: i18n/tmp/Engines/Wine/Plugins/DirectDraw renderer/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/render target lock
+#: mode/script.js:11 Engines/Wine/Settings/strict draw ordering/script.js:11
Disabled=Disabled
-#: Engines/Wine/QuickScript/Origin Script/script.js:50
+#: Engines/Wine/QuickScript/Origin Script/script.js:46
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
+#: Engines/Wine/Engine/Implementation/script.js:223
+Downloading\ amd64\ runtime...=Downloading amd64 runtime...
+
+#: Engines/Wine/Engine/Implementation/script.js:133
+#: Engines/Wine/Engine/Implementation/script.js:164
+Downloading\ runtime\ json...=Downloading runtime json...
+
+#: Engines/Wine/Engine/Implementation/script.js:254
+Downloading\ x86\ runtime...=Downloading x86 runtime...
+
#: 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
@@ -349,11 +382,13 @@ 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).
+#: Applications/Games/Space Engineers/Steam/script.js:54
+Due\ to\ JIT\ compiler\ issues\ and\ the\ way\ this\ game\ uses\ multithreading,\ there\ are\ audio\ stutters.\ This\ script\ will\ attempt\ to\ minimize\ them\ but\ you\ might\ also\ have\ to\ enter\ the\ alsoft-conf\ command\ in\ terminal\ and\ set\ sample\ depth\ to\ 32bit\ float\ and\ period\ size\ to\ 2048.=Due to JIT compiler issues and the way this game uses multithreading, there are audio stutters. This script will attempt to minimize them but you might also have to enter the alsoft-conf command in terminal and set sample depth to 32bit float and period size to 2048.
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:1
+#: Applications/Games/Subnautica/Steam/script.js:36
+Due\ to\ a\ potential\ conflict\ with\ Vulkan,\ shader\ mods\ break\ the\ game\ (the\ executable\ file\ works\ but\ no\ window\ is\ displayed).=Due to a potential conflict 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
@@ -368,11 +403,12 @@ ElsterFormular\ is\ the\ official\ german\ software\ to\ file\ a\ tax\ return.=E
#: 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.
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.
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
+#: Engines/Wine/Settings/GLSL/script.js:11 Engines/Wine/Settings/mouse warp
+#: override/script.js:11 Engines/Wine/Settings/multisampling/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:10
+#: Engines/Wine/Settings/UseTakeFocus/script.js:12 Engines/Wine/Settings/always
+#: offscreen/script.js:11 Engines/Wine/Settings/strict draw
+#: ordering/script.js:11
Enabled=Enabled
#: i18n/tmp/Applications/Games/Enderal/application.js:1
@@ -384,10 +420,13 @@ Enderal\ is\ a\ total\ conversion\ for\ TES\ V\:\ Skyrim\:\ a\ game\ modificatio
#: 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/Development/Enterprise Architect/application.js:1
+Enterprise\ Architect=Enterprise Architect
+
#: i18n/tmp/Applications/Games/Epic Games Launcher/application.js:1
Epic\ Games\ Launcher=Epic Games Launcher
-#: Utils/Functions/Net/Download/script.js:137
+#: Utils/Functions/Net/Download/script.js:155
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
@@ -408,7 +447,7 @@ 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
+#: Engines/Wine/Shortcuts/Wine/script.js:153
Executable\ {0}\ not\ found\!=Executable {0} not found\!
#: i18n/tmp/Applications/Games/Rayman Origins/application.js:2
@@ -417,28 +456,27 @@ Experience\ the\ magical\ universe\ of\ Rayman\ with\ legendary\ 2D\ gameplay\ t
#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/application.js:2
Experience\ what\ it’s\ 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.
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.
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
+#: Engines/Wine/Verbs/d3dx10/script.js:31
+#: Engines/Wine/Verbs/d3dx10/script.js:33
+#: Engines/Wine/Verbs/d3dx10/script.js:62
+#: Engines/Wine/Verbs/d3dx11/script.js:31
+#: Engines/Wine/Verbs/d3dx11/script.js:33
+#: Engines/Wine/Verbs/d3dx11/script.js:63 Engines/Wine/Verbs/xact/script.js:34
+#: Engines/Wine/Verbs/xact/script.js:36 Engines/Wine/Verbs/xact/script.js:85
+#: Engines/Wine/Verbs/d3dx9/script.js:31 Engines/Wine/Verbs/d3dx9/script.js:33
+#: Engines/Wine/Verbs/d3dx9/script.js:62
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
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:11
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\!
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
+#: 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
@@ -453,6 +491,12 @@ Far\ Cry®\ 2=Far Cry\u00ae 2
#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/application.js:2
Far\ Cry®\ 3\:\ Blood\ Dragon\ is\ THE\ Kick-Ass\ Cyber\ Shooter.Welcome\ to\ an\ 80’s\ 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.
+#: Engines/Wine/Engine/Implementation/script.js:324
+Fetching\ available\ Wine\ versions...=Fetching available Wine versions...
+
+#: Utils/Functions/Net/GithubReleases/script.js:20
+Fetching\ versions\ list...=Fetching versions list...
+
#: i18n/tmp/Utils/Functions/Filesystem/Extract/script.js:1
File\ Extractors=File Extractors
@@ -474,14 +518,20 @@ 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/Engines/Wine/Plugins/Font smoothing/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/Font
+Font\ smoothing=Font smoothing
+
+#: Engines/Wine/Settings/Font smoothing/script.js:16
+Fonts\ Smoothing=Fonts Smoothing
+
#: 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
+#: Engines/Wine/Settings/mouse warp override/script.js:11
Force=Force
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:2
+#: 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
@@ -493,14 +543,14 @@ From\ the\ dust\ of\ a\ gold\ mine\ to\ the\ dirt\ of\ a\ saloon,\ Call\ of\ Jua
#: i18n/tmp/Utils/Functions/category.js:1
Functions=Functions
-#: Engines/Wine/Settings/DirectDraw renderer/script.js:8
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
GDI=GDI
-#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
#: i18n/tmp/Engines/Wine/Plugins/GLSL/script.js:1
+#: i18n/tmp/Engines/Wine/Settings/GLSL/script.js:1
GLSL=GLSL
-#: Engines/Wine/Settings/GLSL/script.js:12
+#: Engines/Wine/Settings/GLSL/script.js:17
GLSL\ support=GLSL support
#: i18n/tmp/Applications/Games/XIII/GOG/script.js:1
@@ -516,6 +566,9 @@ GOG\ Galaxy=GOG Galaxy
#: i18n/tmp/Applications/Games/category.js:1
Games=Games
+#: i18n/tmp/Utils/Functions/Net/GithubReleases/script.js:1
+Github\ Releases=Github Releases
+
#: i18n/tmp/Engines/Wine/QuickScript/GoG Script/script.js:1
GoG\ Script=GoG Script
@@ -525,6 +578,9 @@ Goodbye\ Deponia=Goodbye Deponia
#: i18n/tmp/Applications/Graphics/category.js:1
Graphics=Graphics
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+Gray\ Scale=Gray Scale
+
#: i18n/tmp/Applications/Games/Guild Wars 2/application.js:1
Guild\ Wars\ 2=Guild Wars 2
@@ -571,10 +627,10 @@ 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
+#: Applications/Games/Total War Rome II/Steam/script.js:24
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
+#: Applications/Games/Mass Effect 2/Origin/script.js:17
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
@@ -611,12 +667,12 @@ Infiltrate\ terrorists'\ positions,\ acquire\ critical\ intelligence\ by\ any\ m
#: i18n/tmp/Engines/Wine/QuickScript/Installer Script/script.js:1
Installer\ Script=Installer Script
-#: Engines/Wine/Engine/Implementation/script.js:48
+#: Engines/Wine/Engine/Implementation/script.js:65
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
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:309
+#: 6.0/Online/script.js:151 Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
Installing\ {0}...=Installing {0}...
#: i18n/tmp/Applications/Internet/category.js:1
@@ -628,8 +684,8 @@ 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
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/application.js:2
+#: 6.0/application.js:2
Internet\ Explorer\ is\ an\ old\ web\ browser. 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. 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
@@ -669,25 +725,28 @@ Lego\ Rock\ Raiders=Lego Rock Raiders
Live\ and\ breathe\ as\ Ezio,\ a\ legendary\ Master\ Assassin,\ in\ his\ enduring\ struggle\ against\ the\ powerful\ Templar\ order.
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/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
+#: Wars/Local/script.js:1 i18n/tmp/Applications/Games/Guild Wars
+#: 2/Local/script.js:1 i18n/tmp/Applications/Games/SimCity
+#: (2013)/Local/script.js:1 i18n/tmp/Applications/Games/The Sims
+#: 3/Local/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: i18n/tmp/Applications/Games/18 Wheels of Steel Across
+#: America/Local/script.js:1 Sims/Local/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/Local/script.js:1 Elder Scrolls IV:
+#: Oblivion/Local/script.js:1 i18n/tmp/Applications/Games/Anno
+#: 2070/Local/script.js:1 i18n/tmp/Applications/Games/Europa Universalis
+#: II/Local/script.js:1 i18n/tmp/Applications/Games/Lego Rock
+#: Raiders/Local/script.js:1 i18n/tmp/Applications/Games/Space
+#: Colony/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
+#: i18n/tmp/Applications/Games/RimWorld/Local/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Empire at War Gold
+#: Pack/Local/script.js:1 i18n/tmp/Applications/Games/Resident Evil
+#: i18n/tmp/Applications/Games/Sprouts Adventure/Local/script.js:1
+#: i18n/tmp/Applications/Games/Caesar III/Local/script.js:1 Battlefront
+#: i18n/tmp/Applications/Office/Microsoft Office 2013/Local/script.js:1
+#: 2010/Local/script.js:1 i18n/tmp/Applications/Development/Enterprise
+#: Architect/Local/script.js:1
Local=Local
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
@@ -713,6 +772,12 @@ Lock,\ Load,\ &\ Face\ the\ Madness
Get\ ready\ for\ the\ mind\ blowing\
#: i18n/tmp/Applications/Games/Mafia II/application.js:1
Mafia\ II=Mafia II
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:1
+Magic\:\ The\ Gathering\ Arena=Magic\: The Gathering Arena
+
+#: i18n/tmp/Applications/Games/Magic The Gathering Arena/application.js:2
+Magic\:\ The\ Gathering\ Arena\ is\ a\ free-to-play\ digital\ collectible\ card\ game\ developed\ by\ Wizards\ of\ the\ Coast's\ internal\ development\ studio,\ Wizards\ Digital\ Games\ Studio.(Wikipedia)=Magic\: The Gathering Arena is a free-to-play digital collectible card game developed by Wizards of the Coast's internal development studio, Wizards Digital Games Studio.(Wikipedia)
+
#: i18n/tmp/Applications/Games/Mass Effect/application.js:1
Mass\ Effect=Mass Effect
@@ -749,7 +814,7 @@ More\ chaos,\ more\ destruction,\ more\ Rufus.\ Not\ one,\ not\ two,\ but\ three
#: i18n/tmp/Applications/Games/Mount & Blade/application.js:1
Mount\ &\ Blade=Mount & Blade
-#: Engines/Wine/Settings/mouse warp override/script.js:12
+#: Engines/Wine/Settings/mouse warp override/script.js:17
Mouse\ warp\ override=Mouse warp override
#: i18n/tmp/Applications/Multimedia/Mp3tag/application.js:1
@@ -761,7 +826,7 @@ Mp3tag\ is\ a\ powerful\ and\ yet\ easy-to-use\ tool\ to\ edit\ metadata\ of\ co
#: i18n/tmp/Applications/Multimedia/category.js:1
Multimedia=Multimedia
-#: Engines/Wine/Settings/multisampling/script.js:12
+#: Engines/Wine/Settings/multisampling/script.js:17
Multisampling=Multisampling
#: i18n/tmp/Utils/Functions/Net/application.js:1
@@ -773,6 +838,9 @@ Niko\ is\ a\ spiritual\ journey\ through\ the\ dreams,\ where\ adventure,\ puzzl
#: i18n/tmp/Applications/Games/Niko: Through The Dream/application.js:1
Niko\:\ Through\ The\ Dream=Niko\: Through The Dream
+#: Engines/Wine/Plugins/Font smoothing/script.js:50
+No\ font\ smoothing\ mode\ specified\!=No font smoothing mode specified\!
+
#: i18n/tmp/Applications/Development/Notepad++/application.js:1
Notepad++=Notepad++
@@ -782,46 +850,49 @@ Notepad++\ is\ a\ free\ (as\ in\ "free\ speech"\ and\ also\ as\ in\ &q
#: i18n/tmp/Applications/Office/category.js:1
Office=Office
-#: Engines/Wine/Settings/offscreen rendering mode/script.js:12
+#: Engines/Wine/Settings/offscreen rendering mode/script.js:17
Offscreen\ rendering\ mode=Offscreen rendering mode
-#: Applications/Games/Wildlife Park 2/Local/script.js:15 2/Steam/script.js:14
+#: Applications/Games/Wildlife Park 2/Steam/script.js:17 2/Local/script.js:16
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.
-#: 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/osu!/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/Druid Soccer/Online/script.js:1
+#: i18n/tmp/Applications/Games/Magic The Gathering
#: i18n/tmp/Applications/Games/Prehistorik/Online/script.js:1
+#: i18n/tmp/Applications/Games/Guild Wars 2/Online/script.js:1
+#: i18n/tmp/Applications/Games/Xenon
+#: i18n/tmp/Applications/Games/Uplay/Online/script.js:1
+#: i18n/tmp/Applications/Games/Crayon Physics/Online/script.js:1
+#: i18n/tmp/Applications/Games/League of Legends/Online/script.js:1
#: i18n/tmp/Applications/Games/GOG Galaxy/Online/script.js:1
+#: i18n/tmp/Applications/Games/Heroes the Storm/Online/script.js:1
+#: i18n/tmp/Applications/Games/Steam/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/Games/Epic Games Launcher/Online/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS: Old Republic/Online/script.js:1
+#: i18n/tmp/Applications/Games/Overwatch/Online/script.js:1
+#: i18n/tmp/Applications/Games/Prince Of Persia: Original/Online/script.js:1
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
+#: Shadow/Online/script.js:1 i18n/tmp/Applications/Games/Road
+#: Rash/Online/script.js:1
+#: i18n/tmp/Applications/Games/Hearthstone/Online/script.js:1
+#: i18n/tmp/Applications/Games/Origin/Online/script.js:1
+#: i18n/tmp/Applications/Games/Star Craft II/Online/script.js:1
+#: i18n/tmp/Applications/Games/Warcraft III Expansion Set/Online/script.js:1
+#: i18n/tmp/Applications/Games/osu!/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Photofiltre/Online/script.js:1
+#: i18n/tmp/Applications/Graphics/Microsoft Paint/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
+#: i18n/tmp/Applications/Accessories/Soundplant/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/Development/Notepad++/Online/script.js:1
+#: i18n/tmp/Applications/Multimedia/Mp3tag/Online/script.js:1
+#: i18n/tmp/Applications/Internet/Internet Explorer 7.0/Online/script.js:1
+#: 6.0/Online/script.js:1
Online=Online
#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/Online
@@ -831,6 +902,10 @@ Online\ (Demo)=Online (Demo)
#: i18n/tmp/Applications/Games/Origin/Online (Legacy)/script.js:1
Online\ (Legacy)=Online (Legacy)
+#: i18n/tmp/Applications/Development/Enterprise Architect/Online
+#: (Trial)/script.js:1
+Online\ (Trial)=Online (Trial)
+
#: i18n/tmp/Applications/Custom/OnlineInstaller/application.js:1
Online\ Installer=Online Installer
@@ -840,15 +915,15 @@ 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
+#: Engines/Wine/Settings/DirectDraw renderer/script.js:11
OpenGL=OpenGL
#: i18n/tmp/Engines/Wine/Plugins/OpenGL version/script.js:1
OpenGL_version=OpenGL_version
+#: i18n/tmp/Applications/Games/SimCity (2013)/Origin/script.js:1
#: 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
@@ -873,6 +948,9 @@ Overwatch\ is\ a\ team-based\ multiplayer\ online\ first-person\ shooter\ video\
#: i18n/tmp/Applications/Games/PAYDAY The Heist/application.js:1
PAYDAY™\ The\ Heist=PAYDAY\u2122 The Heist
+#: i18n/tmp/Applications/Games/PC Building Simulator/application.js:1
+PC\ Building\ Simulator=PC Building Simulator
+
#: 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’s\ license.\ Earn\ the\ vaunted\ “Burnout”\ 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.
@@ -883,141 +961,156 @@ Photofiltre=Photofiltre
#: i18n/tmp/Engines/Wine/Verbs/PhysX/script.js:1
PhysX=PhysX
-#: Engines/Wine/QuickScript/Uplay Script/script.js:84
+#: i18n/tmp/Utils/Functions/Apps/PlainInstaller/script.js:1
+Plain\ Installer=Plain Installer
+
+#: Engines/Wine/QuickScript/Uplay Script/script.js:110
Please\ close\ Uplay.=Please close Uplay.
-#: Engines/Wine/QuickScript/Uplay Script/script.js:57
+#: Engines/Wine/QuickScript/Uplay Script/script.js:71
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
+#: Applications/Games/The Witcher 3: Wild Hunt/Steam/script.js:17
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/Verbs/DXVK/script.js:21
+#: Engines/Wine/Verbs/D9VK/script.js:50
+Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ D9VK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else D9VK might not work correctly.
+
+#: Engines/Wine/Verbs/DXVK/script.js:51
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ DXVK\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else DXVK might not work correctly.
-#: Engines/Wine/Verbs/VK9/script.js:20
+#: Engines/Wine/Verbs/VK9/script.js:48
Please\ ensure\ you\ have\ the\ latest\ drivers\ (418.30\ minimum\ for\ NVIDIA\ and\ mesa\ 19\ for\ AMD)\ or\ else\ VK9\ might\ not\ work\ correctly.=Please ensure you have the latest drivers (418.30 minimum for NVIDIA and mesa 19 for AMD) or else VK9 might not work correctly.
-#: Engines/Wine/QuickScript/Installer Script/script.js:23
+#: Engines/Wine/QuickScript/Installer Script/script.js:22
Please\ enter\ the\ name\ of\ your\ application.=Please enter the name of your application.
-#: Engines/Wine/QuickScript/Steam Script/script.js:121
+#: Engines/Wine/QuickScript/Steam Script/script.js:139
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
+#: Engines/Wine/Verbs/Uplay/script.js:25
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
+#: Engines/Wine/QuickScript/Uplay Script/script.js:74
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
+#: Engines/Wine/QuickScript/GoG Script/script.js:44
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
+#: Engines/Wine/QuickScript/Zip Script/script.js:44
Please\ select\ the\ .zip\ file.=Please select the .zip file.
-#: Engines/Wine/Verbs/Windows XP SP 3/script.js:52
+#: Engines/Wine/Verbs/Windows XP SP 3/script.js:64
Please\ select\ the\ SP3\ file.=Please select the SP3 file.
-#: Engines/Wine/QuickScript/Online Installer Script/script.js:36
+#: Engines/Wine/Engine/Implementation/script.js:526
+Please\ select\ the\ distribution\ of\ wine.=Please select the distribution of wine.
+
+#: Engines/Wine/QuickScript/Online Installer Script/script.js:34
Please\ select\ the\ download\ URL.=Please select the download URL.
-#: Engines/Wine/QuickScript/Installer Script/script.js:83
+#: Engines/Wine/QuickScript/Installer Script/script.js:93
Please\ select\ the\ executable.=Please select the executable.
-#: Engines/Wine/QuickScript/Local Installer Script/script.js:27
+#: Engines/Wine/QuickScript/Local Installer Script/script.js:25
Please\ select\ the\ installation\ file.=Please select the installation file.
-#: Applications/Office/ElsterFormular/Online/script.js:11
+#: Applications/Office/ElsterFormular/Online/script.js:12
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/FAudio/script.js:64
-#: Engines/Wine/Verbs/DXVK/script.js:101 Engines/Wine/Verbs/VK9/script.js:80
+#: Engines/Wine/Engine/Implementation/script.js:528
+Please\ select\ the\ version\ of\ wine.=Please select the version of wine.
+
+#: Engines/Wine/Verbs/DXVK/script.js:163 Engines/Wine/Verbs/FAudio/script.js:80
+#: Engines/Wine/Verbs/VK9/script.js:111 Engines/Wine/Verbs/D9VK/script.js:103
Please\ select\ the\ version.=Please select the version.
-#: Engines/Wine/QuickScript/Installer Script/script.js:38
+#: Engines/Wine/QuickScript/Installer Script/script.js:36
Please\ select\ the\ wine\ architecture.=Please select the wine architecture.
-#: Engines/Wine/QuickScript/Installer Script/script.js:51
+#: Engines/Wine/QuickScript/Installer Script/script.js:52
Please\ select\ the\ wine\ distribution.=Please select the wine distribution.
-#: Engines/Wine/QuickScript/Installer Script/script.js:66
+#: Engines/Wine/QuickScript/Installer Script/script.js:70
Please\ select\ the\ wine\ version.=Please select the wine version.
-#: Engines/Wine/QuickScript/Steam Script/script.js:147
+#: Engines/Wine/QuickScript/Steam Script/script.js:174
Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until Steam has finished the download...
-#: Engines/Wine/QuickScript/Uplay Script/script.js:76
+#: Engines/Wine/QuickScript/Uplay Script/script.js:102
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
+#: Utils/Functions/Net/Resource/script.js:89
+#: Utils/Functions/Net/Download/script.js:119
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
+#: Utils/Functions/Filesystem/Extract/script.js:70
+#: Utils/Functions/Filesystem/Extract/script.js:160
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...
-#: Engines/Wine/Verbs/dotnet46/script.js:34
-#: 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:35 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/dotnet472/script.js:35
-#: Engines/Wine/Verbs/devenum/script.js:20
-#: Engines/Wine/Verbs/dotnet20/script.js:28
-#: Engines/Wine/Verbs/dotnet20/script.js:47
-#: Engines/Wine/Verbs/vcrun2012/script.js:18
-#: Engines/Wine/Verbs/vcrun2012/script.js:29
-#: Engines/Wine/Verbs/dotnet461/script.js:35
-#: 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:35
-#: Engines/Wine/Verbs/dotnet45/script.js:36
-#: Engines/Wine/Verbs/PhysX/script.js:17
-#: Engines/Wine/Verbs/vcrun2003/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:35
+#: Engines/Wine/Verbs/dotnet472/script.js:44
+#: Engines/Wine/Verbs/vcrun2012/script.js:28
+#: Engines/Wine/Verbs/vcrun2012/script.js:42
+#: Engines/Wine/Verbs/vcrun2003/script.js:27
+#: Engines/Wine/Verbs/d3drm/script.js:31
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:42
+#: Engines/Wine/Verbs/dotnet20sp2/script.js:59
+#: Engines/Wine/Verbs/vcrun2013/script.js:26
+#: Engines/Wine/Verbs/vcrun2013/script.js:40
+#: Engines/Wine/Verbs/dotnet462/script.js:44
+#: Engines/Wine/Verbs/vcrun2017/script.js:28
+#: Engines/Wine/Verbs/vcrun2017/script.js:42
+#: Engines/Wine/Verbs/dotnet46/script.js:44
+#: Engines/Wine/Verbs/vcrun2005/script.js:26
+#: Engines/Wine/Verbs/dotnet452/script.js:44
+#: Engines/Wine/Verbs/amstream/script.js:33
+#: Engines/Wine/Verbs/amstream/script.js:66
+#: Engines/Wine/Verbs/devenum/script.js:32
+#: Engines/Wine/Verbs/dotnet461/script.js:44
+#: Engines/Wine/Verbs/vcrun2015/script.js:26
+#: Engines/Wine/Verbs/vcrun2015/script.js:40
+#: Engines/Wine/Verbs/dotnet40/script.js:48
+#: Engines/Wine/Verbs/vcrun2010/script.js:26
+#: Engines/Wine/Verbs/vcrun2010/script.js:40
+#: Engines/Wine/Verbs/dotnet45/script.js:52
+#: Engines/Wine/Verbs/msxml6/script.js:43
+#: Engines/Wine/Verbs/msxml6/script.js:56
+#: Engines/Wine/Verbs/vcrun2008/script.js:26
+#: Engines/Wine/Verbs/vcrun2008/script.js:40 Engines/Wine/Verbs/QuickTime
+#: 7.6/script.js:24 Engines/Wine/Verbs/PhysX/script.js:24
+#: Engines/Wine/Verbs/dotnet20/script.js:38
+#: Engines/Wine/Verbs/dotnet20/script.js:57
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...
-#: Engines/Wine/Engine/Object/script.js:191
+#: Engines/Wine/Engine/Object/script.js:185
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/dotnet46/script.js:37
-#: Engines/Wine/Verbs/dotnet40/script.js:38
-#: Engines/Wine/Verbs/dotnet40/script.js:45
-#: Engines/Wine/Verbs/dotnet472/script.js:38
-#: Engines/Wine/Verbs/corefonts/script.js:84
-#: Engines/Wine/Verbs/d3dx10/script.js:35
-#: Engines/Wine/Verbs/dotnet461/script.js:38
-#: Engines/Wine/Verbs/d3dx9/script.js:35 Engines/Wine/Verbs/xact/script.js:50
-#: Engines/Wine/Verbs/dotnet452/script.js:38
-#: Engines/Wine/Verbs/dotnet45/script.js:39
-#: Engines/Wine/Verbs/d3dx11/script.js:36 Engines/Wine/Verbs/Remove
-#: Mono/script.js:12 Mono/script.js:15 Mono/script.js:18
-#: Engines/Wine/Verbs/dotnet462/script.js:38 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
+#: Applications/Internet/Internet Explorer 6.0/Online/script.js:147
+#: Engines/Wine/Verbs/dotnet472/script.js:48 Engines/Wine/Verbs/Remove
+#: Mono/script.js:22 Mono/script.js:26 Mono/script.js:30
+#: Engines/Wine/Verbs/dotnet462/script.js:48
+#: Engines/Wine/Verbs/dotnet46/script.js:48
+#: Engines/Wine/Verbs/d3dx10/script.js:61
+#: Engines/Wine/Verbs/dotnet452/script.js:48
+#: Engines/Wine/Verbs/dotnet461/script.js:48
+#: Engines/Wine/Verbs/dotnet40/script.js:52
+#: Engines/Wine/Verbs/dotnet40/script.js:58
+#: Engines/Wine/Verbs/dotnet45/script.js:56
+#: Engines/Wine/Verbs/d3dx11/script.js:62
+#: Engines/Wine/Verbs/corefonts/script.js:93
+#: Engines/Wine/Verbs/xact/script.js:84 Engines/Wine/Verbs/d3dx9/script.js:61
+#: Engines/Wine/QuickScript/Steam Script/script.js:165 Script/script.js:170
+#: Script/script.js:190 Script/script.js:203 Engines/Wine/QuickScript/Zip
+#: Script/script.js:40 Script/script.js:66 Engines/Wine/QuickScript/Installer
+#: Script/script.js:86 Script/script.js:102 Engines/Wine/QuickScript/Origin
+#: Script/script.js:53 Script/script.js:58 Engines/Wine/QuickScript/Uplay
+#: Script/script.js:91 Script/script.js:115
Please\ wait...=Please wait...
#: i18n/tmp/Engines/Wine/Plugins/application.js:2
Plugins\ for\ Wine.=Plugins for Wine.
-#: Engines/Wine/Engine/Object/script.js:327
+#: Engines/Wine/Engine/Object/script.js:340
Prefix\ seems\ to\ be\ 32bits=Prefix seems to be 32bits
#: i18n/tmp/Applications/Games/Prehistorik/application.js:1
@@ -1057,6 +1150,9 @@ QuickScripts\ for\ Wine.=QuickScripts for Wine.
#: i18n/tmp/Engines/Wine/Verbs/QuickTime 7.6/script.js:1
QuickTime\ 7.6=QuickTime 7.6
+#: Engines/Wine/Settings/Font smoothing/script.js:12
+RGB=RGB
+
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven
#: Shield/application.js:2
Raven\ Shield\:\ Command\ an\ elite\ multinational\ squad\ of\ special\ operatives\ against\ hidden\ terrorist\ forces.\ In\ Tom\ Clancy's\ Rainbow\ Six\ 3\:\ Raven\ Shield,\ the\ third\ installment\ to\ the\ wildly\ popular\ Rainbow\ Six\ series,\ Team\ Rainbow\ faces\ the\ hidden\ global\ forces\ of\ a\ new\ and\ secretive\ foe.=Raven Shield\: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3\: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe.
@@ -1076,9 +1172,6 @@ Red\ Trigger=Red Trigger
#: i18n/tmp/Applications/Games/Red Trigger/application.js:2
Red\ Trigger\ is\ a\ First\ Person\ Shooter\ (FPS)\ Puzzle\ game.\ Can\ you\ infiltrate\ and\ corrupt\ the\ system?=Red Trigger is a First Person Shooter (FPS) Puzzle game. Can you infiltrate and corrupt the system?
-#: Engines/Wine/Verbs/xact/script.js:33 Engines/Wine/Verbs/xact/script.js:34
-Registering\ {0}...=Registering {0}...
-
#: i18n/tmp/Engines/Wine/Tools/Wine Registry Editor/script.js:1
Registry\ Editor=Registry Editor
@@ -1088,7 +1181,7 @@ Relive\ Half-Life\ in\ this\ highly\ acclaimed,\ fan-made\ recreation=Relive Hal
#: i18n/tmp/Engines/Wine/Verbs/Remove Mono/script.js:1
Remove\ Mono=Remove Mono
-#: Engines/Wine/Settings/render target lock mode/script.js:12
+#: Engines/Wine/Settings/render target lock mode/script.js:17
Render\ target\ lock\ mode=Render target lock mode
#: i18n/tmp/Engines/Wine/Tools/Repair Wine Prefix/script.js:1
@@ -1103,7 +1196,7 @@ Resident\ Evil\ 3\:\ Nemesis,\ known\ in\ Japan\ as\ Biohazard\ 3\:\ Last\ Escap
#: i18n/tmp/Engines/Wine/Settings/hdpi/script.js:1
Retina=Retina
-#: Engines/Wine/Settings/hdpi/script.js:11
+#: Engines/Wine/Settings/hdpi/script.js:14
Retina\ support=Retina support
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:2
@@ -1112,6 +1205,9 @@ Return\ to\ the\ world\ of\ TRON\ with\ TRON\ RUN/r,\ a\ new\ lightning\ fast,\
#: i18n/tmp/Applications/Games/Audiosurf/application.js:2
Ride\ your\ music.\ Audiosurf\ is\ a\ music-adapting\ puzzle\ racer\ where\ you\ use\ your\ own\ music\ to\ create\ your\ own\ experience.\ The\ shape,\ the\ speed,\ and\ the\ mood\ of\ each\ ride\ is\ determined\ by\ the\ song\ you\ choose.=Ride your music. Audiosurf is a music-adapting puzzle racer where you use your own music to create your own experience. The shape, the speed, and the mood of each ride is determined by the song you choose.
+#: i18n/tmp/Applications/Games/RimWorld/application.js:1
+RimWorld=RimWorld
+
#: i18n/tmp/Applications/Games/Road Rash/application.js:1
Road\ Rash=Road Rash
@@ -1134,8 +1230,7 @@ STAR\ WARS™\ Battlefront™\ II=STAR WARS\u2122 Battlefront\u2122 II
#: Pack/application.js:1
STAR\ WARS™\ Empire\ at\ War\:\ Gold\ Pack=STAR WARS\u2122 Empire at War\: Gold Pack
-#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight -
-#: Academy/application.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Academy/application.js:1
STAR\ WARS™\ Jedi\ Knight\ -\ Jedi\ Academy™=STAR WARS\u2122 Jedi Knight - Jedi Academy\u2122
#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight - Mysteries of the
@@ -1166,14 +1261,13 @@ Science=Science
Scribblenauts\ Unlimited=Scribblenauts Unlimited
#: Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Local
-#: (1.0->1.6)/script.js:14
+#: (1.0->1.6)/script.js:16
Select\ your\ region\ for\ the\ patch\ (1.0\ to\ 1.60).=Select your region for the patch (1.0 to 1.60).
-#: Applications/Games/League of Legends/Online/script.js:31
+#: Applications/Games/League of Legends/Online/script.js:34
Select\ your\ region\:=Select your region\:
-#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's
-#: Shadow/application.js:2
+#: i18n/tmp/Applications/Games/Earth Eternal - Valkal's Shadow/application.js:2
Set\ in\ a\ world\ where\ humans\ are\ long\ gone,\ and\ beasts\ reign\ supreme,\ Earth\ Eternal\ -\ Valkal's\ Shadow\ is\ a\ fan-run\ continuation\ of\ Earth\ Eternal,\ an\ abandoned\ MMORPG\ by\ Sparkplay\ Media.\ Valkal's\ Shadow\ is\ based\ off\ of\ version\ 0.8.6,\ but\ with\ lots\ of\ new\ content\ and\ features\ added,\ including\ 2\ new\ regions,\ many\ new\ dungeons\ and\ countless\ new\ quests.=Set in a world where humans are long gone, and beasts reign supreme, Earth Eternal - Valkal's Shadow is a fan-run continuation of Earth Eternal, an abandoned MMORPG by Sparkplay Media. Valkal's Shadow is based off of version 0.8.6, but with lots of new content and features added, including 2 new regions, many new dungeons and countless new quests.
#: i18n/tmp/Engines/Wine/Settings/application.js:2
@@ -1207,9 +1301,21 @@ Soundplant\ turns\ your\ computer\ keyboard\ into\ a\ versatile,\ low\ latency\
#: i18n/tmp/Applications/Games/Space Colony/application.js:1
Space\ Colony=Space Colony
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:1
+Space\ Engineers=Space Engineers
+
+#: i18n/tmp/Applications/Games/Space Engineers/application.js:2
+Space\ Engineers\ is\ a\ sandbox\ game\ about\ engineering,\ construction,\ exploration\ and\ survival\ in\ space\ and\ on\ planets.\ Players\ build\ space\ ships,\ space\ stations,\ planetary\ outposts\ of\ various\ sizes\ and\ uses\ (civil\ and\ military),\ pilot\ ships\ and\ travel\ through\ space\ to\ explore\ planets\ and\ gather\ resources\ to\ survive.\ Featuring\ both\ creative\ and\ survival\ modes,\ there\ is\ no\ limit\ to\ what\ can\ be\ built,\ utilized\ and\ explored. Space\ Engineers\ features\ a\ realistic,\ volumetric-based\ physics\ engine\:\ everything\ in\ the\ game\ can\ be\ assembled,\ disassembled,\ damaged\ and\ destroyed.\ The\ game\ can\ be\ played\ either\ in\ single\ or\ multiplayer\ modes. Volumetric\ objects\ are\ structures\ composed\ from\ block-like\ modules\ interlocked\ in\ a\ grid.\ Volumetric\ objects\ behave\ like\ real\ physical\ objects\ with\ mass,\ inertia\ and\ velocity.\ Individual\ modules\ have\ real\ volume\ and\ storage\ capacity. Space\ Engineers\ is\ inspired\ by\ reality\ and\ by\ how\ things\ work.\ Think\ about\ modern-day\ NASA\ technology\ extrapolated\ 60\ years\ into\ the\ future.\ Space\ Engineers\ strives\ to\ follow\ the\ laws\ of\ physics\ and\ doesn't\ use\ technologies\ that\ wouldn't\ be\ feasible\ in\ the\ near\ future. Space\ Engineers\ concentrates\ on\ construction\ and\ exploration\ aspects,\ but\ can\ be\ played\ as\ a\ survival\ shooter\ as\ well.\ We\ expect\ players\ will\ avoid\ engaging\ in\ direct\ man-to-man\ combat\ and\ instead\ use\ their\ creativity\ and\ engineering\ skills\ to\ build\ war\ machines\ and\ fortifications\ to\ survive\ in\ space\ and\ on\ planets.\ Space\ Engineers\ shouldn’t\ be\ about\ troops;\ it\ should\ be\ about\ the\ machinery\ you\ build.=Space Engineers is a sandbox game about engineering, construction, exploration and survival in space and on planets. Players build space ships, space stations, planetary outposts of various sizes and uses (civil and military), pilot ships and travel through space to explore planets and gather resources to survive. Featuring both creative and survival modes, there is no limit to what can be built, utilized and explored. Space Engineers features a realistic, volumetric-based physics engine\: everything in the game can be assembled, disassembled, damaged and destroyed. The game can be played either in single or multiplayer modes. Volumetric objects are structures composed from block-like modules interlocked in a grid. Volumetric objects behave like real physical objects with mass, inertia and velocity. Individual modules have real volume and storage capacity. Space Engineers is inspired by reality and by how things work. Think about modern-day NASA technology extrapolated 60 years into the future. Space Engineers strives to follow the laws of physics and doesn't use technologies that wouldn't be feasible in the near future. Space Engineers concentrates on construction and exploration aspects, but can be played as a survival shooter as well. We expect players will avoid engaging in direct man-to-man combat and instead use their creativity and engineering skills to build war machines and fortifications to survive in space and on planets. Space Engineers shouldn\u2019t be about troops; it should be about the machinery you build.
+
#: i18n/tmp/Applications/Games/Spore/application.js:1
Spore=Spore
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:1
+Sprouts\ Adventure=Sprouts Adventure
+
+#: i18n/tmp/Applications/Games/Sprouts Adventure/application.js:2
+Sprouts\ are\ curious\ creatures\ who\ have\ lived\ a\ very\ long\ time\ on\ the\ Mushroom\ Cliffs.\ They\ have\ quite\ the\ spark\ and\ one\ thing\ is\ for\ sure,\ they\ need\ your\ help\!=Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help\!
+
#: i18n/tmp/Applications/Games/Star Craft II/application.js:1
Star\ Craft\ II=Star Craft II
@@ -1219,120 +1325,122 @@ Star\ Trek\ Online=Star Trek Online
#: i18n/tmp/Applications/Games/Star Craft II/application.js:2
StarCraft\ II\:\ Wings\ of\ Liberty\ is\ a\ military\ science\ fiction\ real-time\ strategy\ video\ game\ developed\ and\ published\ by\ Blizzard\ Entertainment.=StarCraft II\: Wings of Liberty is a military science fiction real-time strategy video game developed and published by Blizzard Entertainment.
-#: i18n/tmp/Applications/Games/Assassin's Creed Revelations/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dr. Langeskov, The Tiger, and Terribly Cursed
-#: Emerald: A Whirlwind Heist/Steam/script.js:1 Unity/Steam/script.js:1 Creed:
-#: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Age of Empires II
-#: HD/Steam/script.js:1 i18n/tmp/Applications/Games/STAR WARS: Dark
-#: Forces/Steam/script.js:1 i18n/tmp/Applications/Games/The Sims
-#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
-#: Division/Steam/script.js:1 II/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 Turing
-#: Test/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
-#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1 Vanishing Ethan
-#: Carter Redux/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
-#: Tori/Steam/script.js:1 i18n/tmp/Applications/Games/Subnautica Below
-#: Zero/Steam/script.js:1 i18n/tmp/Applications/Games/Ether One
-#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Caesar III/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Dragon Ball Xenoverse/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells Plus/Steam/script.js:1
-#: Creed/Steam/script.js:1 i18n/tmp/Applications/Games/Q.U.B.E: Director's
-#: Cut/Steam/script.js:1 Infinite/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
-#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Space Colony/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mass Effect 2/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Super Blue Boy Planet/Steam/script.js:1
-#: Effect/Steam/script.js:1 i18n/tmp/Applications/Games/DOOM
-#: (2016)/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
-#: Ultimate Box/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
-#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/Unholy
-#: Heights/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Niko: Through The Dream/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Assassin's Creed Unity/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
#: i18n/tmp/Applications/Games/Tropico 4/Steam/script.js:1
-#: Crew/Steam/script.js:1 Carter/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Total War Rome II/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Crew/Steam/script.js:1
#: i18n/tmp/Applications/Games/Rocksmith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Warlock - Master the Arcane/Steam/script.js:1
-#: III: Complete Collection/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb
-#: Raider Underworld/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/DOOM (2016)/Steam/script.js:1
+#: i18n/tmp/Applications/Games/PC Building Simulator/Steam/script.js:1 Sims
+#: 3/Steam/script.js:1 i18n/tmp/Applications/Games/Wildlife Park
+#: 2/Steam/script.js:1 i18n/tmp/Applications/Games/Tomb Raider
+#: Underworld/Steam/script.js:1 i18n/tmp/Applications/Games/Tom Clancy's
+#: Division/Steam/script.js:1 i18n/tmp/Applications/Games/Red
+#: Trigger/Steam/script.js:1 i18n/tmp/Applications/Games/Medieval II: Total
+#: War/Steam/script.js:1 i18n/tmp/Applications/Games/Totally Accurate
+#: Battlegrounds/Steam/script.js:1 i18n/tmp/Applications/Games/PAYDAY
+#: Heist/Steam/script.js:1 i18n/tmp/Applications/Games/BRINK/Steam/script.js:1
+#: Vanishing of Ethan Carter/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mafia i18n/tmp/Applications/Games/Rocksmith
+#: 2014/Steam/script.js:1
+#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Cry
+#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
#: i18n/tmp/Applications/Games/Worms Reloaded/Steam/script.js:1
-#: Anniversary/Steam/script.js:1 Legend/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Rocksmith 2014/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 WARS Empire
-#: at War Gold Pack/Steam/script.js:1 IV Black Flag/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Enderal/Steam/script.js:1
+#: Revelations/Steam/script.js:1 i18n/tmp/Applications/Games/Hexcells
+#: Infinite/Steam/script.js:1 Plus/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
#: i18n/tmp/Applications/Games/Black Mesa/Steam/script.js:1
-#: i18n/tmp/Applications/Games/PAYDAY Armageddon/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham Asylum/Steam/script.js:1 Jedi
-#: Knight Academy/Steam/script.js:1 i18n/tmp/Applications/Games/Red
-#: Trigger/Steam/script.js:1 Room Two/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Shower With Your Dad Simulator 2015: Do You
-#: Still Shower Dad/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell:
-#: Keeping an Eye On You/Steam/script.js:1 Room/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam/script.js:1
-#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1
-#: Witness/Steam/script.js:1 i18n/tmp/Applications/Games/Mount &
-#: Blade/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Total Rome i18n/tmp/Applications/Games/Mafia
-#: Mysteries Sith/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Far Cry/Steam/script.js:1
+#: i18n/tmp/Applications/Games/TRON RUNr/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Q.U.B.E: Director's Cut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/STAR WARS Jedi Knight II -
+#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Mass
+#: Effect/Steam/script.js:1 Room/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Star Trek Online/Steam/script.js:1
#: i18n/tmp/Applications/Games/Steam/application.js:1
+#: i18n/tmp/Applications/Games/Dr. Langeskov, Tiger, and Terribly Cursed
+#: Emerald: A Whirlwind i18n/tmp/Applications/Games/Space
+#: Colony/Steam/script.js:1 i18n/tmp/Applications/Games/Super Blue Boy
+#: Planet/Steam/script.js:1 i18n/tmp/Applications/Games/Dragon Ball
+#: Xenoverse/Steam/script.js:1
+#: i18n/tmp/Applications/Games/ChromaGun/Steam/script.js:1 Carter
+#: Redux/Steam/script.js:1 Elder Scrolls V: Skyrim/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Ether One Effect i18n/tmp/Applications/Games/Age
+#: Empires HD/Steam/script.js:1 i18n/tmp/Applications/Games/Burnout Paradise:
+#: Ultimate Box/Steam/script.js:1 Academy/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Batmanâ¢: Arkham City/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam/script.js:1
#: i18n/tmp/Applications/Games/Cogs/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Civilization V/Steam/script.js:1
-#: i18n/tmp/Applications/Games/CONSORTIUM/Steam/script.js:1 Witcher 3: Wild
-#: Hunt/Steam/script.js:1 Battlefront i18n/tmp/Applications/Games/Wildlife
-#: Park i18n/tmp/Applications/Games/It came from space ate our
-#: brains/Steam/script.js:1 Cry i18n/tmp/Applications/Games/Scribblenauts
-#: Unlimited/Steam/script.js:1 City/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Call Juarez Gunslinger/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Niko: Through Dream/Steam/script.js:1
-#: Outcast/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
-#: Conundrum/Steam/script.js:1 Origins/Steam/script.js:1 Knight: Forces
-#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Subnautica Below Zero/Steam/script.js:1
+#: III/Steam/script.js:1 Engineers/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warface/Steam/script.js:1
+#: Creed/Steam/script.js:1 Witness/Steam/script.js:1
+#: i18n/tmp/Applications/Games/It came from space ate our
+#: brains/Steam/script.js:1 III: Complete Collection/Steam/script.js:1
+#: Asylum/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Elite:Dangerous/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Prey/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Clicker Heroes/Steam/script.js:1
+#: i18n/tmp/Applications/Games/RimWorld/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Warlock Master the Arcane/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Borderlands/Steam/script.js:1 Empire at Gold
+#: Pack/Steam/script.js:1 i18n/tmp/Applications/Games/Braid/Steam/script.js:1
+#: Creed: Brotherhood/Steam/script.js:1 i18n/tmp/Applications/Games/Toki
+#: Tori/Steam/script.js:1 Mysteries Sith/Steam/script.js:1 Room
+#: Two/Steam/script.js:1 i18n/tmp/Applications/Games/Pro Evolution Soccer
+#: 2018/Steam/script.js:1 Armageddon/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam/script.js:1
+#: Legend/Steam/script.js:1 Witcher 3: Wild Hunt/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Audiosurf/Steam/script.js:1 IV Black
+#: Flag/Steam/script.js:1 i18n/tmp/Applications/Games/Trackmania
+#: Turbo/Steam/script.js:1 i18n/tmp/Applications/Games/Quantum
+#: Conundrum/Steam/script.js:1 i18n/tmp/Applications/Games/Orwell: Keeping an
+#: Eye On You/Steam/script.js:1 i18n/tmp/Applications/Games/Mirror's
+#: Edge/Steam/script.js:1 i18n/tmp/Applications/Games/Shower With Your Dad
+#: Simulator 2015: Do You Still Shower Dad/Steam/script.js:1
#: i18n/tmp/Applications/Games/Subnautica/Steam/script.js:1
-#: i18n/tmp/Applications/Games/BioShock/Steam/script.js:1
-#: i18n/tmp/Applications/Games/Mirror's Edge/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Spore/Steam/script.js:1 WARS: Dark
+#: Forces/Steam/script.js:1
+#: i18n/tmp/Applications/Games/FlatOut/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Hexcells/Steam/script.js:1
+#: Anniversary/Steam/script.js:1 Turing Test/Steam/script.js:1
+#: Origins/Steam/script.js:1 i18n/tmp/Applications/Games/Caesar Battlefront
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam/script.js:1 Xenoverse
+#: i18n/tmp/Applications/Games/Unholy Heights/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam/script.js:1
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam/script.js:1 Knight:
+#: Forces
Steam=Steam
+#: i18n/tmp/Applications/Games/BioShock/Steam (Demo)/script.js:1
+#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
+#: Crew/Steam i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam
#: i18n/tmp/Applications/Games/Tom Clancy's The Division/Steam
-#: (Demo)/script.js:1 i18n/tmp/Applications/Games/TRON RUNr/Steam
-#: i18n/tmp/Applications/Games/Toki Tori/Steam
#: i18n/tmp/Applications/Games/Medieval II: Total War/Steam
-#: i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
-#: i18n/tmp/Applications/Games/FlatOut/Steam
-#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
-#: i18n/tmp/Applications/Games/Tropico 4/Steam i18n/tmp/Applications/Games/The
-#: Crew/Steam i18n/tmp/Applications/Games/Braid/Steam
-#: i18n/tmp/Applications/Games/Tomb Raider Underworld/Steam Anniversary/Steam
-#: Legend/Steam i18n/tmp/Applications/Games/Styx: Shards of Darkness/Steam
-#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
-#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
-#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
-#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Mafia II/Steam i18n/tmp/Applications/Games/Call
+#: of Juarez Gunslinger/Steam i18n/tmp/Applications/Games/TRON RUNr/Steam
#: i18n/tmp/Applications/Games/ChromaGun/Steam
-#: i18n/tmp/Applications/Games/Mount & Blade/Steam
-#: i18n/tmp/Applications/Games/Mafia II/Steam
+#: i18n/tmp/Applications/Games/Europa Universalis IV/Steam
+#: i18n/tmp/Applications/Games/Styx: Shards Darkness/Steam
+#: i18n/tmp/Applications/Games/Cogs/Steam
#: i18n/tmp/Applications/Games/Prey/Steam
-#: i18n/tmp/Applications/Games/Cogs/Steam i18n/tmp/Applications/Games/Call
-#: Juarez Gunslinger/Steam i18n/tmp/Applications/Games/Rayman Legends/Steam
-#: i18n/tmp/Applications/Games/BioShock/Steam
+#: i18n/tmp/Applications/Games/Braid/Steam i18n/tmp/Applications/Games/Toki
+#: Tori/Steam i18n/tmp/Applications/Games/Pro Evolution Soccer 2018/Steam
+#: i18n/tmp/Applications/Games/Mount & Blade/Steam Legend/Steam
+#: i18n/tmp/Applications/Games/Trackmania Turbo/Steam
+#: i18n/tmp/Applications/Games/Orwell: Keeping an Eye On You/Steam
+#: i18n/tmp/Applications/Games/FlatOut/Steam Anniversary/Steam
+#: i18n/tmp/Applications/Games/Rayman Legends/Steam
+#: i18n/tmp/Applications/Games/Goodbye Deponia/Steam
+#: i18n/tmp/Applications/Games/Consortium: Tower/Steam
Steam\ (Demo)=Steam (Demo)
-#: i18n/tmp/Applications/Games/The Elder Scrolls IV:
-#: Oblivion/Steam/script.js:1
+#: i18n/tmp/Applications/Games/The Elder Scrolls IV: Oblivion/Steam/script.js:1
Steam\ (GOTY)=Steam (GOTY)
#: i18n/tmp/Applications/Games/Tom Clancy's Rainbow Six 3 : Raven Shield/Steam
@@ -1345,7 +1453,7 @@ Steam\ Script=Steam Script
#: i18n/tmp/Applications/Games/Steam/application.js:2
Steam\ is\ a\ digital\ distribution\ platform\ developed\ by\ Valve\ Corporation,\ which\ offers\ digital\ rights\ management\ (DRM),\ multiplayer\ gaming,\ video\ streaming\ and\ social\ networking\ services.=Steam is a digital distribution platform developed by Valve Corporation, which offers digital rights management (DRM), multiplayer gaming, video streaming and social networking services.
-#: Engines/Wine/Settings/strict draw ordering/script.js:12
+#: Engines/Wine/Settings/strict draw ordering/script.js:17
Strict\ Draw\ Ordering=Strict Draw Ordering
#: i18n/tmp/Applications/Games/Styx: Shards of Darkness/application.js:2
@@ -1366,6 +1474,9 @@ Subnautica\ is\ a\ game\ about\ exploration\ and\ adventure\ set\ in\ an\ underw
#: i18n/tmp/Applications/Games/Super Blue Boy Planet/application.js:1
Super\ Blue\ Boy\ Planet=Super Blue Boy Planet
+#: i18n/tmp/Utils/Functions/System/application.js:1
+System\ Utils=System Utils
+
#: i18n/tmp/Applications/Games/TRON RUNr/application.js:1
TRON\ RUN/r=TRON RUN/r
@@ -1458,8 +1569,8 @@ The\ Vanishing\ of\ Ethan\ Carter=The Vanishing of Ethan Carter
#: Redux/application.js:1
The\ Vanishing\ of\ Ethan\ Carter\ Redux=The Vanishing of Ethan Carter Redux
-#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter
-#: Redux/application.js:2 Carter/application.js:2
+#: i18n/tmp/Applications/Games/The Vanishing of Ethan Carter/application.js:2
+#: Carter Redux/application.js:2
The\ Vanishing\ of\ Ethan\ Carter\ is\ a\ first-person\ story-driven\ mystery.=The Vanishing of Ethan Carter is a first-person story-driven mystery.
#: i18n/tmp/Engines/Wine/Engine/application.js:2
@@ -1474,7 +1585,7 @@ The\ Witcher\:\ Wild\ Hunt\ is\ a\ story-driven,\ next-generation\ open\ world\
#: i18n/tmp/Applications/Games/The Witness/application.js:1
The\ Witness=The Witness
-#: Engines/Wine/Shortcuts/Reader/script.js:62
+#: Engines/Wine/Shortcuts/Reader/script.js:61
The\ container\ {0}\ is\ no\ longer\ used.\nDo\ you\ want\ to\ delete\ it?=The container {0} is no longer used.\nDo you want to delete it?
#: i18n/tmp/Applications/Games/Europa Universalis IV/application.js:2
@@ -1483,6 +1594,9 @@ The\ empire\ building\ game\ Europa\ Universalis\ IV\ gives\ you\ control\ of\ a
#: i18n/tmp/Applications/Games/Rocksmith 2014/application.js:2
The\ fastest\ way\ to\ learn\ guitar\ is\ now\ better\ than\ ever.\ Join\ over\ three\ million\ people\ who\ have\ learned\ to\ play\ guitar\ with\ the\ award-winning\ Rocksmith®\ method.\ Plug\ any\ real\ guitar\ or\ bass\ with\ a\ 1/4\ inch\ jack\ directly\ into\ your\ PC\ or\ Mac\ and\ you’ll\ learn\ to\ play\ in\ just\ 60\ days.=The fastest way to learn guitar is now better than ever. Join over three million people who have learned to play guitar with the award-winning Rocksmith\u00ae method. Plug any real guitar or bass with a 1/4 inch jack directly into your PC or Mac and you\u2019ll learn to play in just 60 days.
+#: Applications/Games/PC Building Simulator/Steam/script.js:19
+The\ game\ is\ functional\ but\ benchmark\ animations\ on\ the\ monitors\ are\ not\ displayed.\ Feel\ free\ to\ drop\ a\ feedback\ if\ you\ know\ how\ to\ fix\ this\ issue.=The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.
+
#: i18n/tmp/Applications/Games/Toki Tori/application.js:2
The\ gameplay\ in\ Toki\ Tori\ is\ a\ blend\ of\ two\ genres.\ While\ it\ looks\ like\ a\ platform\ game,\ it's\ a\ puzzle\ game\ at\ heart.\ To\ progress\ through\ the\ game,\ the\ player\ must\ pick\ up\ each\ egg\ in\ a\ level\ using\ a\ set\ number\ of\ tools.=The gameplay in Toki Tori is a blend of two genres. While it looks like a platform game, it's a puzzle game at heart. To progress through the game, the player must pick up each egg in a level using a set number of tools.
@@ -1498,25 +1612,28 @@ The\ world\ is\ changing\ and\ Tropico\ is\ moving\ with\ the\ times\ -\ geograp
#: i18n/tmp/Applications/Games/Assassin's Creed IV Black Flag/application.js:2
The\ year\ is\ 1715.\ Pirates\ rule\ the\ Caribbean\ and\ have\ established\ their\ own\ lawless\ Republic\ where\ corruption,\ greediness\ and\ cruelty\ are\ commonplace.Among\ these\ outlaws\ is\ a\ brash\ young\ captain\ named\ Edward\ Kenway.=The year is 1715. Pirates rule the Caribbean and have established their own lawless Republic where corruption, greediness and cruelty are commonplace.Among these outlaws is a brash young captain named Edward Kenway.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:28
+#: Applications/Games/Lego Rock Raiders/Local/script.js:29
This\ game\ needs\ a\ copy\ protection\ patch\ to\ work.\ It\ may\ be\ illegal\ in\ your\ country\ to\ patch\ copy\ protection.\ You\ must\ patch\ the\ game\ yourself.=This game needs a copy protection patch to work. It may be illegal in your country to patch copy protection. You must patch the game yourself.
-#: Engines/Wine/Verbs/dotnet46/script.js:14
-#: Engines/Wine/Verbs/dotnet46/script.js:57
-#: Engines/Wine/Verbs/dotnet472/script.js:15
-#: Engines/Wine/Verbs/dotnet472/script.js:58
-#: Engines/Wine/Verbs/dotnet461/script.js:15
-#: Engines/Wine/Verbs/dotnet461/script.js:58
-#: Engines/Wine/Verbs/dotnet452/script.js:15
-#: Engines/Wine/Verbs/dotnet452/script.js:62
-#: Engines/Wine/Verbs/dotnet462/script.js:15
-#: Engines/Wine/Verbs/dotnet462/script.js:58
+#: Applications/Games/Sprouts Adventure/Local/script.js:13
+This\ game\ requires\ winebind\ (for\ Ubuntu)\ or\ samba\ and\ libwbclient/lib32-libwbclient\ (for\ Arch\ Linux).=This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux).
+
+#: Engines/Wine/Verbs/dotnet472/script.js:25
+#: Engines/Wine/Verbs/dotnet472/script.js:64
+#: Engines/Wine/Verbs/dotnet462/script.js:25
+#: Engines/Wine/Verbs/dotnet462/script.js:64
+#: Engines/Wine/Verbs/dotnet46/script.js:25
+#: Engines/Wine/Verbs/dotnet46/script.js:64
+#: Engines/Wine/Verbs/dotnet452/script.js:25
+#: Engines/Wine/Verbs/dotnet452/script.js:68
+#: Engines/Wine/Verbs/dotnet461/script.js:25
+#: Engines/Wine/Verbs/dotnet461/script.js:64
This\ package\ ({0})\ does\ not\ work\ currently.\ Use\ it\ only\ for\ testing\!=This package ({0}) does not work currently. Use it only for testing\!
-#: Engines/Wine/Verbs/dotnet40/script.js:15
-#: Engines/Wine/Verbs/dotnet40/script.js:73
-#: Engines/Wine/Verbs/dotnet45/script.js:15
-#: Engines/Wine/Verbs/dotnet45/script.js:65
+#: Engines/Wine/Verbs/dotnet40/script.js:27
+#: Engines/Wine/Verbs/dotnet40/script.js:86
+#: Engines/Wine/Verbs/dotnet45/script.js:29
+#: Engines/Wine/Verbs/dotnet45/script.js:79
This\ package\ ({0})\ may\ not\ fully\ work\ on\ a\ 64-bit\ installation.\ 32-bit\ prefixes\ may\ work\ better.=This package ({0}) may not fully work on a 64-bit installation. 32-bit prefixes may work better.
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:2
@@ -1544,8 +1661,7 @@ Tomb\ Raider\:\ Anniversary\ retraces\ Lara\ Croft's\ original\ genre-defining\
#: i18n/tmp/Applications/Games/Tomb Raider Legend/application.js:1
Tomb\ Raider\:\ Legend=Tomb Raider\: Legend
-#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of
-#: Xian/application.js:1
+#: i18n/tmp/Applications/Games/Tomb Raider: The Dagger Of Xian/application.js:1
Tomb\ Raider\:\ The\ Dagger\ Of\ Xian=Tomb Raider\: The Dagger Of Xian
#: i18n/tmp/Applications/Games/Tomb Raider Underworld/application.js:1
@@ -1584,14 +1700,17 @@ Unholy\ Heights=Unholy Heights
#: i18n/tmp/Applications/Games/The Room Two/application.js:2
Unique\ events\ transport\ you\ to\ the\ halls\ of\ a\ long-forgotten\ crypt.\ The\ only\ means\ of\ escape\ lies\ locked\ within\ a\ stone\ pedestal,\ along\ with\ a\ note\ from\ your\ mysterious\ ally.\ His\ words\ promise\ assistance,\ but\ only\ serve\ to\ entice\ you\ into\ a\ compelling\ world\ of\ mystery\ and\ exploration.=Unique events transport you to the halls of a long-forgotten crypt. The only means of escape lies locked within a stone pedestal, along with a note from your mysterious ally. His words promise assistance, but only serve to entice you into a compelling world of mystery and exploration.
-#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
-#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Far Cry 3 - Blood
-#: Dragon/Uplay/script.js:1 i18n/tmp/Applications/Games/Uplay/application.js:1
-#: i18n/tmp/Applications/Games/Rayman Origins/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: Engines/Wine/Plugins/Font smoothing/script.js:42
+Unknown\ font\ smoothing\ mode\:\ "{0}"=Unknown font smoothing mode\: "{0}"
+
+#: i18n/tmp/Applications/Games/Far Cry 3 - Blood Dragon/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Uplay/application.js:1
#: i18n/tmp/Applications/Games/Anno 2070/Uplay/script.js:1
-#: i18n/tmp/Applications/Games/Beyond Good and Evil/Uplay/script.js:1
-#: i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Tom Clancy's Splinter Cell/Uplay/script.js:1
+#: i18n/tmp/Applications/Games/Prince of Persia: The Sands
+#: Time/Uplay/script.js:1 i18n/tmp/Applications/Games/Beyond Good and
+#: Evil/Uplay/script.js:1 i18n/tmp/Applications/Games/Rayman
+#: Origins/Uplay/script.js:1 i18n/tmp/Engines/Wine/Verbs/Uplay/script.js:1
Uplay=Uplay
#: i18n/tmp/Engines/Wine/QuickScript/Uplay Script/script.js:1
@@ -1600,6 +1719,16 @@ Uplay\ Script=Uplay Script
#: i18n/tmp/Applications/Games/Uplay/application.js:2
Uplay\ is\ Ubisoft's\ PC\ games\ portal.=Uplay is Ubisoft's PC games portal.
+#: i18n/tmp/Engines/Wine/Plugins/UseTakeFocus/script.js:1
+Use\ Take\ Focus=Use Take Focus
+
+#: Engines/Wine/Settings/UseTakeFocus/script.js:19
+#: i18n/tmp/Engines/Wine/Settings/UseTakeFocus/script.js:1
+UseTakeFocus=UseTakeFocus
+
+#: Engines/Wine/Verbs/gallium9/script.js:44
+Using\ Gallium\ 9\ requires\ to\ have\ a\ driver\ supporting\ the\ Gallium\ 9\ state\ tracker,\ as\ well\ as\ d3dapater9.so\ installed\ (ex\:\ libd3d9adapter-mesa\ package).\ Please\ be\ sure\ it\ is\ installed\ (both\ 32\ and\ 64\ bits).=Using Gallium 9 requires to have a driver supporting the Gallium 9 state tracker, as well as d3dapater9.so installed (ex\: libd3d9adapter-mesa package). Please be sure it is installed (both 32 and 64 bits).
+
#: i18n/tmp/Utils/Functions/Apps/application.js:2
Utils\ for\ apps.=Utils for apps.
@@ -1609,10 +1738,13 @@ Utils\ for\ file\ system\ interaction.=Utils for file system interaction.
#: i18n/tmp/Utils/Functions/Net/application.js:2
Utils\ for\ interaction\ with\ the\ Internet.=Utils for interaction with the Internet.
+#: i18n/tmp/Utils/Functions/System/application.js:2
+Utils\ for\ system\ interaction.=Utils for system interaction.
+
#: i18n/tmp/Engines/Wine/Verbs/VK9/script.js:1
VK9=VK9
-#: Engines/Wine/Verbs/VK9/script.js:16
+#: Engines/Wine/Verbs/VK9/script.js:42
VK9\ might\ not\ work\ correctly\ on\ macOS.\ This\ is\ depending\ on\ Metal\ api\ support\ and\ MoltenVK\ compatibility\ layer\ advancement=VK9 might not work correctly on macOS. This is depending on Metal api support and MoltenVK compatibility layer advancement
#: i18n/tmp/Applications/Games/Scribblenauts Unlimited/application.js:2
@@ -1621,7 +1753,7 @@ Venture\ into\ a\ wide-open\ world\ where\ the\ most\ powerful\ tool\ is\ your\
#: i18n/tmp/Engines/Wine/Verbs/application.js:2
Verbs\ for\ Wine.=Verbs for Wine.
-#: Engines/Wine/Settings/video memory size/script.js:12
+#: Engines/Wine/Settings/video memory size/script.js:17
Video\ memory\ size=Video memory size
#: i18n/tmp/Applications/Games/Mafia II/application.js:2
@@ -1645,17 +1777,17 @@ Welcome\ to\ ChromaTec’s\ test\ lab\!\ You’re\ here\ to\ test\ our\ newest,\
#: i18n/tmp/Applications/Games/Unholy Heights/application.js:2
Welcome\ to\ Unholy\ Heights,\ a\ mashup\ of\ Tower\ Defense\ and\ Apartment\ Management\ Simulation\!\ The\ Devil\ has\ converted\ a\ tenement\ building\ into\ monsters-only\ housing,\ and\ has\ big\ plans\ for\ the\ future.\ Sucker\ monsters\ into\ moving\ into\ your\ building,\ charge\ them\ rent\ and\ keep\ them\ happy\ by\ buying\ them\ furniture.\ Unfortunately,\ heroes\ have\ caught\ wind\ of\ the\ Devil's\ plan,\ and\ will\ stop\ at\ nothing\ to\ wipe\ him\ out.\ Knock\ on\ residents'\ doors\ to\ call\ them\ to\ battle,\ trap\ heroes\ in\ devious\ pincer\ formations,\ and\ command\ your\ troops\ to\ victory.\ Monsters\ get\ jobs,\ fall\ in\ love,\ have\ children,\ and\ even\ skip\ out\ on\ their\ rent.\ Keep\ them\ happy\ or\ you\ might\ not\ have\ anyone\ to\ fight\ for\ you\ when\ heroes\ come\ knocking.\ But\ don't\ be\ too\ soft\:\ there's\ always\ prospective\ baddies\ looking\ to\ move\ in,\ so\ kick\ out\ the\ freeloaders\ when\ the\ time\ is\ right\!\ Being\ a\ landlord\ is\ a\ difficult\ job,\ but\ it\ can't\ be\ harder\ than\ running\ Hell...right?=Welcome to Unholy Heights, a mashup of Tower Defense and Apartment Management Simulation\! The Devil has converted a tenement building into monsters-only housing, and has big plans for the future. Sucker monsters into moving into your building, charge them rent and keep them happy by buying them furniture. Unfortunately, heroes have caught wind of the Devil's plan, and will stop at nothing to wipe him out. Knock on residents' doors to call them to battle, trap heroes in devious pincer formations, and command your troops to victory. Monsters get jobs, fall in love, have children, and even skip out on their rent. Keep them happy or you might not have anyone to fight for you when heroes come knocking. But don't be too soft\: there's always prospective baddies looking to move in, so kick out the freeloaders when the time is right\! Being a landlord is a difficult job, but it can't be harder than running Hell...right?
-#: Applications/Games/Origin/Online (Legacy)/script.js:15
-#: Applications/Games/Origin/Local (Legacy)/script.js:16
+#: Applications/Games/Origin/Online (Legacy)/script.js:18
+#: Applications/Games/Origin/Local (Legacy)/script.js:17
When\ Origin\ launches,\ you\ will\ get\ an\ error\ message\ ("Your\ update\ could\ not\ be\ completed.").\ This\ is\ ok.\ Just\ close\ the\ popup.=When Origin launches, you will get an error message ("Your update could not be completed."). This is ok. Just close the popup.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:42
+#: Applications/Games/Lego Rock Raiders/Local/script.js:47
When\ installing\ Indeo\ codecs\ you\ must\ choose\ custom\ installation\ type.\ Then\ uncheck\ ownload\ DirectShow\ filter\ and\ Indeo\ 5\ Netscape\ Browser\ Extension\ or\ else\ the\ installer\ will\ crash.=When installing Indeo codecs you must choose custom installation type. Then uncheck ownload DirectShow filter and Indeo 5 Netscape Browser Extension or else the installer will crash.
-#: Applications/Games/Lego Rock Raiders/Local/script.js:25
+#: Applications/Games/Lego Rock Raiders/Local/script.js:24
When\ the\ game\ ask\ to\ install\ DirectX\ Media\ click\ yes.\ Click\ no\ when\ it\ ask\ for\ DirectX\ 6.=When the game ask to install DirectX Media click yes. Click no when it ask for DirectX 6.
-#: Applications/Internet/Internet Explorer 7.0/Online/script.js:67
+#: Applications/Internet/Internet Explorer 7.0/Online/script.js:82
Which\ language\ version\ would\ you\ like\ to\ install?=Which language version would you like to install?
#: i18n/tmp/Applications/Games/Wildlife Park 2/application.js:1
@@ -1694,6 +1826,9 @@ Wine\ Tools=Wine Tools
#: i18n/tmp/Engines/Wine/Verbs/application.js:1
Wine\ Verbs=Wine Verbs
+#: i18n/tmp/Engines/Wine/Engine/Constants/script.js:1
+Wine\ constants=Wine constants
+
#: i18n/tmp/Engines/Wine/Engine/Object/script.js:1
Wine\ engine=Wine engine
@@ -1703,9 +1838,15 @@ Wine\ engine\ (implementation\ of\ Java\ interface)=Wine engine (implementation
#: i18n/tmp/Engines/Wine/Tools/Wine Uninstaller/script.js:1
Wine\ uninstaller=Wine uninstaller
+#: i18n/tmp/Engines/Wine/Engine/Versions/script.js:1
+Wine\ versions=Wine versions
+
#: i18n/tmp/Applications/Games/The Elder Scrolls V: Skyrim/application.js:2
Winner\ of\ more\ than\ 200\ Game\ of\ the\ Year\ Awards,\ Skyrim\ Special\ Edition\ brings\ the\ epic\ fantasy\ to\ life\ in\ stunning\ detail.\ The\ Special\ Edition\ includes\ the\ critically\ acclaimed\ game\ and\ add-ons\ with\ all-new\ features\ like\ remastered\ art\ and\ effects,\ volumetric\ god\ rays,\ dynamic\ depth\ of\ field,\ screen-space\ reflections,\ and\ more.\ Skyrim\ Special\ Edition\ also\ brings\ the\ full\ power\ of\ mods\ to\ the\ PC\ and\ consoles.\ New\ quests,\ environments,\ characters,\ dialogue,\ armor,\ weapons\ and\ more\ –\ with\ Mods,\ there\ are\ no\ limits\ to\ what\ you\ can\ experience.=Winner of more than 200 Game of the Year Awards, Skyrim Special Edition brings the epic fantasy to life in stunning detail. The Special Edition includes the critically acclaimed game and add-ons with all-new features like remastered art and effects, volumetric god rays, dynamic depth of field, screen-space reflections, and more. Skyrim Special Edition also brings the full power of mods to the PC and consoles. New quests, environments, characters, dialogue, armor, weapons and more \u2013 with Mods, there are no limits to what you can experience.
+#: i18n/tmp/Applications/Development/Enterprise Architect/application.js:2
+With\ built-in\ requirements\ management\ capabilities,\ Enterprise\ Architect\ helps\ you\ trace\ high-level\ specifications\ to\ analysis,\ design,\ implementation,\ test\ and\ maintenance\ models\ using\ UML,\ SysML,\ BPMN\ and\ other\ open\ standards.=With built-in requirements management capabilities, Enterprise Architect helps you trace high-level specifications to analysis, design, implementation, test and maintenance models using UML, SysML, BPMN and other open standards.
+
#: i18n/tmp/Applications/Games/Worms Armageddon/application.js:1
Worms\ Armageddon=Worms Armageddon
@@ -1732,12 +1873,15 @@ You\ are\ a\ gun\ for\ hire,\ trapped\ in\ a\ war-torn\ African\ state,\ stricke
You\ are\ in\ command\ of\ the\ armies\ of\ either\ GDI\ or\ NOD\ with\ the\ fate\ of\ Earth\ in\ the\ balance.=You are in command of the armies of either GDI or NOD with the fate of Earth in the balance.
#: Applications/Games/Subnautica Below Zero/Steam/script.js:20
-#: Applications/Games/Subnautica/Steam/script.js:20
+#: Applications/Games/Subnautica/Steam/script.js:22
You\ can\ make\ the\ game\ smoother\ by\ using\ this\:\ https\://github.com/lutris/lutris/wiki/How-to\:-Esync=You can make the game smoother by using this\: https\://github.com/lutris/lutris/wiki/How-to\:-Esync
#: i18n/tmp/Applications/Games/BRINK/application.js:2
You\ decide\ the\ combat\ role\ you\ want\ to\ assume\ in\ the\ world\ of\ Brink\ as\ you\ fight\ to\ save\ yourself\ and\ mankind’s\ last\ refuge\!=You decide the combat role you want to assume in the world of Brink as you fight to save yourself and mankind\u2019s last refuge\!
+#: Applications/Games/Space Engineers/Steam/script.js:49
+You\ have\ to\ install\ libjpeg62\ and\ libjpeg62-dev\ or\ else\ the\ thumbnails\ in\ New\ Game\ menu\ will\ be\ dispalyed\ as\ magenta\ rectangles.=You have to install libjpeg62 and libjpeg62-dev or else the thumbnails in New Game menu will be dispalyed as magenta rectangles.
+
#: i18n/tmp/Applications/Games/Druid Soccer/application.js:2
You\ take\ part\ in\ the\ ancient\ traditional\ game\ of\ Druid\ Soccer.=You take part in the ancient traditional game of Druid Soccer.
@@ -1756,6 +1900,9 @@ always\ offscreen=always offscreen
#: i18n/tmp/Engines/Wine/Verbs/amstream/script.js:1
amstream=amstream
+#: i18n/tmp/Engines/Wine/Verbs/atmlib/script.js:1
+atmlib=atmlib
+
#: i18n/tmp/Engines/Wine/Verbs/corefonts/script.js:1
corefonts=corefonts
@@ -1783,13 +1930,19 @@ devenum=devenum
#: i18n/tmp/Engines/Wine/Verbs/FAudio/script.js:1
faudio=faudio
-#: Engines/Wine/Verbs/corefonts/script.js:85
-#: Engines/Wine/Verbs/corefonts/script.js:91
+#: Engines/Wine/Verbs/corefonts/script.js:94
+#: Engines/Wine/Verbs/corefonts/script.js:98
fonts=fonts
+#: i18n/tmp/Engines/Wine/Verbs/gallium9/script.js:1
+gallium9=gallium9
+
#: i18n/tmp/Engines/Wine/Verbs/gdiplus/script.js:1
gdiplus=gdiplus
+#: i18n/tmp/Engines/Wine/Verbs/gdiplus_winxp/script.js:1
+gdiplus_winxp=gdiplus_winxp
+
#: i18n/tmp/Engines/Wine/Plugins/hdpi/script.js:1
hdpi=hdpi
@@ -1814,12 +1967,21 @@ msls31=msls31
#: i18n/tmp/Engines/Wine/Verbs/mspatcha/script.js:1
mspatcha=mspatcha
+#: i18n/tmp/Engines/Wine/Verbs/msxml3/script.js:1
+msxml3=msxml3
+
+#: i18n/tmp/Engines/Wine/Verbs/msxml6/script.js:1
+msxml6=msxml6
+
#: i18n/tmp/Engines/Wine/Settings/multisampling/script.js:1
multisampling=multisampling
#: i18n/tmp/Engines/Wine/Plugins/native application/script.js:1
native\ application=native application
+#: i18n/tmp/Engines/Wine/Plugins/nocrashdialog/script.js:1
+nocrashdialog=nocrashdialog
+
#: i18n/tmp/Engines/Wine/Settings/offscreen rendering mode/script.js:1
offscreen\ rendering\ mode=offscreen rendering mode
@@ -1835,10 +1997,10 @@ override\ DLL=override DLL
#: i18n/tmp/Engines/Wine/Verbs/quartz/script.js:1
quartz=quartz
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readdraw=readdraw
-#: Engines/Wine/Settings/render target lock mode/script.js:8
+#: Engines/Wine/Settings/render target lock mode/script.js:11
readtext=readtext
#: i18n/tmp/Engines/Wine/Plugins/regedit/script.js:1
@@ -1865,9 +2027,6 @@ sound\ driver=sound driver
#: i18n/tmp/Engines/Wine/Settings/strict draw ordering/script.js:1
strict\ draw\ ordering=strict draw ordering
-#: i18n/tmp/Applications/Development/Notepad++/v7.2.2/script.js:1
-v.7.2.2=v.7.2.2
-
#: i18n/tmp/Applications/Games/Icy Tower/v1.5/script.js:1
v1.5=v1.5
@@ -1901,10 +2060,14 @@ vcrun2015=vcrun2015
#: i18n/tmp/Engines/Wine/Verbs/vcrun2017/script.js:1
vcrun2017=vcrun2017
+#: i18n/tmp/Engines/Wine/Verbs/vcrun6sp6/script.js:1
+vcrun6sp6=vcrun6sp6
+
#: i18n/tmp/Engines/Wine/Settings/video memory size/script.js:1
video\ memory\ size=video memory size
-#: i18n/tmp/Engines/Wine/Plugins/virtual desktop/script.js:1
+#: i18n/tmp/Utils/Functions/System/virtual desktop/script.js:1
+#: i18n/tmp/Engines/Wine/Plugins/virtual
virtual\ desktop=virtual desktop
#: i18n/tmp/Engines/Wine/Verbs/vulkanSDK/script.js:1
@@ -1913,11 +2076,10 @@ vulkanSDK=vulkanSDK
#: i18n/tmp/Engines/Wine/Verbs/xact/script.js:1
xact=xact
-#: Engines/Wine/Verbs/dotnet452/script.js:48
-#: Engines/Wine/Verbs/dotnet45/script.js:49
+#: Engines/Wine/Verbs/dotnet452/script.js:57
+#: Engines/Wine/Verbs/dotnet45/script.js:65
{0}\ applications\ can\ have\ issues\ when\ windows\ version\ is\ not\ set\ to\ "win2003"={0} applications can have issues when windows version is not set to "win2003"
#: i18n/tmp/Applications/Games/It came from space and ate our
#: brains/application.js:2
‘It\ came\ from\ space,\ and\ ate\ our\ brains’\ is\ an\ Arcade\ top\ down\ shooter\ with\ horde\ survival\ gameplay\ in\ a\ unique\ atmospheric\ setting\ with\ addicting\ gameplay\ elements,\ which\ all\ can\ be\ played\ cooperatively.\ You\ are\ a\ no-nonsense\ kind\ of\ guy\ equipped\ with\ a\ flashlight\ and\ a\ weapon.\ You\ somehow\ managed\ to\ survive\ the\ invasion\ of\ a\ merciless\ alien\ species,\ the\ kind\ that\ feeds\ on\ human\ brains.\ Things\ look\ bad\ when\ you\ wander\ the\ city\ and\ other\ locations,\ there\ is\ chaos\ everywhere\!\ You\ are\ looking\ for\ gear\ and\ weapons\ to\ survive,\ as\ pink\ light\ emitting\ aliens\ try\ to\ corner\ you\ and\ eat\ your\ brain.\ You\ realize\ there\ is\ only\ one\ thing\ left\ to\ do\:\ set\ a\ new\ high\ score\ and\ die\ like\ a\ badass.=\u2018It came from space, and ate our brains\u2019 is an Arcade top down shooter with horde survival gameplay in a unique atmospheric setting with addicting gameplay elements, which all can be played cooperatively. You are a no-nonsense kind of guy equipped with a flashlight and a weapon. You somehow managed to survive the invasion of a merciless alien species, the kind that feeds on human brains. Things look bad when you wander the city and other locations, there is chaos everywhere\! You are looking for gear and weapons to survive, as pink light emitting aliens try to corner you and eat your brain. You realize there is only one thing left to do\: set a new high score and die like a badass.
-