Repository: Nihlus/Launchpad Branch: master Commit: 1d62d68683fb Files: 157 Total size: 789.3 KB Directory structure: gitextract_1b689gd4/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .idea/ │ └── .idea.Launchpad/ │ └── .idea/ │ ├── encodings.xml │ ├── indexLayout.xml │ ├── markdown-exported-files.xml │ ├── markdown-navigator/ │ │ └── profiles_settings.xml │ ├── markdown-navigator.xml │ ├── misc.xml │ ├── projectSettingsUpdater.xml │ └── vcs.xml ├── Directory.Build.props ├── LICENSE ├── Launchpad.Common/ │ ├── Enums/ │ │ ├── EManifestType.cs │ │ └── ESystemTarget.cs │ ├── ExtensionMethods.cs │ ├── Handlers/ │ │ ├── MD5Handler.cs │ │ └── Manifest/ │ │ ├── ManifestEntry.cs │ │ └── ManifestHandler.cs │ ├── Launchpad.Common.csproj │ └── PlatformHelpers.cs ├── Launchpad.Launcher/ │ ├── Configuration/ │ │ └── ILaunchpadConfiguration.cs │ ├── Content/ │ │ └── locale/ │ │ ├── af/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ar/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── bg/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── bn/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ca/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── cs/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── da/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── el/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── en/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── es_ES/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── fi/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── he/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── hi/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── hu/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── id/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── it/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ja/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ko/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── nl/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── no/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── pl/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── pt_BR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── pt_PT/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ro/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── ru/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── sr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── sv_SE/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── tr/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── uk/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── vi/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ ├── zh_CN/ │ │ │ └── LC_MESSAGES/ │ │ │ └── messages.po │ │ └── zh_TW/ │ │ └── LC_MESSAGES/ │ │ └── messages.po │ ├── Extensions/ │ │ └── ManifestEntryExtensions.cs │ ├── Handlers/ │ │ ├── ChecksHandler.cs │ │ ├── ConfigHandler.cs │ │ ├── GameHandler.cs │ │ ├── LauncherHandler.cs │ │ └── Protocols/ │ │ ├── EModule.cs │ │ ├── Manifest/ │ │ │ ├── FTPProtocolHandler.cs │ │ │ ├── HTTPProtocolHandler.cs │ │ │ └── ManifestBasedProtocolHandler.cs │ │ ├── ModuleProgressChangedArgs.cs │ │ └── PatchProtocolHandler.cs │ ├── Interface/ │ │ ├── Launchpad.glade │ │ ├── MainWindow.UI.cs │ │ └── MainWindow.cs │ ├── Launchpad.Launcher.csproj │ ├── Launchpad.Launcher.csproj.DotSettings │ ├── Program.cs │ ├── Resources/ │ │ ├── launchpad_update.bat │ │ └── launchpad_update.sh │ ├── Services/ │ │ ├── GameArgumentService.cs │ │ ├── LocalVersionService.cs │ │ └── TagfileService.cs │ ├── Startup.cs │ ├── Utility/ │ │ ├── DirectoryHelpers.cs │ │ ├── Enums/ │ │ │ └── ELauncherMode.cs │ │ └── ResourceManager.cs │ ├── app.manifest │ ├── config/ │ │ └── appsettings.json │ └── log4net.config ├── Launchpad.Tests/ │ ├── Common/ │ │ ├── MD5HandlerTests.cs │ │ └── StringExtensionsTests.cs │ ├── Launchpad.Tests.csproj │ └── packages.config ├── Launchpad.Translations/ │ ├── af.po │ ├── ar.po │ ├── bg.po │ ├── bn.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── es_ES.po │ ├── fi.po │ ├── fr.po │ ├── he.po │ ├── hi.po │ ├── hu.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── messages.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt_BR.po │ ├── pt_PT.po │ ├── ro.po │ ├── ru.po │ ├── sr.po │ ├── sv_SE.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po ├── Launchpad.Utilities/ │ ├── Handlers/ │ │ └── ManifestGenerationHandler.cs │ ├── Interface/ │ │ ├── Launchpad.Utilities.glade │ │ ├── MainWindow.UI.cs │ │ └── MainWindow.cs │ ├── Launchpad.Utilities.csproj │ ├── NLog.config │ ├── Options/ │ │ └── CLIOptions.cs │ ├── Program.cs │ └── Utility/ │ ├── DirectoryHelpers.cs │ └── Events/ │ └── ManifestGenerationProgressChangedEventArgs.cs ├── Launchpad.sln ├── Launchpad.sln.DotSettings ├── Launchpad.sln.iml ├── Packaging/ │ ├── Debian/ │ │ └── template/ │ │ ├── DEBIAN/ │ │ │ └── control │ │ └── usr/ │ │ ├── lib/ │ │ │ └── Launchpad/ │ │ │ └── readme.md │ │ └── share/ │ │ └── applications/ │ │ └── launchpad.desktop │ └── Windows/ │ └── setup_windows.iss ├── README.md ├── Scripts/ │ ├── launchpad-dependencies.sh │ ├── launchpad-publish.sh │ ├── launchpad-server-setup.sh │ └── update-translations.sh ├── appveyor.yml ├── launchpad.snk ├── lib/ │ └── gtk+-3.16-bundle-win32/ │ ├── etc/ │ │ └── gtk-3.0/ │ │ └── settings.ini │ ├── lib/ │ │ └── gdk-pixbuf-2.0/ │ │ └── loaders.cache │ └── share/ │ └── glib-2.0/ │ └── schemas/ │ ├── gschemas.compiled │ ├── org.gtk.Demo.gschema.xml │ ├── org.gtk.Settings.ColorChooser.gschema.xml │ ├── org.gtk.Settings.Debug.gschema.xml │ ├── org.gtk.Settings.FileChooser.gschema.xml │ └── org.gtk.exampleapp.gschema.xml ├── stylecop.json └── stylecop.ruleset ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: Nihlus patreon: jargon ko_fi: jaxxie ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## Modified by Jarl Gullberg to include MonoDevelop files as well. # Backups *.bak # User-specific files *.suo *.user *.userosscache *.sln.docstates *.userprefs *.usertasks # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ build/ bld/ [Oo]bj/ # Roslyn cache directories *.ide/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* #NUNIT *.VisualState.xml TestResult.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opensdf *.sdf *.cachefile # Visual Studio profiler *.psess *.vsp *.vspx # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # JustCode is a .NET coding addin-in .JustCode # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # NCrunch _NCrunch_* .*crunch*.local.xml # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # TODO: Comment the next line if you want to checkin your web deploy settings # but database connection strings (with potential passwords) will be unencrypted *.pubxml *.publishproj # NuGet Packages *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* # except build/, which is used as an MSBuild target. !**/packages/build/ # If using the old MSBuild-Integrated Package Restore, uncomment this: #!**/packages/repositories.config # Windows Azure Build Output csx/ *.build.csdef # Windows Store app package directory AppPackages/ # Others *.Cache ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.pfx *.publishsettings node_modules/ bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files *.mdf *.ldf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings # Microsoft Fakes FakesAssemblies/ # Mono Project Files *.resources test-results/ # Visual Studio Code .settings/ # IntelliJ IDEA # User-specific stuff: .idea/**/workspace.xml .idea/**/tasks.xml # Sensitive or high-churn files: .idea/**/dataSources/ .idea/**/dataSources.ids .idea/**/dataSources.xml .idea/**/dataSources.local.xml .idea/**/sqlDataSources.xml .idea/**/dynamic.xml .idea/**/uiDesigner.xml # Gradle: .idea/**/gradle.xml .idea/**/libraries # Mongo Explorer plugin: .idea/**/mongoSettings.xml ## File-based project format: *.iws ## Plugin-specific files: # IntelliJ /out/ # mpeltonen/sbt-idea plugin .idea_modules/ # JIRA plugin atlassian-ide-plugin.xml # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties ================================================ FILE: .idea/.idea.Launchpad/.idea/encodings.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/indexLayout.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/markdown-exported-files.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/markdown-navigator/profiles_settings.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/markdown-navigator.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/misc.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/projectSettingsUpdater.xml ================================================ ================================================ FILE: .idea/.idea.Launchpad/.idea/vcs.xml ================================================ ================================================ FILE: Directory.Build.props ================================================ latest true true net8.0 true true $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)/)) true false $(AssemblyName) Jarl Gullberg Jarl Gullberg 2020 GPL-3.0-or-later true true true https://github.com/Nihlus/Launchpad master $(SolutionDir)/nuget https://github.com/Nihlus/Launchpad launcher;game;free; $(SolutionDir)/stylecop.ruleset $(SolutionDir)/stylecop.json enable true true $(StyleCopRuleset) CS8600; CS8601; CS8602; CS8603; CS8604; CS8608; CS8609; CS8610; CS8611; CS8612; CS8613; CS8614; CS8615; CS8616; CS8617; CS8618; CS8619; CS8620; CS8621; CS8622; CS8625; CS8626; CS8629; CS8631; CS8633; CS8634; CS8638; CS8639; CS8643; CS8644; CS8645; CS8762; CS8765; CS8632; stylecop.json false stylecop.ruleset false ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: Launchpad.Common/Enums/EManifestType.cs ================================================ // // EManifestType.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // namespace Launchpad.Common.Enums; /// /// Enum defining the type of manifest. /// public enum EManifestType { /// /// An unknown manifest. /// Unknown = 0, /// /// A launcher manifest. /// Launchpad = 1, /// /// A game manifest. /// Game = 2 } ================================================ FILE: Launchpad.Common/Enums/ESystemTarget.cs ================================================ // // ESystemTarget.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // #pragma warning disable CS1591, SA1600, SA1602 // Elements should be documented, enumeration items should be documented namespace Launchpad.Common.Enums; public enum ESystemTarget { Linux, Mac, Win64, Win32, Unknown } ================================================ FILE: Launchpad.Common/ExtensionMethods.cs ================================================ // // ExtensionMethods.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Collections.Generic; namespace Launchpad.Common; /// /// Various extension methods. /// public static class ExtensionMethods { /// /// Sanitizes the input string, removing any \n, \r, or \0 characters. /// /// Input string. /// The string, without the illegal characters. public static string RemoveLineSeparatorsAndNulls(this string input) { return input.Replace("\n", string.Empty).Replace("\0", string.Empty).Replace("\r", string.Empty); } /// /// Adds a new value to an existing IDictionary, or if the dictionary already contains a value for the given key, /// updates the existing key with the new value. /// /// The dictionary to update. /// The key of the provided value. /// The value to add or update. /// The type of the key. /// The type of the value. public static void AddOrUpdate(this IDictionary dictionary, TKey key, TValue value) where TKey : notnull { if (dictionary == null) { throw new ArgumentNullException(nameof(dictionary)); } dictionary[key] = value; } } ================================================ FILE: Launchpad.Common/Handlers/MD5Handler.cs ================================================ // // MD5Handler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Security.Cryptography; namespace Launchpad.Common.Handlers; /// /// MD5 hashing handler. Used to ensure file integrity. /// public static class MD5Handler { /// /// Gets the file hash from a data stream. /// /// The hash. /// File stream. public static string GetStreamHash(Stream dataStream) { using var md5 = MD5.Create(); // Calculate the hash of the stream. var resultString = BitConverter.ToString(md5.ComputeHash(dataStream)).Replace("-", string.Empty); return resultString; } } ================================================ FILE: Launchpad.Common/Handlers/Manifest/ManifestEntry.cs ================================================ // // ManifestEntry.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Diagnostics.CodeAnalysis; namespace Launchpad.Common.Handlers.Manifest; /// /// A manifest entry derived from the raw unformatted string. /// Contains the relative path of the referenced file, as well as /// its MD5 hash and size in bytes. /// public sealed class ManifestEntry : IEquatable { /// /// Gets the path of the file, relative to the game directory. /// public string RelativePath { get; } /// /// Gets the MD5 hash of the file. /// public string Hash { get; } /// /// Gets the size in bytes of the file. /// public long Size { get; } /// /// Initializes a new instance of the class. /// /// The relative path to the file. /// The hash of the file. /// The size in bytes of the file. public ManifestEntry(string relativePath, string hash, long size) { this.RelativePath = relativePath; this.Hash = hash; this.Size = size; } /// /// Attempts to parse an entry from a raw input. /// The input is expected to be in [path]:[hash]:[size] format. Note that the file path is case sensitive, /// but the hash is not. /// /// true, if the input was successfully parse, false otherwise. /// Raw input. /// The resulting entry. public static bool TryParse(string rawInput, [NotNullWhen(true)] out ManifestEntry? inEntry) { inEntry = null; if (string.IsNullOrEmpty(rawInput)) { return false; } var cleanInput = rawInput.RemoveLineSeparatorsAndNulls(); // Split the string into its three components - file, hash and size var entryElements = cleanInput.Split(':'); // If we have three elements (which we should always have), set them in the provided entry if (entryElements.Length != 3) { return false; } // Sanitize the manifest path, converting \ to / on unix and / to \ on Windows. var relativePath = entryElements[0]; if (PlatformHelpers.IsRunningOnUnix()) { relativePath = relativePath.Replace('\\', '/').TrimStart('/'); } else { relativePath = relativePath.Replace('/', '\\').TrimStart('\\'); } // Hashes must be exactly 32 characters if (entryElements[1].Length != 32) { return false; } // Set the hash to the second element var hash = entryElements[1]; // Attempt to parse the final element as a long-type byte count. if (!long.TryParse(entryElements[2], out var parsedSize)) { // Oops. The parsing failed, so this entry is invalid. return false; } // Negative sizes are not allowed if (parsedSize < 0) { return false; } var size = parsedSize; inEntry = new ManifestEntry(relativePath, hash, size); return true; } /// /// Returns a that represents the current . /// The returned value matches a raw in-manifest representation of the entry, in the form of /// [path]:[hash]:[size]. /// /// A that represents the current . public override string ToString() { return $"{this.RelativePath}:{this.Hash}:{this.Size}"; } /// /// Determines whether the specified is equal to the current . /// /// The to compare with the current . /// true if the specified is equal to the current /// ; otherwise, false. public override bool Equals(object? obj) { return Equals(obj as ManifestEntry); } /// public bool Equals(ManifestEntry? other) { if (other == null) { return false; } return this.RelativePath == other.RelativePath && string.Equals(this.Hash, other.Hash, StringComparison.InvariantCultureIgnoreCase) && this.Size == other.Size; } /// /// Serves as a hash function for a object. /// /// A hash code for this instance that is suitable for use in hashing algorithms and data structures such as a hash table. public override int GetHashCode() { return ToString().GetHashCode(); } } ================================================ FILE: Launchpad.Common/Handlers/Manifest/ManifestHandler.cs ================================================ // // ManifestHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Collections.Generic; using System.IO; using Launchpad.Common.Enums; using Remora.Results; namespace Launchpad.Common.Handlers.Manifest; /// /// Handler class for the game manifest. /// public sealed class ManifestHandler { private readonly object _manifestsLock = new object(); /// /// The local base directory of the running assembly. Used to produce relative paths for manifest-related /// files and folders. /// private readonly string _localBaseDirectory; /// /// The remote where the manifest files are expected to be. /// private readonly Uri _remoteURL; /// /// The target system for which the handler should retrieve files. /// private readonly ESystemTarget _systemTarget; private readonly Dictionary> _manifests; private readonly Dictionary> _oldManifests; /// /// Initializes a new instance of the class. /// This constructor also serves to updated outdated file paths for the manifests. /// /// The local base directory of the launcher installation. /// The remote where the manifest files are expected to be. /// The target system for which the handler should retrieve files. public ManifestHandler(string localBaseDirectory, Uri remoteURL, ESystemTarget systemTarget) { _manifests = new Dictionary>(); _oldManifests = new Dictionary>(); _localBaseDirectory = localBaseDirectory; _remoteURL = remoteURL; _systemTarget = systemTarget; } /// /// Gets the specified manifest currently held by the launcher. The return value of this method may be null if no /// manifest could be retrieved. /// /// The type of manifest to retrieve, that is, the manifest for a specific component. /// Whether or not the old manifest or the new manifest should be retrieved. /// A list of objects. /// Thrown if the is not a known value. public Result> GetManifest(EManifestType manifestType, bool getOldManifest) { lock (_manifestsLock) { if (getOldManifest) { if (_oldManifests.TryGetValue(manifestType, out var oldManifest)) { return Result>.FromSuccess(oldManifest); } } else { if (_manifests.TryGetValue(manifestType, out var manifest)) { return Result>.FromSuccess(manifest); } } } return new NotFoundError("No manifest found."); } /// /// Reloads all manifests of the specified type from disk. /// /// The type of manifest to reload. public void ReloadManifests(EManifestType manifestType) { lock (_manifestsLock) { var newManifestPath = GetManifestPath(manifestType, false); var oldManifestPath = GetManifestPath(manifestType, true); // Reload new manifests if (File.Exists(newManifestPath)) { _manifests.AddOrUpdate(manifestType, LoadManifest(newManifestPath)); } // Reload old manifests if (File.Exists(oldManifestPath)) { _oldManifests.AddOrUpdate(manifestType, LoadManifest(oldManifestPath)); } } } /// /// Loads a manifest from a file on disk. /// /// The path to a manifest file. /// A list of objects. public static IReadOnlyList LoadManifest(string manifestPath) { using var fileStream = File.OpenRead(manifestPath); return LoadManifest(fileStream); } /// /// Loads a manifest from a . /// /// A stream containing a manifest. /// A read-only list of objects. public static IReadOnlyList LoadManifest(Stream manifestStream) { var rawManifest = new List(); using (var sr = new StreamReader(manifestStream)) { string? line; while ((line = sr.ReadLine()) != null) { rawManifest.Add(line); } } var manifest = new List(); foreach (var rawEntry in rawManifest) { if (ManifestEntry.TryParse(rawEntry, out var newEntry)) { manifest.Add(newEntry); } } return manifest; } /// /// Gets the specified manifest's path on disk. The presence of the manifest is not guaranteed at /// this point. /// /// The type of manifest to get the path to. /// Whether or not the path should specify an old manifest. /// A fully qualified path to where a manifest should be. public string GetManifestPath(EManifestType manifestType, bool getOldManifestPath) { var manifestPath = Path.Combine(_localBaseDirectory, $"{manifestType}Manifest.txt"); if (getOldManifestPath) { manifestPath += ".old"; } return manifestPath; } /// /// Gets the manifest URL for the specified manifest type. /// /// The type of manifest to get the URL of. /// The game manifest URL. public string GetManifestURL(EManifestType manifestType) { if (manifestType == EManifestType.Launchpad) { return $"{_remoteURL}/launcher/{manifestType}Manifest.txt"; } return $"{_remoteURL}/game/{_systemTarget}/{manifestType}Manifest.txt"; } /// /// Gets the manifest URL for the specified manifest type. /// /// The type of manifest to get the URL of. /// The game manifest URL. public string GetManifestChecksumURL(EManifestType manifestType) { if (manifestType == EManifestType.Launchpad) { return $"{_remoteURL.LocalPath}/launcher/{manifestType}Manifest.checksum"; } return $"{_remoteURL.LocalPath}/game/{_systemTarget}/{manifestType}Manifest.checksum"; } } ================================================ FILE: Launchpad.Common/Launchpad.Common.csproj ================================================  ================================================ FILE: Launchpad.Common/PlatformHelpers.cs ================================================ // // PlatformHelpers.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Runtime.InteropServices; using Launchpad.Common.Enums; namespace Launchpad.Common; /// /// Helper methods for determining the current platform. /// public static class PlatformHelpers { /// /// Determines whether this instance is running on Unix. /// /// true if this instance is running on unix; otherwise, false. public static bool IsRunningOnUnix() { var currentPlatform = GetCurrentPlatform(); return currentPlatform == ESystemTarget.Linux || currentPlatform == ESystemTarget.Mac; } /// /// Gets the current platform the launcher is running on. /// /// The current platform. public static ESystemTarget GetCurrentPlatform() { if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { return ESystemTarget.Linux; } if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { return ESystemTarget.Mac; } if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { return Environment.Is64BitOperatingSystem ? ESystemTarget.Win64 : ESystemTarget.Win32; } throw new PlatformNotSupportedException(); } } ================================================ FILE: Launchpad.Launcher/Configuration/ILaunchpadConfiguration.cs ================================================ // // ILaunchpadConfiguration.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using Config.Net; using Launchpad.Common.Enums; namespace Launchpad.Launcher.Configuration; /// /// Configuration file interface. /// public interface ILaunchpadConfiguration { // Launcher section // ... /// /// Gets or sets the address where the changelog is hosted. /// [Option(Alias = "Launcher.ChangelogAddress", DefaultValue = "http://www.example.com/launchpad/changelog/changelog.html")] Uri ChangelogAddress { get; set; } /// /// Gets or sets the system target of the launcher. /// [Option(Alias = "Launcher.SystemTarget", DefaultValue = "Linux")] ESystemTarget SystemTarget { get; set; } // Game section // ... /// /// Gets or sets the name of the game. /// [Option(Alias = "Game.Name", DefaultValue = "LaunchpadExample")] string GameName { get; set; } /// /// Gets or sets the path to the game's executable, relative to the launcher. /// [Option(Alias = "Game.ExecutablePath", DefaultValue = "LaunchpadExample/Binaries/Linux/LaunchpadExample")] string ExecutablePath { get; set; } // Remote section // ... /// /// Gets or sets the address of the remote server. /// [Option(Alias = "Remote.Address", DefaultValue = "ftp://ftp.example.com")] Uri RemoteAddress { get; set; } /// /// Gets or sets the username to use when authenticating with the remote server. /// [Option(Alias = "Remote.Username", DefaultValue = "anonymous")] string RemoteUsername { get; set; } /// /// Gets or sets the password to use when authenticating with the remote server. /// [Option(Alias = "Remote.Password", DefaultValue = "anonymous")] string RemotePassword { get; set; } /// /// Gets or sets the number of times to retry file downloads. /// [Option(Alias = "Remote.FileDownloadRetries", DefaultValue = 2)] int RemoteFileDownloadRetries { get; set; } /// /// Gets or sets the buffer size to use when downloading files. /// [Option(Alias = "Remote.FileDownloadBufferSize", DefaultValue = 8192)] int RemoteFileDownloadBufferSize { get; set; } } ================================================ FILE: Launchpad.Launcher/Content/locale/af/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: af\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/ar/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Arabic\n" "Language: ar_SA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ar\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "خامل" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "فشل الاتصال بخادم التصحيح. الرجاء التحقق من الإعدادات الخاصة بك." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "تعذر الاتصال بالخادم." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "جاري التثبيت..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "تثبيت" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "جاري التحديث..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "تحديث" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "جاري التصليح..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "تصليح" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "جاري الإطلاق..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "إطلاق" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "غير نشط" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "هذا الخادم لا يوفر اللعبة على المنصة المختارة." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "فشل بدء تشغيل اللعبة. حاول إصلاح التثبيت." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "كلا! يبدو أن اللعبة تحطمت.\n" "Would هل تريد من منصة الإطلاق التحقق من التثبيت؟" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "إصلاح اللعبة" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} من أصل {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "إنتهى" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "خدمات لانش باد - الظاهر" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "التقدم: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/أحد/ملف/وجهة : 1 من أصل 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/bg/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: bg\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Свободен" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Няма връзка със сървъра." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Инсталиране..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Инсталиране" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Обновяване..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Обновяване" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Поправяне..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Поправяне" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Стартира се..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Стартиране" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Сървърът не предоставя играта за избраната платформа." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Играта не можа да стартира. Опитайте да поправите инсталацията." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Инсталирането завърши" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Меню" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Напредък: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/bn/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-15 14:33-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Bengali\n" "Language: bn_BD\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: bn\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) যাচাই করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) হালনাগাদ করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) ডাউনলোড করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "ফাইল {0}: {2} এর মধ্যে {1} ডাউনলোড করা হচ্ছে" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "লঞ্চপ্যাড - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "নিষ্ক্রিয়" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "প্যাচ সার্ভারের সাথে সংযোগ করতে ব্যর্থ হয়েছে। অনুগ্রহ করে আপনার সেটিংস চেক করুন।" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "সার্ভারের সাথে সংযোগ করা যায়নি।" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "মনে হচ্ছে আপনি প্রথমবারের জন্য লঞ্চারটি ব্যবহার করছেন।\n" "এই জায়গায়-ই কি আপনি গেমটি ইন্সটল করতে চান?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "ইনস্টল করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "ইনস্টল" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "হালনাগাদ করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "হালনাগাদ করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "সংস্কার করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "সংস্কার করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "শুরু করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "শুরু করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "নিষ্ক্রিয়" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "এই সার্ভারটি এই প্লাটফর্মের জন্য গেমটি সরবরাহ করেনা।" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "গেমটি আরম্ভ করতে ব্যর্থ হয়েছে। ইন্সটলেশন সংস্কার করার চেষ্টা করুন।" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "ইনস্টলেশন সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "হালনাগাদ সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "সংস্কার সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "ওপস! গেমটি মনে হয় ক্রাশ করেছে।\n" "আপনি কি লঞ্চারকে ইন্সটলেশনকে যাচাই করতে দিবেন?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "গেমটি রিইন্সটল করলে আপনি গেমের সকল ফাইল এবং ডাউনলোড হারিয়ে ফেলবেন।\n" "আপনি কি নিশ্চিত যে গেমটি রিইন্সটল করবেন?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "মেনু" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "গেম সংস্কার করুন" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "ইনস্টল করা গেমের সংস্কার প্রক্রিয়া শুরু হয়।" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "গেম পুনরায় ইনস্টল করুন" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "ইনস্টল করা গেমটি পুনরায় ইন্সটল করুন।" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "উদ্দীষ্ট ডিরেক্টরি তে কোন GameVersion.txt ফাইল খুঁজে পাওয়া যায়নি। এই ফাইলটি প্রয়োজনীয়।\n" "আপনি কি একটি যোগ করবেন?ফাইলটির সংস্করণ হবে ''১.০.০''।" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {2} এর মধ্যে {1}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "সমাপ্ত" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "লঞ্চপ্যাড ইউটিলিটি - ম্যানিফেস্টো" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "অগ্রগতি: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: ১০০ এর মধ্যে ১" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "গেম ম্যানিফেস্টো তৈরি করুন" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "লঞ্চপ্যাড ম্যানিফেস্টো তৈরি করুন" ================================================ FILE: Launchpad.Launcher/Content/locale/ca/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Catalan\n" "Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ca\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/cs/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Czech\n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: cs\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Ověřuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualizuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Stahuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Stahuji {0}: {1} z {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Neaktivní" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nebylo možné se připojit k aktualizačnímu serveru. Prodím, zkontrolujte vaše nastavení." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nezdařil se připojit k serveru." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Toto vypadá jako vaše první spuštění této aplikace.\n" "Je toto opravdu umístění kam chcete nainstalovat hru?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instaluji..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalovat" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualizuji..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aktualizovat" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Opravuji..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Opravit" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Spouštím..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Spustit" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Neaktivní" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server neposkytuje hru pro vaši platfomu." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Hru se nezdařilo spustit. Zkuste opravit instalaci." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalace dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualizace dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Oprava dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Uuups! Vypadá to, jaky by hra spadla.\n" "Chcete ověřit instalaci?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Přeinstalování hry smaže veškeré soubory hry a stáhne celou hru znova.\n" "Jste si jisti, že chcete přeinstalovat hru?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Opravit Hru" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Začne s procesem opravy nainstalované hry." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Přeinstalovat Hru" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Přeinstaluje hru." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nebyl nalezen soubor GameVersion.txt v cílové složce. Tento soubor je vyžadován.\n" "Chcete ho přidat? Verze bude \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} z {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Hotovo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Nástroje - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Průběh: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/nějaká/cesta/k/souboru : 1 z 99" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Vytvořit Herní Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Vygenerovat Manifest pro Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/da/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Danish\n" "Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: da\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Slumre" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunne ikke forbinde til patchserveren. Venligst tjek dine indstillinger." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunne ikke forbinde til serveren." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Opdaterer..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Opdater" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparere" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starter..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Start" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serveren tilegner ikke spillet for denne platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spillet kunne ikke starte. Prøv at reparere installationen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hovsa! Spillet ser ud til at have styrtede. \n" "Vil du lide Launchpad til at kontrollere installationen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparer spil" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} ud af {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Færdig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/någen/file/: 1 ud af 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generere spilmanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generere Launchpad-manifest" ================================================ FILE: Launchpad.Launcher/Content/locale/de/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: German\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: de\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Überprüfe Datei {0} ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualisiere Datei {0} ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Lade Datei {0} herunter ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Lade {0} herunter: {1} von {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Es konnte keine Verbindung zum Patch-Server hergestellt werden. Bitte überprüfen Sie ihre Einstellungen." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Verbindung zum Server fehlgeschlagen." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Sie starten den Launcher anscheinend zum ersten Mal.\n" "Ist dies das Verzeichnis in das Sie das Spiel installieren möchten?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installiere..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installieren" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualisiere..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repariere..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparieren" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starte..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starten" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Der Server stellt das Spiel nicht für die ausgewählte Plattform bereit." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Das Spiel konnte nicht gestartet werden. Versuche die Installation zu reparieren." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualisierung abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparatur abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Uuups! Das Spiel ist wahrscheinlich abgestürzt.\n" "Möchten Sie die Installation überprüfen lassen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Eine Neuinstallation des Spiels löscht alle lokalen Dateien und lädt das komplette Spiel erneut herunter.\n" "Sind Sie sicher, dass Sie das Spiel neu installieren möchten?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparatur Spiel" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Startet die Reparatur des installierten Spiels." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Spiel neu installieren" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Installiert das Spiel erneut." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Es konnte keine GameVersion.txt-Datei im Zielverzeichnis gefunden werden. Diese Datei ist erforderlich.\n" "Möchten Sie diese Datei hinzufügen? Die Version ist dann \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} von {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Fertig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Werkzeuge - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Fortschritt: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 von 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Spiel-Manifest generieren" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad-Manifest generieren" ================================================ FILE: Launchpad.Launcher/Content/locale/el/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Greek\n" "Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: el\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/en/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: English\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: en\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifying file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Updating file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Downloading file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Downloading {0}: {1} out of {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Idle" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Failed to connect to the patch server. Please check your settings." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Could not connect to server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installing..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Install" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Updating..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repairing..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Repair" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Launching..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Launch" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactive" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "The server does not provide the game for the selected platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "The game failed to launch. Try repairing the installation." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation finished" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Update finished" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Repair finished" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Repair Game" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Starts a repair process for the installed game." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstall Game" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalls the installed game." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} out of {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Finished" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progress: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 out of 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generate Game Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generate Launchpad Manifest" ================================================ FILE: Launchpad.Launcher/Content/locale/es_ES/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Spanish\n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: es-ES\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verificar archivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Actualizando archivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Descargando archivo {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Descargando {0}: {1} de {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "En espera" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Error al conectar con el servidor. Por favor, verifique su configuración." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "No se pudo conectar al servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Parece que es la primera vez que abres el launcher.\n" "Is ¿Es esta la ubicación donde quieres instalar el juego?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalando..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Actualizando..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparando..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Inicializando..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Iniciar" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactivo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "El servidor no provee el juego para la plataforma seleccionada." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "El juego falló al iniciar. Trate de reparar la instalación." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalación finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Actualización finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparación finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oops! El juego parece tener un error.\n" "Te gustaría verificar la instalación?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Volver a instalar el juego eliminará todos los archivos locales, y descargará todo el juego otra vez.\n" "¿Seguro que desea volver a instalar el juego?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menú" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar el Juego" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia proceso de reparación para el juego instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar el juego" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalar el juego instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "No hay ningún archivo GameVersion.txt, podría encontrarse en el directorio de destino. Este archivo es necesario.\n" "¿Desea agregar uno? La versión será \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Completado" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades de Launchpad - Manifiesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progreso: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generar Manifesto del Juego" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generar Manifesto de Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/fi/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Finnish\n" "Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: fi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ei toimintoa" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Palvelimeen yhdistäminen epäonnistui." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Vaikuttaa siltä, että tämä on ensimmäinen kerta kun käynnistät launcherin.\n" "Onko tämä paikka, johon haluat sentaa pelin?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Asennetaan..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Asenna" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Päivitetään..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Päivitä" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Korjataan..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Korjaus" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Käynnistetään..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Käynnistä" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Palvelin ei tarjoa peliä valitulle alustalle." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Pelin käynnistys epäonnistui. Kokeile korjata asennus." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/fr/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: French\n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: fr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Fichier {0} en cours de vérification ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Mise à jour du fichier {0} en cours ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Téléchargement du fichier {0} en cours ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "En cours de téléchargement {0} : {1} sur {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Plate-forme de lancement - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactif" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Échec de connexion au serveur de mise à jour. Vérifiez vos paramètres." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "La connexion au serveur a échoué." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Il semble que ce soit la première fois que vous démarreriez le launcher.\n" "Est-ce que c'est l'emplacement où vous souhaiteriez installer le jeu?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installation..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Mise à jour..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Mise à jour" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Réparation..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Réparer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Lancement..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Lancement" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactif" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Le serveur ne fournit pas le jeu pour la plate-forme sélectionnée." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Impossible de démarrer le jeu. Essayez de réparer l'installation." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Mise à jour terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Réparation terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oups ! Le jeu semble avoir planté. \n" "Aimeriez-vous le launcher pour vérifier l’installation ?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Réinstaller le jeu supprimera tous les fichiers locaux et retéléchargera le jeu en entier. \n" "Êtes-vous sûr que vous souhaitez réinstaller le jeu ?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Réparer le jeu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Démarre un processus de réparation pour le jeu installé." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Réinstaller le jeu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Réinstalle le jeu installé." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Aucun fichier nommé GameVersion.txt n'a pu être trouvé dans le répertoire cible. Ce fichier est nécessaire. \n" "Souhaiteriez-vous l'ajouter ? La version sera « 1.0.0 »." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} sur {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Terminé" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Plate-forme de lancement utilitaire - Montrer" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progression: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 sur 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Montrer le jeu généré" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Montrer la plate-forme de lancement générée" ================================================ FILE: Launchpad.Launcher/Content/locale/he/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hebrew\n" "Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: he\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "מאמת את הקובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "מעדכן את הקובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "מוריד קובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "מוריד {0}: {1} מתוך {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "כן השיגור - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "לְהִתְבַּטֵל" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "ההתחברות לשרת השרתים נכשלה. בדוק את ההגדרות שלך." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "ההתחברות לשרת נכשלה." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "זה נראה בפעם הראשונה שאתה מפעיל את המשגר. \\ האם זה המקום שבו אתה רוצה להתקין את המשחק?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "מתקין..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "להתקין" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "עִדכּוּן..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "עדכון" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "תיקון..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "לְתַקֵן" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "הַשָׁקָה..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "לְהַשִׁיק" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "לֹא פָּעִיל" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "השרת אינו מספק את המשחק עבור הפלטפורמה שנבחרה." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "המשחק נכשל. נסה לתקן את ההתקנה." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "ההתקנה הסתיימה" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "העדכון הסתיים" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "התיקון הסתיים" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "אופס! נראה שהמשחק התרסק. \\ N האם אתה אוהב את המפעיל כדי לאמת את ההתקנה?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "התקנה מחדש של המשחק תמחק את כל הקבצים המקומיים ותוריד שוב את כל המשחק. \\ N האם אתה בטוח שברצונך להתקין מחדש את המשחק?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "תַפרִיט" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "משחק תיקון" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "מתחיל תהליך תיקון עבור המשחק המותקן." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "התקנה מחדש של המשחק" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "הסר את ההתקנה של המשחק." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "לא ניתן למצוא קובץ GameVersion.txt בספריית היעד. נדרש קובץ זה. \\ N האם ברצונך להוסיף קובץ זה? הגרסה תהיה \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} מתוך {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "גָמוּר" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "כלי עזר" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "התקדמות: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/ some / file / path: 1 מתוך 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "צור משחק המניפסט" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "יצירת מנפאט Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/hi/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hindi\n" "Language: hi_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: hi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/hu/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: hu\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Fájl ellenőrzése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Fájl frissítése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Fájl letöltése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Letöltés {0}: {1} a {2}-ból/ből" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Indítópult - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Tétlen" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nem sikerült a patch szerverhez csatlakozni. Ellenőrízd a beállításaid." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nem lehet kapcsolódni a szerverhez." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Úgy tűnik első alkalommal indítottad el a launchert.\n" "Ide akarod telepíteni a játékot?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Telepítés..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Telepítés" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Frissítés..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Frissítés" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Javítás..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Javítás" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Indítás..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Inditás" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktív" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "A szerver nem szolgáltatja a játékot a kiválasztott platformra." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "A játék indítása nem sikerült. Próbáld megjavítani a telepítést." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Telepítés kész" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Frissítés kész" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Javítás kész" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hoppá! Úgy tűnik hogy a játék összeomlott.\n" "Szeretnéd ha a launcher ellenőrízné a telepítést?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "A játék újratelepítése törölni fogja a helyi fájlokat és ismét letölti az egész játékot.\n" "Biztos hogy újra akarod telepíteni a játékot?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Játék javítása" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Javítási folyamat indítása a telepített játékhoz." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Játék újratelepítése" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Újratelepítí a telepített játékot." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "GameVersion.txt fájl nem található a cél mappában. Ez a fájl szükséges.\n" "Hozzáakarsz adni egyet? A verzió \"1.0.0\" lesz." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} a {2}-ból/ből" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Kész" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad segédprogramok - Nyilvánvaló" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Állapot: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/fájl/elérési út: 1-ből 100-ból" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generálj a Game Manifest-ot" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generálja a Launchpad megnyilvánulását" ================================================ FILE: Launchpad.Launcher/Content/locale/id/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Indonesian\n" "Language: id_ID\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: id\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifikasi berkas {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Perbarui berkas {0} ({1} dari {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Unduh berkas {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Mengunduh {0}: {1} dari {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Diam" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Gagal untuk menyambung ke server. Mohon periksa setelan." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Tidak dapat terhubung ke server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Ini tampaknya pertama kali Anda memulai launcher. \n" "Is adalah lokasi yang mana Anda ingin menginstal permainan?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Memasang..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Pasang" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Memperbarui..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Perbarui" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Memperbaiki..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Perbaiki" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Peluncuran..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Memulai" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Non-Aktif" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server tidak menyediakan permainan untuk platform yang dipilih." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Permainan gagaldiluncurkani. Mencoba memperbaiki instalasi." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalasi selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Pembaruan selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Perbaikan selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Permainan tampaknya telah jatuh. \n" "Ingin Anda memverifikasi instalasi dari peluncur tersebut?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Instal ulang permainan akan menghapus semua berkas lokal dan mengunduh seluruh permainan lagi. \n" "Apakah Anda yakin Anda ingin install ulang permainan?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Memperbaiki Permainan" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Mulai proses perbaikan untuk permaian yang telah terpasang." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Pasang Ulang Permainan" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Pasang kembalai permaian yang telah diinstal." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Tidak ada GameVersion.txt ditemukan dalam direktori. Berkas ini membutuhkan.\n" " Anda untuk menambahkan satu? Versi ini akan menjadi \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} dari {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Selesai" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Platform Peluncuran Utilitas - Tampilkan" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Kemajuan: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/beberapa/berkas/bagian : 1 dari 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Tampilkan Permainan yang Dihasilkan" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Tampilkan platform peluncuran yang dihasilkan" ================================================ FILE: Launchpad.Launcher/Content/locale/it/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Italian\n" "Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: it\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inattivo" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Impossibile connettersi al server di patch. Si prega di controllare le impostazioni." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Impossibile connettersi al server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installazione in corso..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installa" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aggiornamento..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aggiorna" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Riparazione..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Ripara" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Avviamento..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Avvia" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inattivo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Il server non fornisce il gioco per la piattaforma selezionata." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "I'avvio del gioco è fallito. Provare a ripristinare l'installazione." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Il gioco sembra essere crashato.\n" "Vuoi verificare l'installazione?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Ripara il gioco" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} su {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Completato" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilità del Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Avanzamento: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 su 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/ja/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Japanese\n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ja\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "ファイル{0} の確認中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "ファイル{0} の更新中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "ファイル{0} をダウンロード中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "{0} をダウンロード中:{2} のうち{1}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "アイドル" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "パッチサーバーに接続できませんでした。 設定を確認してください。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "サーバーに接続できませんでした" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "これはランチャーを初めて起動したときに表示されます。\\ nゲームをインストールしたい場所ですか?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "インストール中..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "インストール" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "更新中..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "修理..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修理" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "起動中..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "起動" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "非アクティブ" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "サーバーは、選択したプラットフォームのゲームを提供しません。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "ゲームは起動できませんでした。 インストールを修復してください。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "インストールが完了しました" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新が完了しました" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修理済み" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "うわー! ゲームがクラッシュしたように見える.\n" "ランチャーでインストールを確認しますか?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "ゲームを再インストールすると、すべてのローカルファイルが削除され、ゲーム全体が再度ダウンロードされます.\n" " ゲームを再インストールしてもよろしいですか?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "メニュー" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "ゲームを修復します。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "インストールされているゲームの修復処理を開始します。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "ゲームを再インストールする" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "インストールされているゲームを再インストールします。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "ターゲットディレクトリにGameVersion.txtファイルが見つかりませんでした。このファイルは必須です。\n" " あなたは1つを追加しますか? バージョンは「1.0.0」になります。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} - {1} / {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "終了" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpadユーティリティ- 目録" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "進行状況: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 のうち 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "ゲームマニフェストを生成する" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad マニフェストを生成する" ================================================ FILE: Launchpad.Launcher/Content/locale/ko/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Korean\n" "Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ko\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/nl/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Dutch\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: nl\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} verifiëren)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} updaten)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} downloaden)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Bestand {0}: {1} van de {2} aan het downloaden" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactief" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kan geen verbinding maken met de patch server. Controleer uw instellingen." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kan geen verbinding met de server maken." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Dit lijkt de eerste keer dat je dit programma start.\n" "Is dit de locatie waar je het spel wilt installeren?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installeren..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installeren" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Updaten..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repareren..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Repareer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starten..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starten" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactief" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "De server beschikt niet over het spel voor het geselecteerde platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Het spel kon niet starten. Probeer de installatie te repareren." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installatie voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Update voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparatie voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oeps! Het lijkt er op dat het spel niet meer werkt.\n" "Wil je dat Launchpad de bestanden controleert?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Het opnieuw installeren van het spel zal alle lokale bestanden verwijderen en het volledige spel opnieuw downloaden.\n" "Ben je zeker dat je het spel wil herinstalleren?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Spel herstellen" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Hiermee start u een herstelprocedure voor het geïnstalleerde spel." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Spel opnieuw installeren" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Herinstalleerd het geïnstalleerde spel." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Het GameVersion.txt bestand kon niet gevonden worden in de doelmap. Dit bestand is vereist.\n" "Wenst u dit bestand toe te voegen? Dit bestand zal versie \"1.0.0\" hebben." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} van de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Voltooid" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Voortgang: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 van de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Genereren van spel Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Genereren van Launchpad Manifest" ================================================ FILE: Launchpad.Launcher/Content/locale/no/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Norwegian\n" "Language: no_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: no\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifiserer fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Oppdaterer fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Laster ned fil {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Laster ned {0}: {1} av {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunne ikke koble til patchserveren. Vennligst sjekk innstillingene dine." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunne ikke koble til server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Oppdaterer..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Oppdater" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparere..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starter..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Start" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serveren gir ikke spill for den valgte plattformen." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spillet kunne ikke starte. Prøv å reparere installasjonen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installasjonen er ferdig" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Oppdatering fullført" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparasjonen fullført" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Spillet ser ut til å ha krasjet. \n" "Vil du Launchpad å bekrefte installasjonen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Installere spillet vil slette alle lokale filer og laste ned hele spillet igjen. \n" "er du sikker på at du vil installere spillet på nytt?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meny" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparere spillet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstaller" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstallerer spillet." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} av {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Ferdig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 av 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generere Spillemanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generere Launchpad-manifest" ================================================ FILE: Launchpad.Launcher/Content/locale/pl/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Polish\n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pl\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Sprawdzanie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualizowanie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Pobieranie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Pobieranie {0}: {1} z {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Bezczynny" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nie udało się połączyć z serwerem aktualizacji. Proszę sprawdzić ustawienia." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nie można połączyć się z serwerem." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Wydaje się, że po raz pierwszy używasz launchera.\n" "Czy jest to lokalizacja, w której chcesz zainstalować grę?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalowanie..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Zainstaluj" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualizowanie..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aktualizuj" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Naprawianie..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Napraw" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Uruchamianie..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Uruchom" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Nieaktywne" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serwer nie udostępnia gry dla wybranej platformy." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Nie udało się uruchomić gry. Spróbuj naprawić instalację." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalacja zakończona" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualizacja zakończona" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Naprawianie zakończone" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Ups! Wygląda na to, że gra została nieoczekiwanie zamknięta.\n" "Czy chcesz zweryfikować instalację gry?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Przeinstalowanie gry spowoduje usunięcie wszystkich plików lokalnych oraz pobierze grę na nowo. \n" "Czy jesteś pewien?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Napraw Grę" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Rozpoczyna proces naprawy zainstalowanej gry." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Przeinstaluj grę" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Przeinstaluj zainstalowaną grę." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Plik GameVersion.txt nie został znaleziony w katalogu docelowym. Ten plik jest wymagany. \n" "Czy chcesz go dodać? Wersja zostanie ustawiona na \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} z {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Zakończono" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Narzędzia Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Postęp: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 z 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Wygeneruj Manifest gry" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Wygeneruj Manifest programu Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/pt_BR/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pt-BR\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Veificando arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Atualizando o arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Baixando o arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Baixando {0}: {1} de {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Em Espera" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Falha ao conectar ao servidor de atualização. Por favor, verifique suas configurações." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Não foi possível se conectar ao servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Parece ser a primeira vez que você inicia o launcher.\n" "Você gostaria de instalar o jogo nesse local?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalando..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Atualizando..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Atualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparando..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Abrindo..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Abrir" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inativo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "O servidor não oferece o jogo para a plataforma selecionada." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "O jogo falhou ao iniciar. Tente reparar a instalação." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Atualização terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparo terminado" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Opa! Parece que o jogo crashou.\n" "Você gostaria que o launcher verificasse a instalação?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalar o jogo irá deletar todos os arquivos locais, e baixará o jogo novamente.\n" "Você tem certeza que quer reinstalar o jogo?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia um processo de reparação para o jogo instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstala o jogo instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nenhum arquivo de GameVersion.txt pôde ser encontrado no diretório de destino. Este arquivo é necessário.\n" "Você gostaria de adicionar um? A versão será \"1.0.0.\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Concluído" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades do Launchpad - Manifesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progresso: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/alguma/pasta/arquivo : 1 de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Gerar o manifesto do jogo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Gerar o manifesto do Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/pt_PT/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pt-PT\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verificar ficheiro {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Actualizando ficheiros {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "A transferir ficheiros {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Transferindo {0}: {1} out of {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Plataforma de lançamento - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ocioso" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Falha ao conectar ao servidor de actualização. Por favor verifique as suas configurações." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Não foi possível conectar ao servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Olá, parece que é a primeira vez que inicia o seu launcher..\n" "Is Este é o local onde pretende instalar o jogo?\n" "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "A instalar..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "A actualizar..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "A reparar..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "A Iniciar..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Iniciar" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inativo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "O servidor não fornece o jogo para a plataforma seleccionada.\n" "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "O jogo falhou ao iniciar. Tente reparar a instalação." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Atualização terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "\n" "Ups! O jogo parece ter caído.\n" " Você gostaria que o lançador verificasse a instalação?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalar o jogo excluirá todos os arquivos locais e baixará o jogo inteiro novamente.\n" "N Você tem certeza que deseja reinstalar o jogo?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia um processo de reparação do jogo instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstala o jogo instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nenhum arquivo GameVersion.txt pode ser encontrado no directório de destino. Este arquivo é necessário.\n" "Você gostaria de adicionar um? A versão será \"1.0.0\".\n" "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} fora de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Terminado" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades de Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progresso" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/algum/caminho/deficheiro : 1 de 100\n" "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Gerar o manifesto do jogo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Gerar o manifesto do Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/ro/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Romanian\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ro\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Se verifică fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Se actualizează fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Se descarcă fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Se descarcă {0}: {1} din {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nu s-a reușit conectarea la serverul patch. Te rugăm să îți verifici setările." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nu s-a putut efectua conexiunea la server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Aceasta pare să fie prima dată când pornești lansatorul. \n" "Este locația unde vrei să instalezi jocul?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Se instalează..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalare" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Se actualizează..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizare" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Se repară..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparare" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Se lansează..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Lansează" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serverul nu permite jocului să fie lansat pe platforma selectată." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Lansarea jocului a eșuat. Încearcă să repari instalarea." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalarea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Actualizarea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Repararea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hopa! Jocul pare să se fi oprit brusc.\n" "Vrei ca lansatorul să verifice instalarea?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalarea jocului va duce la ștergerea fișierelor locale și la descărcarea jocului.\n" "Ești sigur că vrei să reinstalezi jocul?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meniu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Repară jocul" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Începe un proces de reparare pentru jocul instalat." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalează jocul" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalează jocul instalat." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nici un fișier de tip GameVersion.txt nu a fost găsit în directorul țintă. Acest fișier este necesar.\n" "Vrei să mai adaugi altul? Versiunea va fi \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} din {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Finalizat" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Manifest - Utilitățiile Launchpad" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progres: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/unele/fișier/cale: 1 din 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generează Manifestul Jocului" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generează Manifestul Launchpad" ================================================ FILE: Launchpad.Launcher/Content/locale/ru/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Russian\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ru\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Проверка файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Обновление файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Загрузка файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Загрузка {0}: {1} из {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ожидание" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Не удается подключиться к серверу с патчем. Пожалуйста, проверьте настройки." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Не удалось подключиться к серверу." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Это окно появляется в первый раз когда вы запускаете лаунчер.\n" "Хотите установить игру сюда?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Установка..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Установить" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Обновление..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Обновить" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Востановление..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Востановить" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Запуск..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Запустить" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Неактивно" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Сервер не предоставляет игры для выбранной платформы." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Не удалось запустить игру. Проверьте целостность файлов или переустановите игру." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Установка завершена" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Обновление завершено" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Восстановление завершено" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Уууупс! Игра сломалась.\n" "Хотите запустить процесс восстановления?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Переустановка игры запустит процесс удаления всех локальных файлов, после чего скачает игру заново.\n" "Вы уверены, что вы хотите переустановить игру?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Меню" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Восстановить игру" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Начать процесс восстановления установленной игры." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Переустановить игру" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Переустановка игры." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Невозможно найти GameVersion.txt в конечной директории. Этот файл необходим.\n" "Хотите добавить? Версия по-умолчанию будет установлена на \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} из {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Завершено" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Прогресс: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 из 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/sr/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Serbian (Cyrillic)\n" "Language: sr_SP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: sr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/sv_SE/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Swedish\n" "Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: sv-SE\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Kontrollerar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Uppdaterar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Hämtar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Hämtar {0}: {1} av {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunde inte ansluta till patchservern. Var vänlig och kontrollera dina inställningar." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunde inte ansluta till servern." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Detta verkar vara den första gången du startar programmet.\n" "Är detta mappen du vill installera spelet i?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerar..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installera" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Uppdaterar..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Uppdatera" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparerar..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparera" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Startar..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starta" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server erbjuder inte spelet för den valda plattformen." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spelet kunde inte starta. Försök att reparera installationen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installationen avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Uppdatering avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparation avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hoppsan! Spelet verkar ha krashat.\n" "Vill du försöka att reparera installationen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Att installera om spelet kommer att radera alla lokala filer och ladda ner hela spelet igen.\n" "Är du säker på att du vill installera om spelet?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meny" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparera Spelet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Startar en reparationsprocess för det installerade spelet." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Installera om spelet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Installerar om det installerade spelet." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Ingen fil med namnet \"GameVersion.txt\" kunde hittas i målmappen. Den här filen krävs. \n" "Vill du lägga till den? Versionen kommer vara \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} av {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Klar" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpadverktyg - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/någon/fil/ : 1 av 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Skapa spelmanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Skapa programmanifest" ================================================ FILE: Launchpad.Launcher/Content/locale/tr/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Turkish\n" "Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: tr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "{0} dosyası onaylanıyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "{0} dosyası güncelleniyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "{0} dosyası indiriliyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "{0} indiriliyor: {1}/{2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Boşta" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Yama sunucusuna bağlanılamadı. Lütfen ayarlarınızı kontrol edin." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Sunucuya bağlanılamadı." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Bu başlatıcıyı ilk açışınız gibi gözüküyor.\n" "Oyunu yüklemek istediğiniz yer bu mu?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Yükleniyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Yükle" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Güncelleniyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Güncelle" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Tamir ediliyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Tamir Et" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Başlatılıyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Başlat" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Devre dışı" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Sunucu oyunu seçili platform için temin etmiyor." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Oyun başlayamadı. Yüklemeyi tamir etmeyi deneyin." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Yükleme bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Güncelleme bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Tamir bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Haydaa! Oyun çökmüşe benziyor.\n" "Başlatıcının yüklemeyi teyit etmesini ister misiniz?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Oyunu baştan yüklemek yerel dosyaların hepsini silip bütün oyunu tekrar indirir.\n" "Oyunu baştan yüklemek istediğinize emin misiniz?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Oyunu Tamir Et" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Yüklü oyun için tamir süreci başlatır." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Oyunu Baştan Yükle" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Yüklü oyunu baştan yükler." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Hedef dizinde GameVersion.txt dosyası bulunamadı. Bu dosya gerekiyor.\n" "Bir tane eklemek ister misiniz? Sürüm \"1.0.0\" olacak." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {2}'de {1}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Bitti" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Hizmetleri - Manifesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "İlerleme: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/bir/dosya/dizini : 100'de 1" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Oyun Manifestosu Oluştur" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad Manifestosu Oluştur" ================================================ FILE: Launchpad.Launcher/Content/locale/uk/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: uk\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/vi/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: vi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Launcher/Content/locale/zh_CN/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "验证文件 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "更新文件 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "下载文件 {0}: {1} {2} bytes。" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "下载 {0}: {1} {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - (0)" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "闲置" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "无法连接到修补服务器。请检查您的设置。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "无法连接到伺服器。" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "这似乎是您第一次启动启动程序. 这是您要安装游戏的位置吗?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "正在安装..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "安装" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "正在更新..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "正在修复..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修复" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "正在启动..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "启动" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "未激活" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "伺服器未为选定平台提供这个游戏。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "游戏无法启动。尝试修复安装程序。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "安装完成" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新已完成" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修复完成" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "呦! 游戏似乎已经崩溃. \n" "是否您喜欢启动器来验证安装吗?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "重新安装游戏将删除所有本地文件, 并再次下载整个游戏. n\n" " 您确定要重新安装游戏吗?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "选单" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "维修游戏" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "启动已安装游戏的修复过程。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "重新安装游戏" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "重新安装游戏。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "在目录中找不到 GameVersion.txt 文件。\n" "此文件是必需的. 是否要添加一个吗?该版本将是 \"1.0.0\"。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "完成" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "启动板实用程序" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "进度: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/部分/文件/路径: 1/100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "生成游戏清单" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "生成游戏清单" ================================================ FILE: Launchpad.Launcher/Content/locale/zh_TW/LC_MESSAGES/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: zh-TW\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "驗證檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "更新檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "更新檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "下載 {0}: {1} {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad- (0)" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "閒置" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "無法連接到修補伺服器。請檢查您的設置。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "無法連接到伺服器。" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "這似乎是您第一次啟動啟動程式. 這是您要安裝遊戲的位置嗎?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "正在安裝..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "安裝" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "正在更新..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "正在修復..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修復" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "正在啟動..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "啟動" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "未激活的" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "伺服器未為選定平台提供這個遊戲。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "遊戲無法啟動。嘗試修復安裝程序。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "安裝完成" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新已完成" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修復完成" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "呦! 遊戲似乎已經崩潰. 是否您喜歡啟動器來驗證安裝嗎?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "重新安裝遊戲將刪除所有本地檔, 並再次下載整個遊戲. n\n" " 您確定要重新安裝遊戲嗎?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "選單" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "維修遊戲" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "啟動已安裝遊戲的修復過程。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "重新安裝遊戲" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "重新安裝遊戲。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "在目錄中找不到 GameVersion.txt 檔。此檔是必需的. 是否要添加一個嗎?該版本將是 \"1.0.0\"。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "完成" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "啟動板實用程式" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "進度: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/部分/檔/路徑: 1/100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "生成遊戲清單" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "生成遊戲清單" ================================================ FILE: Launchpad.Launcher/Extensions/ManifestEntryExtensions.cs ================================================ // // ManifestEntryExtensions.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.IO; using Launchpad.Common.Handlers; using Launchpad.Common.Handlers.Manifest; using Launchpad.Launcher.Utility; namespace Launchpad.Launcher; /// /// Extension methods for the class. /// public static class ManifestEntryExtensions { /// /// Verifies the integrity of the file in the manifest entry. /// /// The manifest entry to test. /// The directory helpers. /// true, if file was complete and undamaged, false otherwise. public static bool IsFileIntegrityIntact(this ManifestEntry entry, DirectoryHelpers directoryHelpers) { var localPath = Path.Combine(directoryHelpers.GetLocalGameDirectory(), entry.RelativePath); if (!File.Exists(localPath)) { return false; } var fileInfo = new FileInfo(localPath); if (fileInfo.Length != entry.Size) { return false; } using Stream file = File.OpenRead(localPath); var localHash = MD5Handler.GetStreamHash(file); if (localHash != entry.Hash) { return false; } return true; } } ================================================ FILE: Launchpad.Launcher/Handlers/ChecksHandler.cs ================================================ // // ChecksHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.IO; using System.Threading.Tasks; using Launchpad.Common.Enums; using Launchpad.Launcher.Handlers.Protocols; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using Remora.Results; namespace Launchpad.Launcher.Handlers; /// /// This class handles all the launcher's checks, returning bools for each function. /// public sealed class ChecksHandler { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// The patch protocol. /// private readonly PatchProtocolHandler _patch; /// /// The directory helpers. /// private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The patch protocol. /// The directory helpers. public ChecksHandler(ILogger log, PatchProtocolHandler patch, DirectoryHelpers directoryHelpers) { _log = log; _patch = patch; _directoryHelpers = directoryHelpers; } /// /// Determines whether this instance can connect to a patching service. /// /// true if this instance can connect to a patching service; otherwise, false. public Task> CanPatchAsync() => _patch.CanPatchAsync(); /// /// Determines whether this is the first time the launcher starts. /// /// true if this is the first time; otherwise, false. public bool IsInitialStartup() { // We use an empty file to determine if this is the first launch or not return !File.Exists(_directoryHelpers.GetLauncherTagfilePath()); } /// /// Determines whether the game is installed. /// /// true if the game is installed; otherwise, false. public bool IsGameInstalled() { // Criteria for considering the game 'installed' var hasGameDirectory = Directory.Exists(_directoryHelpers.GetLocalGameDirectory()); var hasInstallCookie = File.Exists(_directoryHelpers.GetGameTagfilePath()); var hasGameVersionFile = File.Exists(_directoryHelpers.GetLocalGameVersionPath()); if (!hasGameVersionFile && hasGameDirectory) { _log.LogWarning ( "No GameVersion.txt file was found in the installation directory.\n" + "This may be due to a download error, or the developer may not have included one.\n" + "Without it, the game cannot be considered fully installed.\n" + "If you are the developer of this game, add one to your game files with your desired version in it" ); } // If any of these criteria are false, the game is not considered fully installed. return hasGameDirectory && hasInstallCookie && IsInstallCookieEmpty() && hasGameVersionFile; } /// /// Determines whether the game is outdated. /// /// true if the game is outdated; otherwise, false. public Task> IsGameOutdatedAsync() => _patch.IsModuleOutdatedAsync(EModule.Game); /// /// Determines whether the launcher is outdated. /// /// true if the launcher is outdated; otherwise, false. public Task> IsLauncherOutdatedAsync() => _patch.IsModuleOutdatedAsync(EModule.Launcher); /// /// Determines whether the install cookie is empty. /// /// true if the install cookie is empty, otherwise, false. private bool IsInstallCookieEmpty() { // Is there an .install file in the directory? var hasInstallCookie = File.Exists(_directoryHelpers.GetGameTagfilePath()); var isInstallCookieEmpty = false; if (hasInstallCookie) { isInstallCookieEmpty = string.IsNullOrEmpty(File.ReadAllText(_directoryHelpers.GetGameTagfilePath())); } return isInstallCookieEmpty; } /// /// Checks whether or not the server provides binaries and patches for the specified platform. /// /// true, if the server does provide files for the platform, false otherwise. /// platform. public Task> IsPlatformAvailableAsync(ESystemTarget platform) => _patch.IsPlatformAvailableAsync(platform); } ================================================ FILE: Launchpad.Launcher/Handlers/ConfigHandler.cs ================================================ // // ConfigHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.IO; using Config.Net; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Utility; namespace Launchpad.Launcher.Handlers; /// /// Config handler. /// public sealed class ConfigHandler { /// /// Gets the configuration instance. /// public ILaunchpadConfiguration Configuration { get; } /// /// Initializes a new instance of the class and initializes it. /// public ConfigHandler() { this.Configuration = new ConfigurationBuilder() .UseIniFile(DirectoryHelpers.GetConfigPath()) .Build(); InitializeConfigurationFile(); } /// /// Initializes the config by checking for bad values or files. /// Run once when the launcher starts, then avoid unless absolutely necessary. /// private void InitializeConfigurationFile() { if (File.Exists(DirectoryHelpers.GetConfigPath())) { return; } // Get the default values and write them back to the file, forcing it to be written to disk foreach (var property in typeof(ILaunchpadConfiguration).GetProperties()) { var value = property.GetValue(this.Configuration); property.SetValue(this.Configuration, value); } } } ================================================ FILE: Launchpad.Launcher/Handlers/GameHandler.cs ================================================ // // GameHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Diagnostics; using System.IO; using Launchpad.Common; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Handlers.Protocols; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using Process = System.Diagnostics.Process; using Task = System.Threading.Tasks.Task; namespace Launchpad.Launcher.Handlers; /// /// This class has a lot of async stuff going on. It handles installing the game /// and updating it when it needs to. /// /// The download protocol is selected based on the configuration each time this is /// instantiated, and control is then handed over to whatever the protocol needs /// to do. /// /// Since this class starts new threads in which it does the larger computations, /// there must be no usage of UI code in this class. Keep it clean. /// public sealed class GameHandler { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// Event raised whenever the progress of installing or updating the game changes. /// public event EventHandler? ProgressChanged; /// /// Event raised whenever the game finishes downloading, regardless of whether or not it's updating /// or installing. /// public event EventHandler? DownloadFinished; /// /// Event raised whenever the game fails to download, regardless of whether or not it's updating /// or installing. /// public event EventHandler? DownloadFailed; /// /// Event raised whenever the game fails to launch. /// public event EventHandler? LaunchFailed; /// /// Event raised whenever the game exits. /// public event EventHandler? GameExited; /// /// The configuration. /// private readonly ILaunchpadConfiguration _configuration; /// /// The patch protocol. /// private readonly PatchProtocolHandler _patch; /// /// The game argument service. /// private readonly GameArgumentService _gameArgumentService; /// /// The directory helpers. /// private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The patch protocol. /// The game argument service. /// The configuration. /// The directory helpers. public GameHandler ( ILogger log, PatchProtocolHandler patch, GameArgumentService gameArgumentService, ILaunchpadConfiguration configuration, DirectoryHelpers directoryHelpers ) { _log = log; _patch = patch; _gameArgumentService = gameArgumentService; _configuration = configuration; _directoryHelpers = directoryHelpers; _patch.ModuleDownloadProgressChanged += OnModuleInstallProgressChanged; _patch.ModuleVerifyProgressChanged += OnModuleInstallProgressChanged; _patch.ModuleUpdateProgressChanged += OnModuleInstallProgressChanged; _patch.ModuleInstallationFinished += OnModuleInstallationFinished; _patch.ModuleInstallationFailed += OnModuleInstallationFailed; } /// /// Starts an asynchronous game installation task. /// /// A representing the asynchronous operation. public async Task InstallGameAsync() { _log.LogInformation("Starting installation of game files using protocol \"{Protocol}\"", _patch.GetType().Name); await _patch.InstallGameAsync(); } /// /// Starts an asynchronous game update task. /// /// A representing the asynchronous operation. public async Task UpdateGameAsync() { _log.LogInformation("Starting update of game files using protocol \"{Protocol}\"", _patch.GetType().Name); await _patch.UpdateModuleAsync(EModule.Game); } /// /// Starts an asynchronous game verification task. /// /// A representing the asynchronous operation. public async Task VerifyGameAsync() { _log.LogInformation("Beginning verification of game files"); await _patch.VerifyModuleAsync(EModule.Game); } /// /// Deletes all local data and installs the game again. /// /// A representing the asynchronous operation. public async Task ReinstallGameAsync() { _log.LogInformation("Beginning full reinstall of game files"); if (Directory.Exists(_directoryHelpers.GetLocalGameDirectory())) { _log.LogInformation("Deleting existing game files"); Directory.Delete(_directoryHelpers.GetLocalGameDirectory(), true); } if (File.Exists(_directoryHelpers.GetGameTagfilePath())) { _log.LogInformation("Deleting install progress cookie"); File.Delete(_directoryHelpers.GetGameTagfilePath()); } await _patch.InstallGameAsync(); } /// /// Launches the game. /// public void LaunchGame() { try { var executable = Path.Combine(_directoryHelpers.GetLocalGameDirectory(), _configuration.ExecutablePath); if (!File.Exists(executable)) { throw new FileNotFoundException($"Game executable at path (\"{executable}\") not found."); } var executableDir = Path.GetDirectoryName(executable) ?? DirectoryHelpers.GetLocalLauncherDirectory(); // Do not move the argument assignment inside the gameStartInfo initializer. // It causes a TargetInvocationException crash through black magic. var gameArguments = string.Join(" ", _gameArgumentService.GetGameArguments()); var gameStartInfo = new ProcessStartInfo { FileName = executable, Arguments = gameArguments, WorkingDirectory = executableDir }; _log.LogInformation("Launching game. \n\tExecutable path: {Executable}", gameStartInfo.FileName); var gameProcess = new Process { StartInfo = gameStartInfo, EnableRaisingEvents = true }; gameProcess.Exited += (_, _) => { if (gameProcess.ExitCode != 0) { _log.LogInformation ( "The game exited with an exit code of {ExitCode}. " + "There may have been issues during runtime, or the game may not have started at all", gameProcess.ExitCode ); } OnGameExited(gameProcess.ExitCode); // Manual disposing gameProcess.Dispose(); }; // Make sure the game executable is flagged as such on Unix if (PlatformHelpers.IsRunningOnUnix()) { Process.Start("chmod", $"+x {gameStartInfo.FileName}"); } gameProcess.Start(); } catch (FileNotFoundException fex) { _log.LogWarning(fex, "Game launch failed"); _log.LogWarning("If the game executable is there, try overriding the executable name in the configuration file"); OnGameLaunchFailed(); } catch (IOException ioex) { _log.LogWarning(ioex, $"Game launch failed"); OnGameLaunchFailed(); } } /// /// Passes the internal event in the protocol handler to the outward-facing /// event. /// /// Sender. /// E. private void OnModuleInstallProgressChanged(object? sender, ModuleProgressChangedArgs e) { this.ProgressChanged?.Invoke(sender, e); } /// /// Passes the internal event in the protocol handler to the outward-facing /// event. /// /// Sender. /// E. private void OnModuleInstallationFinished(object? sender, EModule e) { this.DownloadFinished?.Invoke(sender, EventArgs.Empty); } /// /// Passes the internal event in the protocol handler to the outward-facing /// event. /// /// Sender. /// E. private void OnModuleInstallationFailed(object? sender, EModule e) { this.DownloadFailed?.Invoke(sender, EventArgs.Empty); } /// /// Raises the Game Launch Failed event. /// private void OnGameLaunchFailed() { this.LaunchFailed?.Invoke(this, EventArgs.Empty); } /// /// Raises the Game Exited event. /// private void OnGameExited(int exitCode) { this.GameExited?.Invoke(this, exitCode); } } ================================================ FILE: Launchpad.Launcher/Handlers/LauncherHandler.cs ================================================ // // LauncherHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Diagnostics; using System.IO; using System.Net; using System.Reflection; using System.Threading.Tasks; using Launchpad.Common; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Handlers.Protocols; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using Process = System.Diagnostics.Process; using Task = System.Threading.Tasks.Task; namespace Launchpad.Launcher.Handlers; /// /// This class has a lot of async stuff going on. It handles updating the launcher /// and loading the changelog from the server. /// Since this class starts new threads in which it does the larger computations, /// there must be no usage of UI code in this class. Keep it clean. /// public sealed class LauncherHandler { // Replace the variables in the script with actual data private const string TempDirectoryVariable = "%temp%"; private const string LocalInstallDirectoryVariable = "%localDir%"; private const string LocalExecutableName = "%launchpadExecutable%"; /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// Raised whenever the launcher finishes downloading. /// public event EventHandler? LauncherDownloadFinished; /// /// Raised whenever the launcher download progress changes. /// public event EventHandler? LauncherDownloadProgressChanged; private readonly PatchProtocolHandler _patch; /// /// The config handler reference. /// private readonly ILaunchpadConfiguration _configuration; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The patch protocol. /// The configuration. public LauncherHandler ( ILogger log, PatchProtocolHandler patch, ILaunchpadConfiguration configuration ) { _log = log; _patch = patch; _configuration = configuration; _patch.ModuleDownloadProgressChanged += OnLauncherDownloadProgressChanged; _patch.ModuleInstallationFinished += OnLauncherDownloadFinished; } /// /// Updates the launcher asynchronously. /// /// A representing the asynchronous operation. public async Task UpdateLauncherAsync() { try { _log.LogInformation("Starting update of lancher files using protocol \"{Protocol}\"", _patch.GetType().Name); await _patch.UpdateModuleAsync(EModule.Launcher); } catch (IOException ioex) { _log.LogWarning(ioex, "The launcher update failed"); } } /// /// Checks if the launcher can access the standard HTTP changelog. /// /// true if the changelog can be accessed; otherwise, false. public async Task CanAccessStandardChangelog() { if (string.IsNullOrEmpty(_configuration.ChangelogAddress.AbsoluteUri)) { return false; } var address = _configuration.ChangelogAddress; // Only allow HTTP URIs if (!(address.Scheme == "http" || address.Scheme == "https")) { return false; } var headRequest = (HttpWebRequest)WebRequest.Create(address); headRequest.Method = "HEAD"; try { using var headResponse = (HttpWebResponse)await headRequest.GetResponseAsync(); return headResponse.StatusCode == HttpStatusCode.OK; } catch (WebException wex) { _log.LogWarning(wex, "Could not access standard changelog"); return false; } } /// /// Creates the update script on disk. /// /// ProcessStartInfo for the update script. public ProcessStartInfo CreateUpdateScript() { try { var updateScriptPath = GetUpdateScriptPath(); var updateScriptSource = GetUpdateScriptSource(); File.WriteAllText(updateScriptPath, updateScriptSource); if (PlatformHelpers.IsRunningOnUnix()) { var chmod = Process.Start("chmod", $"+x {updateScriptPath}"); chmod.WaitForExit(); } var updateShellProcess = new ProcessStartInfo { FileName = updateScriptPath, UseShellExecute = false, RedirectStandardOutput = false, CreateNoWindow = true, WindowStyle = ProcessWindowStyle.Normal }; return updateShellProcess; } catch (IOException ioex) { _log.LogWarning(ioex, "Failed to create update script"); throw new InvalidOperationException(); } } /// /// Extracts the bundled update script and populates the variables in it /// with the data needed for the update procedure. /// private string GetUpdateScriptSource() { // Load the script from the embedded resources var localAssembly = Assembly.GetExecutingAssembly(); var scriptSource = string.Empty; var resourceName = GetUpdateScriptResourceName(); using (var resourceStream = localAssembly.GetManifestResourceStream(resourceName)) { if (resourceStream != null) { using var reader = new StreamReader(resourceStream); scriptSource = reader.ReadToEnd(); } } var transientScriptSource = scriptSource; transientScriptSource = transientScriptSource.Replace(TempDirectoryVariable, Path.GetTempPath()); transientScriptSource = transientScriptSource.Replace(LocalInstallDirectoryVariable, DirectoryHelpers.GetLocalLauncherDirectory()); transientScriptSource = transientScriptSource.Replace(LocalExecutableName, Path.GetFileName(localAssembly.Location)); return transientScriptSource; } /// /// Gets the name of the embedded update script. /// private static string GetUpdateScriptResourceName() { if (PlatformHelpers.IsRunningOnUnix()) { return "Launchpad.Launcher.Resources.launchpad_update.sh"; } else { return "Launchpad.Launcher.Resources.launchpad_update.bat"; } } /// /// Gets the name of the embedded update script. /// private static string GetUpdateScriptPath() { if (PlatformHelpers.IsRunningOnUnix()) { return Path.Combine(Path.GetTempPath(), "launchpad_update.sh"); } return Path.Combine(Path.GetTempPath(), "launchpad_update.bat"); } private void OnLauncherDownloadProgressChanged(object? sender, ModuleProgressChangedArgs e) { this.LauncherDownloadProgressChanged?.Invoke(sender, e); } private void OnLauncherDownloadFinished(object? sender, EModule e) { this.LauncherDownloadFinished?.Invoke(sender, EventArgs.Empty); } } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/EModule.cs ================================================ // // EModule.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // namespace Launchpad.Launcher.Handlers.Protocols; /// /// A list of modules that can be downloaded and reported on. /// public enum EModule : byte { /// /// The launcher itself. /// Launcher = 1, /// /// The managed game. /// Game = 2 } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/FTPProtocolHandler.cs ================================================ // // FTPProtocolHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Net; using System.Text; using System.Threading.Tasks; using Launchpad.Common.Enums; using Launchpad.Common.Handlers.Manifest; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using NGettext; using Remora.Results; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; namespace Launchpad.Launcher.Handlers.Protocols.Manifest; /// /// FTP handler. Handles downloading and reading files on a remote FTP server. /// There are also functions for retrieving remote version information of the game and the launcher. /// /// This protocol uses a manifest. /// internal sealed class FTPProtocolHandler : ManifestBasedProtocolHandler { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The local version service. /// The manifest handler. /// The localization catalog. /// The configuration. /// The tagfile service. /// The directory helpers. public FTPProtocolHandler ( ILogger log, LocalVersionService localVersionService, ManifestHandler fileManifestHandler, ICatalog localizationCatalog, ILaunchpadConfiguration configuration, TagfileService tagfileService, DirectoryHelpers directoryHelpers ) : base ( log, localVersionService, fileManifestHandler, localizationCatalog, configuration, tagfileService, directoryHelpers ) { _log = log; } /// public override async Task> CanPatchAsync() { _log.LogInformation("Pinging remote patching server to determine if we can connect to it"); var canConnect = false; var url = this.Configuration.RemoteAddress.AbsoluteUri; var username = this.Configuration.RemoteUsername; var password = this.Configuration.RemotePassword; try { var getPlainRequest = CreateFtpWebRequest(url, username, password); if (!getPlainRequest.IsSuccess) { return Result.FromError(getPlainRequest); } var request = getPlainRequest.Entity; request.Method = WebRequestMethods.Ftp.ListDirectoryDetails; try { var timeout = Task.Delay(TimeSpan.FromSeconds(4)); var getResponse = request.GetResponseAsync(); var completedTask = await Task.WhenAny(timeout, getResponse); if (completedTask == timeout) { return false; } using var response = (FtpWebResponse)await getResponse; switch (response.StatusCode) { case FtpStatusCode.OpeningData: case FtpStatusCode.DataAlreadyOpen: { canConnect = true; break; } } } catch (WebException wex) { _log.LogWarning(wex, "Unable to connect to remote patch server"); canConnect = false; } } catch (WebException wex) { _log.LogWarning(wex, "Unable to connect due a malformed url in the configuration"); canConnect = false; } return canConnect; } /// public override Task> IsPlatformAvailableAsync(ESystemTarget platform) { var remote = $"{this.Configuration.RemoteAddress}/game/{platform}/.provides"; return DoesRemoteFileExistAsync(remote); } /// public override Task> GetChangelogMarkupAsync() { var changelogURL = $"{this.Configuration.RemoteAddress}/launcher/changelog.pango"; return ReadRemoteFileAsync(changelogURL); } /// public override Task> CanProvideBannerAsync() { var bannerURL = $"{this.Configuration.RemoteAddress}/launcher/banner.png"; return DoesRemoteFileExistAsync(bannerURL); } /// public override async Task>> GetBannerAsync() { var bannerURL = $"{this.Configuration.RemoteAddress}/launcher/banner.png"; var localBannerPath = Path.Combine(Path.GetTempPath(), "banner.png"); await DownloadRemoteFileAsync(bannerURL, localBannerPath); var bytes = await File.ReadAllBytesAsync(localBannerPath); return Image.Load(bytes); } /// protected override async Task> ReadRemoteFileAsync(string url, bool useAnonymousLogin = false) { // Clean the input url first var remoteURL = url.Replace(Path.DirectorySeparatorChar, '/'); string username; string password; if (useAnonymousLogin) { username = "anonymous"; password = "anonymous"; } else { username = this.Configuration.RemoteUsername; password = this.Configuration.RemotePassword; } try { var getRequest = CreateFtpWebRequest(remoteURL, username, password); var getSizeRequest = CreateFtpWebRequest(remoteURL, username, password); if (!getRequest.IsSuccess) { return Result.FromError(getRequest); } if (!getSizeRequest.IsSuccess) { return Result.FromError(getSizeRequest); } var request = getRequest.Entity; var sizeRequest = getSizeRequest.Entity; request.Method = WebRequestMethods.Ftp.DownloadFile; sizeRequest.Method = WebRequestMethods.Ftp.GetFileSize; var data = string.Empty; await using var remoteStream = (await request.GetResponseAsync()).GetResponseStream(); long fileSize; using (var sizeResponse = (FtpWebResponse)await sizeRequest.GetResponseAsync()) { fileSize = sizeResponse.ContentLength; } var bufferSize = this.Configuration.RemoteFileDownloadBufferSize; if (fileSize < bufferSize) { var smallBuffer = new byte[fileSize]; var read = 0; while (read < smallBuffer.Length) { read = await remoteStream.ReadAsync(smallBuffer, read, smallBuffer.Length); } data = Encoding.UTF8.GetString(smallBuffer, 0, smallBuffer.Length); } else { var buffer = new byte[bufferSize]; while (true) { var bytesRead = await remoteStream.ReadAsync(buffer, 0, buffer.Length); if (bytesRead == 0) { break; } data += Encoding.UTF8.GetString(buffer, 0, bytesRead); } } return data; } catch (WebException wex) { _log.LogError(wex, "Failed to read the contents of remote file \"{RemoteUrl}\"", remoteURL); return string.Empty; } } /// protected override async Task DownloadRemoteFileAsync ( string url, string localPath, long totalSize = 0, long contentOffset = 0, bool useAnonymousLogin = false ) { // Make sure we're not passing in any backslashes in the url var remoteURL = url.Replace(Path.DirectorySeparatorChar, '/'); string username; string password; if (useAnonymousLogin) { username = "anonymous"; password = "anonymous"; } else { username = this.Configuration.RemoteUsername; password = this.Configuration.RemotePassword; } try { var getRequest = CreateFtpWebRequest(remoteURL, username, password); var getSizeRequest = CreateFtpWebRequest(remoteURL, username, password); if (!getRequest.IsSuccess) { return Result.FromError(getRequest); } if (!getSizeRequest.IsSuccess) { return Result.FromError(getSizeRequest); } var request = getRequest.Entity; var sizeRequest = getSizeRequest.Entity; request.Method = WebRequestMethods.Ftp.DownloadFile; request.ContentOffset = contentOffset; sizeRequest.Method = WebRequestMethods.Ftp.GetFileSize; await using var contentStream = (await request.GetResponseAsync()).GetResponseStream(); var fileSize = contentOffset; using (var sizeReader = (FtpWebResponse)sizeRequest.GetResponse()) { fileSize += sizeReader.ContentLength; } await using ( var fileStream = contentOffset > 0 ? new FileStream(localPath, FileMode.Append) : new FileStream(localPath, FileMode.Create) ) { fileStream.Position = contentOffset; var totalBytesDownloaded = contentOffset; var bufferSize = this.Configuration.RemoteFileDownloadBufferSize; if (fileSize < bufferSize) { var smallBuffer = new byte[fileSize]; var read = 0; while (read < smallBuffer.Length) { read = await contentStream.ReadAsync(smallBuffer, read, smallBuffer.Length); } fileStream.Write(smallBuffer, 0, smallBuffer.Length); totalBytesDownloaded += smallBuffer.Length; // Report download progress this.ModuleDownloadProgressArgs.ProgressBarMessage = GetDownloadProgressBarMessage ( Path.GetFileName(remoteURL), totalBytesDownloaded, fileSize ); this.ModuleDownloadProgressArgs.ProgressFraction = (double)totalBytesDownloaded / fileSize; OnModuleDownloadProgressChanged(); } else { var buffer = new byte[bufferSize]; while (true) { var bytesRead = await contentStream.ReadAsync(buffer, 0, buffer.Length); if (bytesRead == 0) { break; } fileStream.Write(buffer, 0, bytesRead); totalBytesDownloaded += bytesRead; // Report download progress this.ModuleDownloadProgressArgs.ProgressBarMessage = GetDownloadProgressBarMessage ( Path.GetFileName(remoteURL), totalBytesDownloaded, fileSize ); this.ModuleDownloadProgressArgs.ProgressFraction = (double)totalBytesDownloaded / fileSize; OnModuleDownloadProgressChanged(); } } } } catch (WebException wex) { _log.LogError(wex, "Failed to read the contents of remote file \"{RemoteUrl}\"", remoteURL); return wex; } catch (IOException ioex) { _log.LogError(ioex, "Failed to read the contents of remote file \"{RemoteUrl}\"", remoteURL); return ioex; } return Result.FromSuccess(); } /// /// Creates an ftp web request. /// /// The ftp web request. /// Ftp directory path. /// Remote FTP username. /// Remote FTP password. private Result CreateFtpWebRequest(string remotePath, string username, string password) { if (!remotePath.StartsWith(this.Configuration.RemoteAddress.AbsoluteUri)) { remotePath = $"{this.Configuration.RemoteAddress}/{remotePath}"; } try { var request = (FtpWebRequest)WebRequest.Create(new Uri(remotePath)); // Set proxy to null. Under current configuration if this option is not set then the proxy // that is used will get an html response from the web content gateway (firewall monitoring system) request.Proxy = null; request.UsePassive = true; request.UseBinary = true; request.Credentials = new NetworkCredential(username, password); return request; } catch (WebException wex) { _log.LogError(wex, "Unable to create a WebRequest for the specified file \"{RemotePath}\"", remotePath); return wex; } catch (ArgumentException aex) { _log.LogError(aex, "Unable to create a WebRequest for the specified file \"{RemotePath}\"", remotePath); return aex; } catch (UriFormatException uex) { _log.LogError ( uex, "Unable to create a WebRequest for the specified file. You may need to add \"ftp://\" before the url in the config" ); return uex; } } /// /// Checks if a given file exists on the remote FTP server. /// /// true, if the file exists, false otherwise. /// Remote path. private async Task> DoesRemoteFileExistAsync(string remotePath) { try { var createRequest = CreateFtpWebRequest ( remotePath, this.Configuration.RemoteUsername, this.Configuration.RemotePassword ); if (!createRequest.IsSuccess) { return Result.FromError(createRequest); } var request = createRequest.Entity; using var response = (FtpWebResponse)await request.GetResponseAsync(); } catch (WebException ex) { using var response = (FtpWebResponse?)ex.Response; if (response?.StatusCode == FtpStatusCode.ActionNotTakenFileUnavailable) { return false; } return Result.FromError(ex); } return true; } } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/HTTPProtocolHandler.cs ================================================ // // HTTPProtocolHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Net; using System.Text; using System.Threading.Tasks; using Launchpad.Common.Enums; using Launchpad.Common.Handlers.Manifest; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using NGettext; using Remora.Results; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; using Image = SixLabors.ImageSharp.Image; namespace Launchpad.Launcher.Handlers.Protocols.Manifest; /// /// HTTP protocol handler. Patches the launcher and game using the /// HTTP/HTTPS protocol. /// internal sealed class HTTPProtocolHandler : ManifestBasedProtocolHandler { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The local version service. /// The manifest handler. /// The localization catalog. /// The configuration. /// The tagfile service. /// The directory helpers. public HTTPProtocolHandler ( ILogger log, LocalVersionService localVersionService, ManifestHandler fileManifestHandler, ICatalog localizationCatalog, ILaunchpadConfiguration configuration, TagfileService tagfileService, DirectoryHelpers directoryHelpers ) : base ( log, localVersionService, fileManifestHandler, localizationCatalog, configuration, tagfileService, directoryHelpers ) { _log = log; } /// public override async Task> CanPatchAsync() { _log.LogInformation("Pinging remote patching server to determine if we can connect to it"); var canConnect = false; try { var getPlainRequest = CreateHttpWebRequest ( this.Configuration.RemoteAddress.AbsoluteUri, this.Configuration.RemoteUsername, this.Configuration.RemotePassword ); if (!getPlainRequest.IsSuccess) { return Result.FromError(getPlainRequest); } var plainRequest = getPlainRequest.Entity; plainRequest.Method = WebRequestMethods.Http.Head; plainRequest.Timeout = 4000; try { using var response = (HttpWebResponse)await plainRequest.GetResponseAsync(); if (response.StatusCode == HttpStatusCode.OK) { canConnect = true; } } catch (WebException wex) { _log.LogWarning(wex, "Unable to connect to remote patch server"); canConnect = false; } } catch (WebException wex) { _log.LogWarning(wex, "Unable to connect due a malformed url in the configuration"); canConnect = false; } return canConnect; } /// public override Task> IsPlatformAvailableAsync(ESystemTarget platform) { var remote = $"{this.Configuration.RemoteAddress}/game/{platform}/.provides"; return DoesRemoteDirectoryOrFileExistAsync(remote); } /// public override Task> GetChangelogMarkupAsync() { var changelogURL = $"{this.Configuration.RemoteAddress}/launcher/changelog.pango"; return ReadRemoteFileAsync(changelogURL); } /// public override Task> CanProvideBannerAsync() { var bannerURL = $"{this.Configuration.RemoteAddress}/launcher/banner.png"; return DoesRemoteDirectoryOrFileExistAsync(bannerURL); } /// public override async Task>> GetBannerAsync() { var bannerURL = $"{this.Configuration.RemoteAddress}/launcher/banner.png"; var localBannerPath = Path.Combine(Path.GetTempPath(), "banner.png"); await DownloadRemoteFileAsync(bannerURL, localBannerPath); return Image.Load(localBannerPath); } /// protected override async Task DownloadRemoteFileAsync ( string url, string localPath, long totalSize = 0, long contentOffset = 0, bool useAnonymousLogin = false ) { // Clean the url string var remoteURL = url.Replace(Path.DirectorySeparatorChar, '/'); string username; string password; if (useAnonymousLogin) { username = "anonymous"; password = "anonymous"; } else { username = this.Configuration.RemoteUsername; password = this.Configuration.RemotePassword; } try { var getRequest = CreateHttpWebRequest(remoteURL, username, password); if (!getRequest.IsSuccess) { return Result.FromError(getRequest); } var request = getRequest.Entity; request.Method = WebRequestMethods.Http.Get; request.AddRange(contentOffset); await using var contentStream = (await request.GetResponseAsync()).GetResponseStream(); await using var fileStream = contentOffset > 0 ? new FileStream(localPath, FileMode.Append) : new FileStream(localPath, FileMode.Create); fileStream.Position = contentOffset; var totalBytesDownloaded = contentOffset; long totalFileSize; if (contentStream.CanSeek) { totalFileSize = contentOffset + contentStream.Length; } else { totalFileSize = totalSize; } var bufferSize = this.Configuration.RemoteFileDownloadBufferSize; var buffer = new byte[bufferSize]; while (true) { var bytesRead = await contentStream.ReadAsync(buffer, 0, buffer.Length); if (bytesRead == 0) { break; } fileStream.Write(buffer, 0, bytesRead); totalBytesDownloaded += bytesRead; // Report download progress this.ModuleDownloadProgressArgs.ProgressBarMessage = GetDownloadProgressBarMessage ( Path.GetFileName(remoteURL), totalBytesDownloaded, totalFileSize ); this.ModuleDownloadProgressArgs.ProgressFraction = totalBytesDownloaded / (double)totalFileSize; OnModuleDownloadProgressChanged(); } fileStream.Flush(); } catch (WebException wex) { _log.LogError("Failed to download the remote file at \"{RemoteUrl}\"", remoteURL); return wex; } catch (IOException ioex) { _log.LogError("Failed to download the remote file at \"{RemoteUrl}\"", remoteURL); return ioex; } return Result.FromSuccess(); } /// protected override async Task> ReadRemoteFileAsync ( string url, bool useAnonymousLogin = false ) { var remoteURL = url.Replace(Path.DirectorySeparatorChar, '/'); string username; string password; if (useAnonymousLogin) { username = "anonymous"; password = "anonymous"; } else { username = this.Configuration.RemoteUsername; password = this.Configuration.RemotePassword; } try { var getRequest = CreateHttpWebRequest(remoteURL, username, password); if (!getRequest.IsSuccess) { return Result.FromError(getRequest); } var request = getRequest.Entity; request.Method = WebRequestMethods.Http.Get; var data = string.Empty; await using var remoteStream = (await request.GetResponseAsync()).GetResponseStream(); var bufferSize = this.Configuration.RemoteFileDownloadBufferSize; var buffer = new byte[bufferSize]; while (true) { var bytesRead = await remoteStream.ReadAsync(buffer, 0, buffer.Length); if (bytesRead == 0) { break; } data += Encoding.UTF8.GetString(buffer, 0, bytesRead); } return data; } catch (WebException wex) { _log.LogError("Failed to read the contents of remote file \"{RemoteUrl}\"", remoteURL); return wex; } } /// /// Creates a HTTP web request. /// /// The HTTP web request. /// url of the desired remote object. /// The username used for authentication. /// The password used for authentication. private Result CreateHttpWebRequest ( string remotePath, string username, string password ) { if (!remotePath.StartsWith(this.Configuration.RemoteAddress.AbsoluteUri)) { remotePath = $"{this.Configuration.RemoteAddress}/{remotePath}"; } try { var request = (HttpWebRequest)WebRequest.Create(new Uri(remotePath)); request.Credentials = new NetworkCredential(username, password); return request; } catch (WebException wex) { _log.LogError(wex, "Unable to create a WebRequest for the specified file \"{RemotePath}\"", remotePath); return wex; } catch (ArgumentException aex) { _log.LogError(aex, "Unable to create a WebRequest for the specified file \"{RemotePath}\"", remotePath); return aex; } catch (UriFormatException uex) { _log.LogError ( uex, "Unable to create a WebRequest for the specified file. You may need to add \"ftp://\" before the url in the config" ); return uex; } } /// /// Checks if the provided path points to a valid directory or file. /// /// true, if the directory or file exists, false otherwise. /// The remote url of the directory or file. private async Task> DoesRemoteDirectoryOrFileExistAsync(string url) { var cleanURL = url.Replace(Path.DirectorySeparatorChar, '/'); var getRequest = CreateHttpWebRequest ( cleanURL, this.Configuration.RemoteUsername, this.Configuration.RemotePassword ); if (!getRequest.IsSuccess) { return Result.FromError(getRequest); } var request = getRequest.Entity; request.Method = WebRequestMethods.Http.Head; try { using var response = (HttpWebResponse)await request.GetResponseAsync(); if (response.StatusCode != HttpStatusCode.OK) { return false; } } catch (WebException wex) { using var response = (HttpWebResponse?)wex.Response; if (response?.StatusCode == HttpStatusCode.NotFound) { return false; } return Result.FromError(wex); } return true; } } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/ManifestBasedProtocolHandler.cs ================================================ // // ManifestBasedProtocolHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Threading.Tasks; using Launchpad.Common; using Launchpad.Common.Enums; using Launchpad.Common.Handlers; using Launchpad.Common.Handlers.Manifest; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; using NGettext; using Remora.Results; using FileInfo = System.IO.FileInfo; namespace Launchpad.Launcher.Handlers.Protocols.Manifest; /// /// Base underlying class for protocols using a manifest. /// public abstract class ManifestBasedProtocolHandler : PatchProtocolHandler { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// The localization catalog. /// private readonly ICatalog _localizationCatalog; /// /// The local version service. /// private readonly LocalVersionService _localVersionService; /// /// The file manifest handler. This allows access to the launcher and game file lists. /// private readonly ManifestHandler _fileManifestHandler; /// /// The directory helpers. /// private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The local version service. /// The manifest handler. /// The localization catalog. /// The configuration. /// The tagfile service. /// The directory helpers. protected ManifestBasedProtocolHandler ( ILogger log, LocalVersionService localVersionService, ManifestHandler fileManifestHandler, ICatalog localizationCatalog, ILaunchpadConfiguration configuration, TagfileService tagfileService, DirectoryHelpers directoryHelpers ) : base(configuration, tagfileService) { _log = log; _localVersionService = localVersionService; _fileManifestHandler = fileManifestHandler; _localizationCatalog = localizationCatalog; _directoryHelpers = directoryHelpers; } /// public override async Task InstallGameAsync() { // Create the .install file to mark that an installation has begun. // If it exists, do nothing. this.TagfileService.CreateGameTagfile(); // Make sure the manifest is up to date var refreshResult = await RefreshModuleManifestAsync(EModule.Game); if (!refreshResult.IsSuccess) { return refreshResult; } // Download Game var downloadResult = await DownloadModuleAsync(EModule.Game); if (!downloadResult.IsSuccess) { return downloadResult; } // Verify Game var verifyResult = await VerifyModuleAsync(EModule.Game); if (!verifyResult.IsSuccess) { return verifyResult; } return Result.FromSuccess(); } /// public override async Task UpdateModuleAsync(EModule module) { var manifestType = module switch { EModule.Launcher => EManifestType.Launchpad, EModule.Game => EManifestType.Game, _ => throw new ArgumentOutOfRangeException() }; var refreshResult = await RefreshModuleManifestAsync(module); if (!refreshResult.IsSuccess) { return refreshResult; } var getManifest = _fileManifestHandler.GetManifest(manifestType, false); if (!getManifest.IsSuccess) { return new NotFoundError ( $"No manifest was found when updating the module \"{module}\". The server files may be inaccessible" + $" or missing." ); } var manifest = getManifest.Entity; var getOldManifest = _fileManifestHandler.GetManifest(manifestType, true); // This dictionary holds a list of new entries and their equivalents from the old manifest. It is used // to determine whether or not a file is partial, or merely old yet smaller. var oldEntriesBeingReplaced = new Dictionary(); var filesRequiringUpdate = new List(); foreach (var fileEntry in manifest) { filesRequiringUpdate.Add(fileEntry); if (!getOldManifest.IsSuccess) { continue; } var oldManifest = getOldManifest.Entity; if (oldManifest.Contains(fileEntry)) { continue; } // See if there is an old entry which matches the new one. var matchingOldEntry = oldManifest.FirstOrDefault(oldEntry => oldEntry.RelativePath == fileEntry.RelativePath); if (matchingOldEntry != null) { oldEntriesBeingReplaced.Add(fileEntry, matchingOldEntry); } } try { var updatedFiles = 0; foreach (var fileEntry in filesRequiringUpdate) { ++updatedFiles; this.ModuleUpdateProgressArgs.IndicatorLabelMessage = GetUpdateIndicatorLabelMessage ( Path.GetFileName(fileEntry.RelativePath), updatedFiles, filesRequiringUpdate.Count ); OnModuleUpdateProgressChanged(); // If we're updating an existing file, make sure to let the downloader know var oldEntry = oldEntriesBeingReplaced.ContainsKey(fileEntry) ? oldEntriesBeingReplaced[fileEntry] : null; var downloadEntry = await DownloadManifestEntryAsync ( fileEntry, module, oldEntry ); if (!downloadEntry.IsSuccess) { return downloadEntry; } } } catch (IOException ioex) { return ioex; } return Result.FromSuccess(); } /// public override async Task VerifyModuleAsync(EModule module) { var getManifest = _fileManifestHandler.GetManifest((EManifestType)module, false); if (!getManifest.IsSuccess) { return new NotFoundError ( $"No manifest was found when verifying the module \"{module}\". The server files may be " + $"inaccessible or missing." ); } var manifest = getManifest.Entity; try { var brokenFiles = new List(); var verifiedFiles = 0; foreach (var fileEntry in manifest) { ++verifiedFiles; // Prepare the progress event contents this.ModuleVerifyProgressArgs.IndicatorLabelMessage = GetVerifyIndicatorLabelMessage ( Path.GetFileName(fileEntry.RelativePath), verifiedFiles, manifest.Count ); OnModuleVerifyProgressChanged(); if (fileEntry.IsFileIntegrityIntact(_directoryHelpers)) { continue; } brokenFiles.Add(fileEntry); _log.LogInformation("File \"{File}\" failed its integrity check and was queued for redownload", Path.GetFileName(fileEntry.RelativePath)); } var downloadedFiles = 0; foreach (var fileEntry in brokenFiles) { ++downloadedFiles; // Prepare the progress event contents this.ModuleDownloadProgressArgs.IndicatorLabelMessage = GetDownloadIndicatorLabelMessage ( Path.GetFileName(fileEntry.RelativePath), downloadedFiles, brokenFiles.Count ); OnModuleDownloadProgressChanged(); var retries = 0; while (true) { if (!fileEntry.IsFileIntegrityIntact(_directoryHelpers)) { _log.LogInformation ( "File \"{File}\" failed its integrity check again after redownloading. ({Retries} retries)", Path.GetFileName(fileEntry.RelativePath), retries ); var downloadEntry = await DownloadManifestEntryAsync(fileEntry, module); if (downloadEntry.IsSuccess) { break; } if (retries > this.Configuration.RemoteFileDownloadRetries) { return downloadEntry; } ++retries; } else { break; } } } } catch (IOException ioex) { _log.LogError(ioex, "Verification of {Module} files failed", module); return ioex; } return Result.FromSuccess(); } /// protected override async Task DownloadModuleAsync(EModule module) { var manifestType = module switch { EModule.Launcher => EManifestType.Launchpad, EModule.Game => EManifestType.Game, _ => throw new ArgumentOutOfRangeException() }; var refreshResult = await RefreshModuleManifestAsync(module); if (!refreshResult.IsSuccess) { return refreshResult; } var getManifest = _fileManifestHandler.GetManifest(manifestType, false); if (!getManifest.IsSuccess) { return new NotFoundError ( $"No manifest was found when installing the module \"{module}\". The server files may be " + $"inaccessible or missing." ); } var moduleManifest = getManifest.Entity; // In order to be able to resume downloading, we check if there is an entry // stored in the install cookie. // Attempt to parse whatever is inside the install cookie if (ManifestEntry.TryParse(await File.ReadAllTextAsync(_directoryHelpers.GetGameTagfilePath()), out var lastDownloadedFile)) { // Loop through all the entries in the manifest until we encounter // an entry which matches the one in the install cookie foreach (var fileEntry in moduleManifest) { if (lastDownloadedFile.Equals(fileEntry)) { // Skip all entries before the one we were last at. moduleManifest = moduleManifest.Skip(moduleManifest.ToList().IndexOf(fileEntry)).ToList(); } } } var downloadedFiles = 0; foreach (var fileEntry in moduleManifest) { ++downloadedFiles; // Prepare the progress event contents this.ModuleDownloadProgressArgs.IndicatorLabelMessage = GetDownloadIndicatorLabelMessage ( Path.GetFileName(fileEntry.RelativePath), downloadedFiles, moduleManifest.Count ); OnModuleDownloadProgressChanged(); var downloadResult = await DownloadManifestEntryAsync(fileEntry, module); if (!downloadResult.IsSuccess) { return downloadResult; } } return Result.FromSuccess(); } /// /// Reads the contents of a remote file as a string. /// /// The URL to read. /// Whether or not to use anonymous credentials. /// The contents of the file. protected abstract Task> ReadRemoteFileAsync(string url, bool useAnonymousLogin = false); /// /// Downloads the contents of the file at the specified url to the specified local path. /// This method supported resuming a partial file. /// /// The URL to download. /// The local path where the file should be saved. /// The expected total size of the file. /// The offset into the file where reading and writing should start. /// Whether or not to use anonymous credentials. /// A representing the asynchronous operation. protected abstract Task DownloadRemoteFileAsync ( string url, string localPath, long totalSize = 0, long contentOffset = 0, bool useAnonymousLogin = false ); /// public override async Task> IsModuleOutdatedAsync(EModule module) { try { Version local; Version remote; switch (module) { case EModule.Launcher: { local = _localVersionService.GetLocalLauncherVersion(); var getRemote = await GetRemoteLauncherVersionAsync(); if (!getRemote.IsSuccess) { return Result.FromError(getRemote); } remote = getRemote.Entity; break; } case EModule.Game: { local = _localVersionService.GetLocalGameVersion(); var getRemote = await GetRemoteGameVersionAsync(); if (!getRemote.IsSuccess) { return Result.FromError(getRemote); } remote = getRemote.Entity; break; } default: { throw new ArgumentOutOfRangeException(); } } return local < remote; } catch (WebException wex) { _log.LogWarning(wex, "Unable to determine whether or not the launcher was outdated"); return false; } } /// /// Downloads the file referred to by the specifed manifest entry. /// /// The entry to download. /// The module that the entry belongs to. /// The old entry, if one exists. /// /// Will be thrown if the passed to the function is not a valid value. /// /// /// Will be thrown if the local path set in the passed to the function is not a valid value. /// /// A representing the asynchronous operation. protected virtual async Task DownloadManifestEntryAsync ( ManifestEntry fileEntry, EModule module, ManifestEntry? oldFileEntry = null ) { this.ModuleDownloadProgressArgs.Module = module; string baseRemoteURL; string baseLocalPath; switch (module) { case EModule.Launcher: { baseRemoteURL = _directoryHelpers.GetRemoteLauncherBinariesPath(); baseLocalPath = _directoryHelpers.GetTempLauncherDownloadPath(); break; } case EModule.Game: { baseRemoteURL = _directoryHelpers.GetRemoteGamePath(); baseLocalPath = _directoryHelpers.GetLocalGameDirectory(); break; } default: { throw new ArgumentOutOfRangeException(); } } // Build the access strings var remoteURL = $"{baseRemoteURL}/{fileEntry.RelativePath}"; var localPath = Path.Combine(baseLocalPath, fileEntry.RelativePath); // Make sure we have a directory to put the file in if (!string.IsNullOrEmpty(localPath)) { var localPathParentDir = Path.GetDirectoryName(localPath); if (!Directory.Exists(localPathParentDir)) { var parentDir = Path.GetDirectoryName(localPath); if (!(parentDir is null)) { Directory.CreateDirectory(parentDir); } } } else { throw new ArgumentNullException(nameof(localPath), "The local path was null or empty."); } // Reset the cookie await File.WriteAllTextAsync(_directoryHelpers.GetGameTagfilePath(), string.Empty); // Write the current file progress to the install cookie await using (TextWriter textWriterProgress = new StreamWriter(_directoryHelpers.GetGameTagfilePath())) { textWriterProgress.WriteLine(fileEntry); await textWriterProgress.FlushAsync(); } // First, let's see if an old file exists, and is valid. if (oldFileEntry != null) { // Check if the file is present, the correct size, and the correct hash if (oldFileEntry.IsFileIntegrityIntact(_directoryHelpers)) { // If it is, delete it. File.Delete(localPath); } } if (File.Exists(localPath)) { var fileInfo = new FileInfo(localPath); if (fileInfo.Length != fileEntry.Size) { // If the file is partial, resume the download. if (fileInfo.Length < fileEntry.Size) { _log.LogInformation("Resuming interrupted file \"{File}\" at byte {Byte}", Path.GetFileNameWithoutExtension(fileEntry.RelativePath), fileInfo.Length); await DownloadRemoteFileAsync(remoteURL, localPath, fileEntry.Size, fileInfo.Length); } else { // If it's larger than expected, toss it in the bin and try again. _log.LogInformation("Restarting interrupted file \"{File}\": File bigger than expected", Path.GetFileNameWithoutExtension(fileEntry.RelativePath)); File.Delete(localPath); await DownloadRemoteFileAsync(remoteURL, localPath, fileEntry.Size); } } else { string localHash; await using (var fs = File.OpenRead(localPath)) { localHash = MD5Handler.GetStreamHash(fs); } if (localHash != fileEntry.Hash) { // If the hash doesn't match, toss it in the bin and try again. _log.LogInformation ( "Redownloading file \"{File}\": Hash sum mismatch. Local: {LocalHash}, Expected: {ExpectedHash}", Path.GetFileNameWithoutExtension(fileEntry.RelativePath), localHash, fileEntry.Hash ); File.Delete(localPath); await DownloadRemoteFileAsync(remoteURL, localPath, fileEntry.Size); } } } else { // No file, download it await DownloadRemoteFileAsync(remoteURL, localPath, fileEntry.Size); } // We've finished the download, so empty the cookie await File.WriteAllTextAsync(_directoryHelpers.GetGameTagfilePath(), string.Empty); return Result.FromSuccess(); } /// /// Determines whether or not the local copy of the manifest for the specifed module is outdated. /// /// The module. /// true if the manifest is outdated; otherwise, false. /// /// Will be thrown if the passed to the function is not a valid value. /// protected virtual async Task> IsModuleManifestOutdatedAsync(EModule module) { var manifestPath = _fileManifestHandler.GetManifestPath((EManifestType)module, false); if (!File.Exists(manifestPath)) { return true; } var getRemoteHash = await GetRemoteModuleManifestChecksumAsync(module); if (!getRemoteHash.IsSuccess) { return Result.FromError(getRemoteHash); } var remoteHash = getRemoteHash.Entity; await using var file = File.OpenRead(manifestPath); var localHash = MD5Handler.GetStreamHash(file); return remoteHash != localHash; } /// /// Gets the checksum of the manifest for the specified module. /// /// The module. /// The checksum. /// /// Will be thrown if the passed to the function is not a valid value. /// protected virtual async Task> GetRemoteModuleManifestChecksumAsync(EModule module) { var getRemoteChecksum = await ReadRemoteFileAsync ( _fileManifestHandler.GetManifestChecksumURL((EManifestType)module) ); if (!getRemoteChecksum.IsSuccess) { return Result.FromError(getRemoteChecksum); } var checksum = getRemoteChecksum.Entity.RemoveLineSeparatorsAndNulls(); return checksum.RemoveLineSeparatorsAndNulls(); } /// /// Refreshes the current manifest by redownloading it, if required. /// /// The module. /// /// Will be thrown if the passed to the function is not a valid value. /// /// A representing the asynchronous operation. protected virtual async Task RefreshModuleManifestAsync(EModule module) { var manifestExists = File.Exists(_fileManifestHandler.GetManifestPath((EManifestType)module, false)); if (manifestExists) { var getIsOutdated = await IsModuleManifestOutdatedAsync(module); if (!getIsOutdated.IsSuccess) { return Result.FromError(getIsOutdated); } if (getIsOutdated.Entity) { var downloadResult = await DownloadModuleManifestAsync(module); if (!downloadResult.IsSuccess) { return downloadResult; } } } else { var downloadResult = await DownloadModuleManifestAsync(module); if (!downloadResult.IsSuccess) { return downloadResult; } } // Now update the handler instance _fileManifestHandler.ReloadManifests((EManifestType)module); return Result.FromSuccess(); } /// /// Downloads the manifest for the specified module, and backs up the old copy of the manifest. /// /// The module. /// /// Will be thrown if the passed to the function is not a valid value. /// /// A representing the asynchronous operation. protected virtual async Task DownloadModuleManifestAsync(EModule module) { var remoteURL = _fileManifestHandler.GetManifestURL((EManifestType)module); var localPath = _fileManifestHandler.GetManifestPath((EManifestType)module, false); var oldLocalPath = _fileManifestHandler.GetManifestPath((EManifestType)module, true); try { // Delete the old backup (if there is one) if (File.Exists(oldLocalPath)) { File.Delete(oldLocalPath); } // Create a backup of the old manifest so that we can compare them when updating the game if (File.Exists(localPath)) { File.Move(localPath, oldLocalPath); } } catch (IOException ioex) { return ioex; } var downloadResult = await DownloadRemoteFileAsync(remoteURL, localPath); if (!downloadResult.IsSuccess) { return downloadResult; } return Result.FromSuccess(); } /// /// Gets the remote launcher version. /// /// The remote launcher version. protected virtual async Task> GetRemoteLauncherVersionAsync() { var remoteVersionPath = _directoryHelpers.GetRemoteLauncherVersionPath(); var readFile = await ReadRemoteFileAsync(remoteVersionPath); if (!readFile.IsSuccess) { return Result.FromError(readFile); } var remoteVersion = readFile.Entity.RemoveLineSeparatorsAndNulls(); if (Version.TryParse(remoteVersion, out var version) || version is null) { return new InvalidOperationError("Failed to parse the remote launcher version."); } return version; } /// /// Gets the remote game version. /// /// The remote game version. protected virtual async Task> GetRemoteGameVersionAsync() { var remoteVersionPath = $"{this.Configuration.RemoteAddress}/game/{this.Configuration.SystemTarget}/bin/GameVersion.txt"; var readFile = await ReadRemoteFileAsync(remoteVersionPath); if (!readFile.IsSuccess) { return Result.FromError(readFile); } var remoteVersion = readFile.Entity.RemoveLineSeparatorsAndNulls(); if (!Version.TryParse(remoteVersion, out var version)) { return new InvalidOperationError("Failed to parse the remote game version."); } return version; } /// /// Gets the indicator label message to display to the user while repairing. /// /// The indicator label message. /// Current filename. /// N files downloaded. /// Total files to download. protected virtual string GetVerifyIndicatorLabelMessage(string currentFilename, int verifiedFiles, int totalFiles) { return _localizationCatalog.GetString("Verifying file {0} ({1} of {2})", currentFilename, verifiedFiles, totalFiles); } /// /// Gets the indicator label message to display to the user while repairing. /// /// The indicator label message. /// Current filename. /// Number of files that have been updated. /// Total files that are to be updated. protected virtual string GetUpdateIndicatorLabelMessage(string currentFilename, int updatedFiles, int totalFiles) { return _localizationCatalog.GetString("Updating file {0} ({1} of {2})", currentFilename, updatedFiles, totalFiles); } /// /// Gets the indicator label message to display to the user while installing. /// /// The indicator label message. /// Current filename. /// N files downloaded. /// Total files to download. protected virtual string GetDownloadIndicatorLabelMessage(string currentFilename, int downloadedFiles, int totalFiles) { return _localizationCatalog.GetString("Downloading file {0} ({1} of {2})", currentFilename, downloadedFiles, totalFiles); } /// /// Gets the progress bar message. /// /// The progress bar message. /// Filename. /// Downloaded bytes. /// Total bytes. protected virtual string GetDownloadProgressBarMessage(string filename, long downloadedBytes, long totalBytes) { return _localizationCatalog.GetString("Downloading {0}: {1} out of {2}", filename, downloadedBytes, totalBytes); } } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/ModuleProgressChangedArgs.cs ================================================ // // ModuleProgressChangedArgs.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; namespace Launchpad.Launcher.Handlers.Protocols; /// /// Event arguments for changing modules. /// public sealed class ModuleProgressChangedArgs : EventArgs { /// /// Gets or sets the module that is being changed. /// public EModule Module { get; set; } /// /// Gets or sets the message that should be displayed on the progress bar. /// public string ProgressBarMessage { get; set; } /// /// Gets or sets the message that should be displayed on the indicator label. /// public string IndicatorLabelMessage { get; set; } /// /// Gets or sets the fractional progress (in the range 0 to 1). /// public double ProgressFraction { get; set; } /// /// Initializes a new instance of the class. /// /// The module. /// The progress bar message. /// The indicator label message. /// The progress fraction. public ModuleProgressChangedArgs(EModule module, string progressBarMessage, string indicatorLabelMessage, double progressFraction) { this.Module = module; this.ProgressBarMessage = progressBarMessage; this.IndicatorLabelMessage = indicatorLabelMessage; this.ProgressFraction = progressFraction; } } ================================================ FILE: Launchpad.Launcher/Handlers/Protocols/PatchProtocolHandler.cs ================================================ // // PatchProtocolHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Threading.Tasks; using Launchpad.Common.Enums; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Services; using Remora.Results; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; namespace Launchpad.Launcher.Handlers.Protocols; /// /// Patch protocol handler. /// This class is the base class for all file transfer protocols, providing /// a common framework for protocols to adhere to. It abstracts away the actual /// functionality, and reduces the communication with other parts of the launcher /// down to requests in, files out. /// /// By default, the patch protocol handler does not know anything specific about /// the actual workings of the protocol. /// public abstract class PatchProtocolHandler { /// /// Gets the configuration instance. /// protected ILaunchpadConfiguration Configuration { get; } /// /// Raised whenever the download progress of a module changes. /// public event EventHandler? ModuleDownloadProgressChanged; /// /// Raised whenever the verification progress of a module changes. /// public event EventHandler? ModuleVerifyProgressChanged; /// /// Raised whenever the update progress of a module changes. /// public event EventHandler? ModuleUpdateProgressChanged; /// /// Raised whenever the installation of a module finishes. /// public event EventHandler? ModuleInstallationFinished; /// /// Raised whenever the installation of a module fails. /// public event EventHandler? ModuleInstallationFailed; /// /// Gets the download progress arguments. /// protected ModuleProgressChangedArgs ModuleDownloadProgressArgs { get; } /// /// Gets the verification progress arguments. /// protected ModuleProgressChangedArgs ModuleVerifyProgressArgs { get; } /// /// Gets the update progress arguments. /// protected ModuleProgressChangedArgs ModuleUpdateProgressArgs { get; } /// /// Gets the tagfile service. /// protected TagfileService TagfileService { get; } /// /// Initializes a new instance of the class. /// /// The configuration. /// The tagfile service. protected PatchProtocolHandler ( ILaunchpadConfiguration configuration, TagfileService tagfileService ) { this.Configuration = configuration; this.TagfileService = tagfileService; this.ModuleDownloadProgressArgs = new ModuleProgressChangedArgs ( EModule.Game, string.Empty, string.Empty, 0 ); this.ModuleVerifyProgressArgs = new ModuleProgressChangedArgs ( EModule.Game, string.Empty, string.Empty, 0 ); this.ModuleUpdateProgressArgs = new ModuleProgressChangedArgs ( EModule.Game, string.Empty, string.Empty, 0 ); } /// /// Determines whether this instance can provide patches. Checks for an active connection to the /// patch provider (file server, distributed hash tables, hyperspace compression waves etc.) /// /// true if this instance can provide patches; otherwise, false. public abstract Task> CanPatchAsync(); /// /// Determines whether the protocol can provide patches and updates for the provided platform. /// /// The platform to check. /// true if the platform is available; otherwise, false. public abstract Task> IsPlatformAvailableAsync(ESystemTarget platform); /// /// Determines whether this protocol can provide access to a banner for the game. /// /// true if this instance can provide banner; otherwise, false. public abstract Task> CanProvideBannerAsync(); /// /// Gets the changelog. /// /// The changelog. public abstract Task> GetChangelogMarkupAsync(); /// /// Gets the banner. /// /// The banner. public abstract Task>> GetBannerAsync(); /// /// Determines whether or not the specified module is outdated. /// /// The module. /// true if the module is outdated; otherwise, false. public abstract Task> IsModuleOutdatedAsync(EModule module); /// /// Installs the game. /// /// A representing the asynchronous operation. public virtual async Task InstallGameAsync() { try { // Create the .install file to mark that an installation has begun. // If it exists, do nothing. this.TagfileService.CreateGameTagfile(); // Download Game var downloadResult = await DownloadModuleAsync(EModule.Game); if (!downloadResult.IsSuccess) { return downloadResult; } // Verify Game var verifyResult = await VerifyModuleAsync(EModule.Game); if (!verifyResult.IsSuccess) { return verifyResult; } } catch (IOException ioex) { return ioex; } return Result.FromSuccess(); } /// /// Downloads the latest version of the specified module. /// /// The module. /// A representing the asynchronous operation. protected abstract Task DownloadModuleAsync(EModule module); /// /// Updates the specified module to the latest version. /// /// The module to update. /// A representing the asynchronous operation. public abstract Task UpdateModuleAsync(EModule module); /// /// Verifies and repairs the files of the specified module. /// /// The module. /// A representing the asynchronous operation. public abstract Task VerifyModuleAsync(EModule module); /// /// Invoke the event. /// protected void OnModuleDownloadProgressChanged() { this.ModuleDownloadProgressChanged?.Invoke(this, this.ModuleDownloadProgressArgs); } /// /// Invoke the event. /// protected void OnModuleVerifyProgressChanged() { this.ModuleVerifyProgressChanged?.Invoke(this, this.ModuleVerifyProgressArgs); } /// /// Invoke the event. /// protected void OnModuleUpdateProgressChanged() { this.ModuleUpdateProgressChanged?.Invoke(this, this.ModuleUpdateProgressArgs); } /// /// Invoke the event. /// /// The module that finished. protected void OnModuleInstallationFinished(EModule module) { this.ModuleInstallationFinished?.Invoke(this, module); } /// /// Invoke the event. /// /// The module that failed. protected void OnModuleInstallationFailed(EModule module) { this.ModuleInstallationFailed?.Invoke(this, module); } } ================================================ FILE: Launchpad.Launcher/Interface/Launchpad.glade ================================================ True False gtk-convert True False gtk-refresh 745 415 False Launchpad False 745 415 True False vertical True False True False True False _Tools True True False Repair True False image1 False Reinstall True False image2 False True False _Help True True False gtk-about True False True True False True 0 True False 6 6 6 True False 310 True False True True in 310 True True False word False False False True 0 True False True False gtk-missing-image True True 1 True True 1 True False 6 6 6 6 True False 6 True False True False True middle True True 0 100 True False button True True True False True end 1 False True end 2 True False 12 6 6 True False start label False True end 4 False False center-on-parent dialog MainWindow MainWindow Launchpad 2.x Jarl Gullberg 2018 https://github.com/Nihlus/Launchpad Launchpad on Github Jarl Gullberg aaronnsbe Alyona Druzhinina Andra ArthurR Austin McGowan bluewinter Bruno Briante Clash Royal Deventico Dremski Henrique Cezar (drakkoslayer) Henrique Cezar (killchainer) Isaideureka Josef Vyhnánek jznsamuel Krystian Pozaroszczyk LavransB LEE Matthew lennert vanriel LesserCure Marcelo Coutinho Md Rokonuazzaman Rifat melonmanchan Merry Grim montlikadani NeHoMaR Nick Jordan Onur Besli Project Pairidaeza Radosłav Waśko Ramon Marrero rayts5 rosatravels Ryal SteONeill Sturalke Team TriFormine Timberwolf581 Viktor Zoutman vlf xtapolapaketl Yuri Belleri zaher99 Zectric F. Александр Минкин Калоян Георгиев مجد حبيب أسعد image-missing gpl-3-0 False vertical 2 False end False False 0 ================================================ FILE: Launchpad.Launcher/Interface/MainWindow.UI.cs ================================================ // // MainWindow.UI.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Reflection; using Gtk; using Launchpad.Launcher.Utility; using Microsoft.Extensions.DependencyInjection; using UIElement = Gtk.Builder.ObjectAttribute; // ReSharper disable UnassignedReadonlyField #pragma warning disable 169 #pragma warning disable 649 #pragma warning disable 1591 #pragma warning disable SA1134 // Each attribute should be placed on its own line of code #pragma warning disable SA1214 // Readonly fields should appear before non-readonly fields namespace Launchpad.Launcher.Interface; /// /// Interface elements for the widget. /// public partial class MainWindow { [UIElement("MenuRepairItem")] private readonly ImageMenuItem _menuRepairItem = null!; [UIElement("MenuReinstallItem")] private readonly ImageMenuItem _menuReinstallItem = null!; [UIElement("MenuAboutItem")] private readonly ImageMenuItem _menuAboutItem = null!; [UIElement("ChangelogTextView")] private readonly TextView _changelogTextView = null!; [UIElement("BannerImage")] private readonly Image _bannerImage = null!; [UIElement("StatusLabel")] private readonly Label _statusLabel = null!; [UIElement("ProgressBar")] private readonly ProgressBar _mainProgressBar = null!; [UIElement("MainButton")] private readonly Button _mainButton = null!; /// /// Creates a new instance of the class, loading its interface definition from file. /// /// The services. /// An instance of the main window widget. public static MainWindow Create(IServiceProvider services) { using var builder = new Builder ( Assembly.GetExecutingAssembly(), "Launchpad.Launcher.Interface.Launchpad.glade", null ); var window = ActivatorUtilities.CreateInstance ( services, builder, builder.GetObject("MainWindow").Handle ); window.Icon = ResourceManager.ApplicationIcon; return window; } /// /// Binds UI-related events. /// private void BindUIEvents() { this.DeleteEvent += OnDeleteEvent; _menuReinstallItem.Activated += OnReinstallGameActionActivated; _menuRepairItem.Activated += OnMenuRepairItemActivated; _menuAboutItem.Activated += OnMenuAboutItemActivated; _mainButton.Clicked += OnMainButtonClicked; } /// /// Displays the about window to the user. /// /// The sending object. /// The event args. private void OnMenuAboutItemActivated(object? sender, EventArgs e) { using var builder = new Builder(Assembly.GetExecutingAssembly(), "Launchpad.Launcher.Interface.Launchpad.glade", null); using var dialog = new AboutDialog(builder.GetObject("MainAboutDialog").Handle); dialog.Icon = ResourceManager.ApplicationIcon; dialog.Logo = ResourceManager.ApplicationIcon; dialog.Run(); } /// /// Exits the application properly when the window is deleted. /// /// Sender. /// The alpha component. private static void OnDeleteEvent(object? sender, DeleteEventArgs a) { Application.Quit(); a.RetVal = true; } } ================================================ FILE: Launchpad.Launcher/Interface/MainWindow.cs ================================================ // // MainWindow.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Text.RegularExpressions; using System.Threading.Tasks; using Gdk; using GLib; using Gtk; using Launchpad.Common; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Handlers; using Launchpad.Launcher.Handlers.Protocols; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using Launchpad.Launcher.Utility.Enums; using Microsoft.Extensions.Logging; using NGettext; using Remora.Results; using SixLabors.ImageSharp.Processing; using Application = Gtk.Application; using Process = System.Diagnostics.Process; namespace Launchpad.Launcher.Interface; /// /// The main UI class for Launchpad. This class acts as a manager for all threaded /// actions, such as installing, updating or repairing the game. /// public sealed partial class MainWindow : Gtk.Window { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// The local version service. /// private readonly LocalVersionService _localVersionService; /// /// The configuration instance reference. /// private readonly ILaunchpadConfiguration _configuration; /// /// The checks handler reference. /// private readonly ChecksHandler _checks; /// /// The launcher handler. Allows updating the launcher and loading the changelog. /// private readonly LauncherHandler _launcher; /// /// The game handler. Allows updating, installing and repairing the game. /// private readonly GameHandler _game; /// /// The tag file service. /// private readonly TagfileService _tagfileService; /// /// The patch protocol. /// private readonly PatchProtocolHandler _patch; /// /// The current mode that the launcher is in. Determines what the primary button does when pressed. /// private ELauncherMode _mode = ELauncherMode.Inactive; /// /// The localization catalog. /// private static readonly ICatalog LocalizationCatalog = new Catalog("Launchpad", "./Content/locale"); /// /// Whether or not the launcher UI has been initialized. /// private bool _isInitialized; /// /// Initializes a new instance of the class. /// /// The UI builder. /// The native handle of the window. /// The logging instance. /// The local version service. /// The checks handler. /// The launcher handler. /// The game handler. /// The tagfile service. /// The patch protocol. /// The configuration. public MainWindow ( Builder builder, IntPtr handle, ILogger log, LocalVersionService localVersionService, ChecksHandler checks, LauncherHandler launcher, GameHandler game, TagfileService tagfileService, PatchProtocolHandler patch, ILaunchpadConfiguration configuration ) : base(handle) { _log = log; _localVersionService = localVersionService; _checks = checks; _launcher = launcher; _game = game; _tagfileService = tagfileService; _patch = patch; _configuration = configuration; builder.Autoconnect(this); BindUIEvents(); // Bind the handler events _game.ProgressChanged += OnModuleInstallationProgressChanged; _game.DownloadFinished += OnGameDownloadFinished; _game.DownloadFailed += OnGameDownloadFailed; _game.LaunchFailed += OnGameLaunchFailed; _game.GameExited += OnGameExited; _launcher.LauncherDownloadProgressChanged += OnModuleInstallationProgressChanged; _launcher.LauncherDownloadFinished += OnLauncherDownloadFinished; // Set the initial launcher mode SetLauncherMode(ELauncherMode.Inactive, false); // Set the window title this.Title = LocalizationCatalog.GetString("Launchpad - {0}", _configuration.GameName); _statusLabel.Text = LocalizationCatalog.GetString("Idle"); } /// /// Initializes the UI of the launcher, performing varying checks against the patching server. /// /// A task that must be awaited. public async Task InitializeAsync() { if (_isInitialized) { return Result.FromSuccess(); } // First of all, check if we can connect to the patching service. var getCanPatch = await _checks.CanPatchAsync(); if (!getCanPatch.IsSuccess) { return Result.FromError(getCanPatch); } if (!getCanPatch.Entity) { using (var dialog = new MessageDialog ( this, DialogFlags.Modal, MessageType.Warning, ButtonsType.Ok, LocalizationCatalog.GetString("Failed to connect to the patch server. Please check your settings.") )) { dialog.Run(); } _statusLabel.Text = LocalizationCatalog.GetString("Could not connect to server."); _menuRepairItem.Sensitive = false; } else { await LoadBannerAsync(); await LoadChangelogAsync(); // If we can connect, proceed with the rest of our checks. if (_checks.IsInitialStartup()) { DisplayInitialStartupDialog(); } // If the launcher does not need an update at this point, we can continue checks for the game var getIsLauncherOutdated = await _checks.IsLauncherOutdatedAsync(); if (!getIsLauncherOutdated.IsSuccess) { return Result.FromError(getIsLauncherOutdated); } if (!getIsLauncherOutdated.Entity) { var getIsPlatformAvailable = await _checks.IsPlatformAvailableAsync(_configuration.SystemTarget); if (!getIsPlatformAvailable.IsSuccess) { return Result.FromError(getIsPlatformAvailable); } if (!getIsPlatformAvailable.Entity) { _log.LogInformation ( "The server does not provide files for platform \"{Platform}\". A .provides file must be present in the platforms' root directory", PlatformHelpers.GetCurrentPlatform() ); SetLauncherMode(ELauncherMode.Inactive, false); } else { if (!_checks.IsGameInstalled()) { // If the game is not installed, offer to install it _log.LogInformation("The game has not yet been installed"); SetLauncherMode(ELauncherMode.Install, false); // Since the game has not yet been installed, disallow manual repairs _menuRepairItem.Sensitive = false; // and reinstalls _menuReinstallItem.Sensitive = false; } else { // If the game is installed (which it should be at this point), check if it needs to be updated var getIsGameOutdated = await _checks.IsGameOutdatedAsync(); if (!getIsGameOutdated.IsSuccess) { return Result.FromError(getIsGameOutdated); } if (getIsGameOutdated.Entity) { // If it does, offer to update it _log.LogInformation("The game is outdated"); SetLauncherMode(ELauncherMode.Update, false); } else { // All checks passed, so we can offer to launch the game. _log.LogInformation("All checks passed. Game can be launched"); SetLauncherMode(ELauncherMode.Launch, false); } } } } else { // The launcher was outdated. _log.LogInformation("The launcher is outdated. \n\tLocal version: {LocalVersion}", _localVersionService.GetLocalLauncherVersion()); SetLauncherMode(ELauncherMode.Update, false); } } _isInitialized = true; return Result.FromSuccess(); } private async Task LoadChangelogAsync() { var getMarkup = await _patch.GetChangelogMarkupAsync(); if (!getMarkup.IsSuccess) { return Result.FromError(getMarkup); } var markup = getMarkup.Entity; // Preprocess dot lists var dotRegex = new Regex("(?<=^\\s+)\\*", RegexOptions.Multiline); markup = dotRegex.Replace(markup, "•"); // Preprocess line breaks var regex = new Regex("(? LoadBannerAsync() { // Load the game banner (if there is one) var getCanProvideBanner = await _patch.CanProvideBannerAsync(); if (!getCanProvideBanner.IsSuccess) { return Result.FromError(getCanProvideBanner); } if (!getCanProvideBanner.Entity) { return Result.FromSuccess(); } // Fetch the banner from the server var getBannerImage = await _patch.GetBannerAsync(); if (!getBannerImage.IsSuccess) { return Result.FromError(getBannerImage); } var bannerImage = getBannerImage.Entity; bannerImage.Mutate(i => i.Resize(_bannerImage.AllocatedWidth, 0)); // RGBA32 is a 32-bit number, so we'll use a sizeof here var buffer = new byte[bannerImage.Width * bannerImage.Height * sizeof(int)]; bannerImage.CopyPixelDataTo(buffer); // Load the image into a pixel buffer _bannerImage.Pixbuf = new Pixbuf ( Bytes.NewStatic(buffer), Colorspace.Rgb, true, 8, bannerImage.Width, bannerImage.Height, 4 * bannerImage.Width ); return Result.FromSuccess(); } /// /// Sets the launcher mode and updates UI elements to match. /// /// The new mode. /// If set to true, the selected mode is in progress. /// /// Will be thrown if the passed to the function is not a valid value. /// private void SetLauncherMode(ELauncherMode newMode, bool isInProgress) { // Set the global launcher mode _mode = newMode; // Set the UI elements to match switch (newMode) { case ELauncherMode.Install: { if (isInProgress) { _mainButton.Sensitive = false; _mainButton.Label = LocalizationCatalog.GetString("Installing..."); } else { _mainButton.Sensitive = true; _mainButton.Label = LocalizationCatalog.GetString("Install"); } break; } case ELauncherMode.Update: { if (isInProgress) { _mainButton.Sensitive = false; _mainButton.Label = LocalizationCatalog.GetString("Updating..."); } else { _mainButton.Sensitive = true; _mainButton.Label = LocalizationCatalog.GetString("Update"); } break; } case ELauncherMode.Repair: { if (isInProgress) { _mainButton.Sensitive = false; _mainButton.Label = LocalizationCatalog.GetString("Repairing..."); } else { _mainButton.Sensitive = true; _mainButton.Label = LocalizationCatalog.GetString("Repair"); } break; } case ELauncherMode.Launch: { if (isInProgress) { _mainButton.Sensitive = false; _mainButton.Label = LocalizationCatalog.GetString("Launching..."); } else { _mainButton.Sensitive = true; _mainButton.Label = LocalizationCatalog.GetString("Launch"); } break; } case ELauncherMode.Inactive: { _menuRepairItem.Sensitive = false; _mainButton.Sensitive = false; _mainButton.Label = LocalizationCatalog.GetString("Inactive"); break; } default: { throw new ArgumentOutOfRangeException(nameof(newMode), "An invalid launcher mode was passed to SetLauncherMode."); } } if (isInProgress) { _menuRepairItem.Sensitive = false; _menuReinstallItem.Sensitive = false; } else { _menuRepairItem.Sensitive = true; _menuReinstallItem.Sensitive = true; } } /// /// Runs a game repair, no matter what the state the installation is in. /// /// Sender. /// E. private void OnMenuRepairItemActivated(object? sender, EventArgs e) { SetLauncherMode(ELauncherMode.Repair, false); // Simulate a button press from the user. _mainButton.Click(); } /// /// Handles switching between different functionality depending on what is visible on the button to the user, /// such as installing, updating, repairing, and launching. /// /// The sender. /// Empty arguments. private async void OnMainButtonClicked(object? sender, EventArgs e) { // Drop out if the current platform isn't available on the server var getIsPlatformAvailable = await _checks.IsPlatformAvailableAsync(_configuration.SystemTarget); if (!getIsPlatformAvailable.IsSuccess) { _log.LogError("Failed to determine if the target platform is available: {Message}", getIsPlatformAvailable.Error.Message); return; } if (!getIsPlatformAvailable.Entity) { _statusLabel.Text = LocalizationCatalog.GetString("The server does not provide the game for the selected platform."); _mainProgressBar.Text = string.Empty; _log.LogInformation ( "The server does not provide files for platform \"{Platform}\". A .provides file must be present in the platforms' root directory", PlatformHelpers.GetCurrentPlatform() ); SetLauncherMode(ELauncherMode.Inactive, false); return; } // else, run the relevant function switch (_mode) { case ELauncherMode.Repair: { // Repair the game asynchronously SetLauncherMode(ELauncherMode.Repair, true); await _game.VerifyGameAsync(); break; } case ELauncherMode.Install: { // Install the game asynchronously SetLauncherMode(ELauncherMode.Install, true); await _game.InstallGameAsync(); break; } case ELauncherMode.Update: { var getIsLauncherUpdated = await _checks.IsLauncherOutdatedAsync(); if (!getIsLauncherUpdated.IsSuccess) { _log.LogError("Failed to determine if the launcher is out of date: {Message}", getIsLauncherUpdated.Error.Message); return; } if (getIsLauncherUpdated.Entity) { // Update the launcher asynchronously SetLauncherMode(ELauncherMode.Update, true); await _launcher.UpdateLauncherAsync(); } else { // Update the game asynchronously SetLauncherMode(ELauncherMode.Update, true); await _game.UpdateGameAsync(); } break; } case ELauncherMode.Launch: { _statusLabel.Text = LocalizationCatalog.GetString("Idle"); _mainProgressBar.Text = string.Empty; SetLauncherMode(ELauncherMode.Launch, true); _game.LaunchGame(); break; } default: { _log.LogWarning("The main button was pressed with an invalid active mode. No functionality has been defined for this mode"); break; } } } /// /// Starts the launcher update process when its files have finished downloading. /// private void OnLauncherDownloadFinished(object? sender, EventArgs e) { Application.Invoke((_, _) => { var script = _launcher.CreateUpdateScript(); Process.Start(script); Application.Quit(); }); } /// /// Warns the user when the game fails to launch, and offers to attempt a repair. /// /// The sender. /// Empty event args. private void OnGameLaunchFailed(object? sender, EventArgs e) { Application.Invoke((_, _) => { _statusLabel.Text = LocalizationCatalog.GetString("The game failed to launch. Try repairing the installation."); _mainProgressBar.Text = string.Empty; SetLauncherMode(ELauncherMode.Repair, false); }); } /// /// Provides alternatives when the game fails to download, either through an update or through an installation. /// /// The sender. /// Contains the type of failure that occurred. private void OnGameDownloadFailed(object? sender, EventArgs e) { Application.Invoke((_, _) => { switch (_mode) { case ELauncherMode.Install: case ELauncherMode.Update: case ELauncherMode.Repair: { // Set the mode to the same as it was, but no longer in progress. // The modes which fall to this case are all capable of repairing an incomplete or // broken install on their own. SetLauncherMode(_mode, false); break; } default: { // Other cases (such as Launch) will go to the default mode of Repair. SetLauncherMode(ELauncherMode.Repair, false); break; } } }); } /// /// Updates the progress bar and progress label during installations, repairs and updates. /// /// The sender. /// Contains the progress values and current filename. private void OnModuleInstallationProgressChanged(object? sender, ModuleProgressChangedArgs e) { Application.Invoke((_, _) => { _mainProgressBar.Text = e.ProgressBarMessage; _statusLabel.Text = e.IndicatorLabelMessage; _mainProgressBar.Fraction = e.ProgressFraction; }); } /// /// Allows the user to launch or repair the game once installation finishes. /// /// The sender. /// Contains the result of the download. private void OnGameDownloadFinished(object? sender, EventArgs e) { Application.Invoke((_, _) => { _statusLabel.Text = LocalizationCatalog.GetString("Idle"); switch (_mode) { case ELauncherMode.Install: { _mainProgressBar.Text = LocalizationCatalog.GetString("Installation finished"); break; } case ELauncherMode.Update: { _mainProgressBar.Text = LocalizationCatalog.GetString("Update finished"); break; } case ELauncherMode.Repair: { _mainProgressBar.Text = LocalizationCatalog.GetString("Repair finished"); break; } default: { _mainProgressBar.Text = string.Empty; break; } } SetLauncherMode(ELauncherMode.Launch, false); }); } /// /// Handles offering of repairing the game to the user should the game exit /// with a bad exit code. /// private void OnGameExited(object? sender, int exitCode) { Application.Invoke((_, _) => { if (exitCode != 0) { using var crashDialog = new MessageDialog ( this, DialogFlags.Modal, MessageType.Question, ButtonsType.YesNo, LocalizationCatalog.GetString ( "Whoops! The game appears to have crashed.\n" + "Would you like the launcher to verify the installation?" ) ); if (crashDialog.Run() == (int)ResponseType.Yes) { SetLauncherMode(ELauncherMode.Repair, false); _mainButton.Click(); } else { SetLauncherMode(ELauncherMode.Launch, false); } } else { SetLauncherMode(ELauncherMode.Launch, false); } }); } /// /// Handles starting of a reinstallation procedure as requested by the user. /// private async void OnReinstallGameActionActivated(object? sender, EventArgs e) { using var reinstallConfirmDialog = new MessageDialog ( this, DialogFlags.Modal, MessageType.Question, ButtonsType.YesNo, LocalizationCatalog.GetString ( "Reinstalling the game will delete all local files and download the entire game again.\n" + "Are you sure you want to reinstall the game?" ) ); if (reinstallConfirmDialog.Run() != (int)ResponseType.Yes) { return; } SetLauncherMode(ELauncherMode.Install, true); await _game.ReinstallGameAsync(); } } ================================================ FILE: Launchpad.Launcher/Launchpad.Launcher.csproj ================================================  Exe Launchpad 3.0.0 An open-source launcher for your games. Jarl Gullberg;jax PreserveNewest false PreserveNewest PreserveNewest false PreserveNewest false PreserveNewest ================================================ FILE: Launchpad.Launcher/Launchpad.Launcher.csproj.DotSettings ================================================  True ================================================ FILE: Launchpad.Launcher/Program.cs ================================================ // // Program.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Xml; using GLib; using Launchpad.Common.Handlers.Manifest; using Launchpad.Launcher.Configuration; using Launchpad.Launcher.Handlers; using Launchpad.Launcher.Handlers.Protocols; using Launchpad.Launcher.Handlers.Protocols.Manifest; using Launchpad.Launcher.Interface; using Launchpad.Launcher.Services; using Launchpad.Launcher.Utility; using log4net; using log4net.Config; using log4net.Repository.Hierarchy; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using NGettext; using Application = Gtk.Application; using Task = System.Threading.Tasks.Task; namespace Launchpad.Launcher; /// /// The main program class. /// public class Program { /// /// Holds the logging instance for this class. /// private static ILogger? Log; /// /// The main entry point for the application. /// [STAThread] private static async Task Main(string[] args) { ExceptionManager.UnhandledException += OnUnhandledGLibException; Application.Init(); if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { Environment.SetEnvironmentVariable("GSETTINGS_SCHEMA_DIR", "share\\glib-2.0\\schemas\\"); } const string configurationName = "Launchpad.Launcher.log4net.config"; var logConfig = new XmlDocument(); await using (var configStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(configurationName)) { if (configStream is null) { throw new InvalidOperationException("The log4net configuration stream could not be found."); } logConfig.Load(configStream); } var repo = LogManager.CreateRepository(Assembly.GetEntryAssembly(), typeof(Hierarchy)); XmlConfigurator.Configure(repo, logConfig["log4net"]); var host = CreateHostBuilder(args).Build(); Log = host.Services.GetRequiredService>(); var app = host.Services.GetRequiredService(); app.Start(); Application.Run(); } /// /// Passes any unhandled exceptions from the GTK UI to the generic handler. /// /// The event object containing the information about the exception. private static void OnUnhandledGLibException(UnhandledExceptionArgs args) { Log.LogError((Exception)args.ExceptionObject, "Unhandled GLib exception"); } private static IHostBuilder CreateHostBuilder(string[] args) => new HostBuilder() .ConfigureAppConfiguration((_, config) => { config.SetBasePath(Path.Combine(Directory.GetCurrentDirectory(), "config")); config.AddJsonFile("appsettings.json"); }) .ConfigureServices((_, services) => { services .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton ( s => { var configuration = s.GetRequiredService(); return new ManifestHandler ( DirectoryHelpers.GetLocalLauncherDirectory(), configuration.RemoteAddress, configuration.SystemTarget ); } ) .AddSingleton(s => s.GetRequiredService().Configuration) .AddSingleton(_ => new Catalog("Launchpad", "./Content/locale")) .AddSingleton ( s => { var configuration = s.GetRequiredService(); var remoteAddress = configuration.RemoteAddress; switch (remoteAddress.Scheme.ToLowerInvariant()) { case "ftp": { return s.GetRequiredService(); } case "http": case "https": { return s.GetRequiredService(); } default: { throw new ArgumentException ( $"No compatible protocol handler found for a URI of the form " + $"\"{remoteAddress}\"." ); } } } ) .AddSingleton(new Application("net.Launchpad.Launchpad", ApplicationFlags.None)) .AddSingleton(); services .AddTransient(MainWindow.Create); }) .ConfigureLogging(l => { l.ClearProviders(); l.AddLog4Net(); }); } ================================================ FILE: Launchpad.Launcher/Resources/launchpad_update.bat ================================================ :: :: launchpad_update.bat :: :: Author: :: Jarl Gullberg :: :: Copyright (c) 2016 Jarl Gullberg :: :: This program is free software: you can redistribute it and/or modify :: it under the terms of the GNU General Public License as published by :: the Free Software Foundation, either version 3 of the License, or :: (at your option) any later version. :: :: This program is distributed in the hope that it will be useful, :: but WITHOUT ANY WARRANTY; without even the implied warranty of :: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the :: GNU General Public License for more details. :: :: You should have received a copy of the GNU General Public License :: along with this program. If not, see . @echo off timeout 3 && xcopy /e /s /y "%temp%\launchpad\launcher" "%localDir%" && rmdir /s /q "%temp%\launchpad" start "%launchpadExecutable%" ================================================ FILE: Launchpad.Launcher/Resources/launchpad_update.sh ================================================ #!/bin/bash # launchpad_update.sh # # Author: # Jarl Gullberg # # Copyright (c) 2016 Jarl Gullberg # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Wait for the old launcher to close sleep 5 # Copy the downloaded binaries and clean up cp -rf "%temp%/launchpad/launcher/"* "%localDir%" rm -rf "%temp%/launchpad" # Go to the installation directory cd "%localDir%" # Start the launcher detached from this process chmod +x %launchpadExecutable% nohup ./%launchpadExecutable% & ================================================ FILE: Launchpad.Launcher/Services/GameArgumentService.cs ================================================ // // GameArgumentService.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.Collections.Generic; using System.IO; using System.Linq; using Launchpad.Launcher.Utility; namespace Launchpad.Launcher.Services; /// /// A service providing access to arguments that should be passed to the game. /// public class GameArgumentService { private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The directory helpers. public GameArgumentService(DirectoryHelpers directoryHelpers) { _directoryHelpers = directoryHelpers; InitializeGameArgumentsFile(); } /// /// Creates a configuration file where the user or developer can add runtime switches for the installed game. /// If the file already exists, this method does nothing. /// private void InitializeGameArgumentsFile() { // Initialize the game arguments file, if needed if (File.Exists(_directoryHelpers.GetGameArgumentsPath())) { return; } using var fs = File.Create(_directoryHelpers.GetGameArgumentsPath()); using var sw = new StreamWriter(fs); sw.WriteLine("# This file contains all the arguments passed to the game executable on startup."); sw.WriteLine("# Lines beginning with a hash character (#) are ignored and considered comments."); sw.WriteLine("# Everything else is passed line-by-line to the game executable on startup."); sw.WriteLine("# Multiple arguments can be on the same line in this file."); sw.WriteLine("# Each line will have a space appended at the end when passed to the game executable."); sw.WriteLine(string.Empty); } /// /// Gets a list of command-line arguments that are passed to the game when it starts. /// /// The arguments. public IEnumerable GetGameArguments() { if (!File.Exists(_directoryHelpers.GetGameArgumentsPath())) { return new List(); } var gameArguments = new List(File.ReadAllLines(_directoryHelpers.GetGameArgumentsPath())); // Return the list of lines in the argument file, except the ones starting with a hash or empty lines return gameArguments.Where(s => !s.StartsWith("#") && !string.IsNullOrEmpty(s)).ToList(); } } ================================================ FILE: Launchpad.Launcher/Services/LocalVersionService.cs ================================================ // // LocalVersionService.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using Launchpad.Launcher.Utility; using Microsoft.Extensions.Logging; namespace Launchpad.Launcher.Services; /// /// A service which handles local version discovery. /// public class LocalVersionService { /// /// Logger instance for this class. /// private readonly ILogger _log; /// /// The directory helpers. /// private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The logging instance. /// The directory helpers. public LocalVersionService(ILogger log, DirectoryHelpers directoryHelpers) { _log = log; _directoryHelpers = directoryHelpers; } /// /// Gets the local game version. /// /// The local game version. public Version GetLocalGameVersion() { try { var rawGameVersion = File.ReadAllText(_directoryHelpers.GetLocalGameVersionPath()); if (Version.TryParse(rawGameVersion, out var gameVersion)) { return gameVersion; } _log.LogWarning("Could not parse local game version. Contents: {Contents}", rawGameVersion); return new Version("0.0.0"); } catch (IOException ioex) { _log.LogWarning(ioex, "Could not read local game version"); return new Version("0.0.0"); } } /// /// Gets the local launcher version. /// /// The version. public Version GetLocalLauncherVersion() { return GetType().Assembly.GetName().Version ?? new Version("0.0.0"); } } ================================================ FILE: Launchpad.Launcher/Services/TagfileService.cs ================================================ // // TagfileService.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.IO; using Launchpad.Launcher.Utility; namespace Launchpad.Launcher.Services; /// /// Service for creating and managing tagfiles. /// public class TagfileService { private readonly DirectoryHelpers _directoryHelpers; /// /// Initializes a new instance of the class. /// /// The directory helpers. public TagfileService(DirectoryHelpers directoryHelpers) { _directoryHelpers = directoryHelpers; } /// /// Creates the launcher cookie. /// public void CreateLauncherTagfile() { var launcherTagfilePath = _directoryHelpers.GetLauncherTagfilePath(); var doesCookieExist = File.Exists(launcherTagfilePath); if (!doesCookieExist) { File.Create(launcherTagfilePath); } } /// /// Creates the install cookie. /// public void CreateGameTagfile() { var gameTagfilePath = _directoryHelpers.GetGameTagfilePath(); var doesCookieExist = File.Exists(gameTagfilePath); if (!doesCookieExist) { File.Create(gameTagfilePath).Close(); } } } ================================================ FILE: Launchpad.Launcher/Startup.cs ================================================ // // Startup.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using GLib; using Gtk; using Launchpad.Launcher.Interface; using Application = Gtk.Application; using Task = System.Threading.Tasks.Task; namespace Launchpad.Launcher; /// /// Represents startup procedures for the application. /// public class Startup { private readonly Application _app; private readonly MainWindow _mainWindow; /// /// Initializes a new instance of the class. /// /// The application information. /// The main application window. public Startup(Application app, MainWindow mainWindow) { _app = app; _mainWindow = mainWindow; } /// /// Starts the application. /// public void Start() { _app.Register(Cancellable.Current); _app.AddWindow(_mainWindow); _mainWindow.Show(); Idle.Add ( () => { async void Initialize() => await InitializeAsync(); Initialize(); return false; } ); _mainWindow.DeleteEvent += DeletedEvent; } /// /// Asynchronously initializes the application. /// /// A representing the asynchronous operation. public async Task InitializeAsync() { await _mainWindow.InitializeAsync(); } private void DeletedEvent(object o, DeleteEventArgs args) { Application.Quit(); } } ================================================ FILE: Launchpad.Launcher/Utility/DirectoryHelpers.cs ================================================ // // DirectoryHelpers.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Reflection; using Launchpad.Launcher.Configuration; namespace Launchpad.Launcher.Utility; /// /// Helper methods for common paths and directories. /// public class DirectoryHelpers { private const string ConfigurationFolderName = "Config"; private const string ConfigurationFileName = "LauncherConfig"; private const string GameArgumentsFileName = "GameArguments"; private readonly ILaunchpadConfiguration _configuration; /// /// Initializes a new instance of the class. /// /// The configuration instance. public DirectoryHelpers(ILaunchpadConfiguration configuration) { _configuration = configuration; } /// /// Gets the expected path to the config file on disk. /// /// The config path. public static string GetConfigPath() { return Path.Combine(GetConfigDirectory(), $"{ConfigurationFileName}.ini"); } /// /// Gets the path to the config directory. /// /// The path. public static string GetConfigDirectory() { return Path.Combine(GetLocalLauncherDirectory(), ConfigurationFolderName); } /// /// Gets the path to the launcher cookie on disk. /// /// The launcher cookie. public string GetLauncherTagfilePath() { return Path.Combine(GetLocalLauncherDirectory(), ".launcher"); } /// /// Gets the install cookie. /// /// The install cookie. public string GetGameTagfilePath() { return Path.Combine(GetLocalLauncherDirectory(), ".game"); } /// /// Gets the local directory where the launcher is stored. /// /// The local directory. public static string GetLocalLauncherDirectory() { var executingLocation = Assembly.GetExecutingAssembly().Location; return Path.GetDirectoryName(executingLocation) ?? throw new InvalidOperationException(); } /// /// Gets the temporary launcher download directory. /// /// A full path to the directory. public string GetTempLauncherDownloadPath() { return Path.Combine(Path.GetTempPath(), "launchpad", "launcher"); } /// /// Gets the expected path to the argument file on disk. /// /// The path. public string GetGameArgumentsPath() { return Path.Combine(GetConfigDirectory(), $"{GameArgumentsFileName}.txt"); } /// /// Gets the game directory. /// /// The directory. public string GetLocalGameDirectory() { return Path.Combine(GetLocalLauncherDirectory(), "Game", _configuration.SystemTarget.ToString()); } /// /// Gets the game version path. /// /// The game version path. public string GetLocalGameVersionPath() { return Path.Combine(GetLocalGameDirectory(), "GameVersion.txt"); } /// /// Gets the remote path to where launcher binaries are stored. /// /// The path. public string GetRemoteLauncherBinariesPath() { return $"{_configuration.RemoteAddress}/launcher/bin/"; } /// /// Gets the remote path of the launcher version. /// /// /// The path to either the official launchpad binaries or a custom launcher, depending on the settings. /// public string GetRemoteLauncherVersionPath() { return $"{_configuration.RemoteAddress}/launcher/LauncherVersion.txt"; } /// /// Gets the remote path where the game is stored.. /// /// The path. public string GetRemoteGamePath() { return $"{_configuration.RemoteAddress}/game/{_configuration.SystemTarget}/bin/"; } } ================================================ FILE: Launchpad.Launcher/Utility/Enums/ELauncherMode.cs ================================================ // // ELauncherMode.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // namespace Launchpad.Launcher.Utility.Enums; /// /// The mode the launcher is in. /// internal enum ELauncherMode { /// /// The launcher can install or is installing a game. /// Install, /// /// The launcher can update or is updating a game. /// Update, /// /// The launcher can repair or is repairing a game. /// Repair, /// /// The launcher can launch or is launching a game. /// Launch, /// /// The launcher can't do or isn't doing anything. /// Inactive } ================================================ FILE: Launchpad.Launcher/Utility/ResourceManager.cs ================================================ // // ResourceManager.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using Gdk; namespace Launchpad.Launcher.Utility; /// /// Manages embedded resources of the application. /// public static class ResourceManager { /// /// Gets the application icon as a pixel buffer. /// public static Pixbuf ApplicationIcon { get; } static ResourceManager() { ApplicationIcon = Pixbuf.LoadFromResource("Launchpad.Launcher.Resources.Icon.png"); } } ================================================ FILE: Launchpad.Launcher/app.manifest ================================================  ================================================ FILE: Launchpad.Launcher/config/appsettings.json ================================================ { "Logging": { "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } } ================================================ FILE: Launchpad.Launcher/log4net.config ================================================ ================================================ FILE: Launchpad.Tests/Common/MD5HandlerTests.cs ================================================ // // MD5HandlerTests.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.IO; using Launchpad.Common.Handlers; using Xunit; namespace Launchpad.Tests.Common; /// /// Tests the MD5 handler. /// public class MD5HandlerTests { /// /// Holds the expected hash. /// private const string ExpectedHash = "6A99C575AB87F8C7D1ED1E52E7E349CE"; /// /// Holds the string "placeholder". /// private readonly MemoryStream _dataStream = new MemoryStream(new byte[] { 112, 108, 97, 99, 101, 104, 111, 108, 100, 101, 114 }); /// /// Tests that the handler hashes values correctly. /// [Fact] public void HashesCorrectly() { Assert.Equal(ExpectedHash, MD5Handler.GetStreamHash(_dataStream)); } } ================================================ FILE: Launchpad.Tests/Common/StringExtensionsTests.cs ================================================ // // StringExtensionsTests.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using Launchpad.Common; using Xunit; namespace Launchpad.Tests.Common; /// /// Tests the string extension methods. /// public class StringExtensionsTests { /// /// Tests line separator and null removals. /// public class RemoveLineSeparatorsAndNulls { private const string Expected = "data"; private const string StringThatContainsNulls = "data\0\0"; private const string StringThatContainsCarriageReturns = "data\r\r"; private const string StringThatContainsLinefeeds = "data\n\n"; private const string StringThatContainsEverything = "data\0\r\n"; /// /// Tests that good strings remain unchanged. /// [Fact] public void DoesNotChangeStringThatDoesNotContainNullsCarriageReturnsOrLineFeeds() { Assert.Equal(Expected, Expected.RemoveLineSeparatorsAndNulls()); } /// /// Tests that nulls are removed. /// [Fact] public void RemovesNullCharacters() { Assert.Equal(Expected, StringThatContainsNulls.RemoveLineSeparatorsAndNulls()); } /// /// Tests that carriage returns are removed. /// [Fact] public void RemovesCarriageReturns() { Assert.Equal(Expected, StringThatContainsCarriageReturns.RemoveLineSeparatorsAndNulls()); } /// /// Tests that line feeds are removed. /// [Fact] public void RemovesLineFeeds() { Assert.Equal(Expected, StringThatContainsLinefeeds.RemoveLineSeparatorsAndNulls()); } /// /// Tests that combinations of CR and LF are removed. /// [Fact] public void RemovesNullsCarriageReturnsAndLineFeeds() { Assert.Equal(Expected, StringThatContainsEverything.RemoveLineSeparatorsAndNulls()); } } } ================================================ FILE: Launchpad.Tests/Launchpad.Tests.csproj ================================================  false ================================================ FILE: Launchpad.Tests/packages.config ================================================  ================================================ FILE: Launchpad.Translations/af.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: af\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/ar.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Arabic\n" "Language: ar_SA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ar\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "خامل" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "فشل الاتصال بخادم التصحيح. الرجاء التحقق من الإعدادات الخاصة بك." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "تعذر الاتصال بالخادم." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "جاري التثبيت..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "تثبيت" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "جاري التحديث..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "تحديث" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "جاري التصليح..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "تصليح" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "جاري الإطلاق..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "إطلاق" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "غير نشط" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "هذا الخادم لا يوفر اللعبة على المنصة المختارة." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "فشل بدء تشغيل اللعبة. حاول إصلاح التثبيت." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "كلا! يبدو أن اللعبة تحطمت.\n" "Would هل تريد من منصة الإطلاق التحقق من التثبيت؟" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "إصلاح اللعبة" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} من أصل {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "إنتهى" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "خدمات لانش باد - الظاهر" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "التقدم: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/أحد/ملف/وجهة : 1 من أصل 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/bg.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: bg\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Свободен" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Няма връзка със сървъра." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Инсталиране..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Инсталиране" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Обновяване..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Обновяване" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Поправяне..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Поправяне" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Стартира се..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Стартиране" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Сървърът не предоставя играта за избраната платформа." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Играта не можа да стартира. Опитайте да поправите инсталацията." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Инсталирането завърши" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Меню" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Напредък: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/bn.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-15 14:33-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Bengali\n" "Language: bn_BD\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: bn\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) যাচাই করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) হালনাগাদ করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "ফাইল {0} ({2} এর {1}) ডাউনলোড করা হচ্ছে" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "ফাইল {0}: {2} এর মধ্যে {1} ডাউনলোড করা হচ্ছে" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "লঞ্চপ্যাড - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "নিষ্ক্রিয়" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "প্যাচ সার্ভারের সাথে সংযোগ করতে ব্যর্থ হয়েছে। অনুগ্রহ করে আপনার সেটিংস চেক করুন।" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "সার্ভারের সাথে সংযোগ করা যায়নি।" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "মনে হচ্ছে আপনি প্রথমবারের জন্য লঞ্চারটি ব্যবহার করছেন।\n" "এই জায়গায়-ই কি আপনি গেমটি ইন্সটল করতে চান?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "ইনস্টল করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "ইনস্টল" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "হালনাগাদ করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "হালনাগাদ করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "সংস্কার করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "সংস্কার করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "শুরু করা হচ্ছে..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "শুরু করুন" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "নিষ্ক্রিয়" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "এই সার্ভারটি এই প্লাটফর্মের জন্য গেমটি সরবরাহ করেনা।" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "গেমটি আরম্ভ করতে ব্যর্থ হয়েছে। ইন্সটলেশন সংস্কার করার চেষ্টা করুন।" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "ইনস্টলেশন সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "হালনাগাদ সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "সংস্কার সম্পন্ন" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "ওপস! গেমটি মনে হয় ক্রাশ করেছে।\n" "আপনি কি লঞ্চারকে ইন্সটলেশনকে যাচাই করতে দিবেন?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "গেমটি রিইন্সটল করলে আপনি গেমের সকল ফাইল এবং ডাউনলোড হারিয়ে ফেলবেন।\n" "আপনি কি নিশ্চিত যে গেমটি রিইন্সটল করবেন?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "মেনু" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "গেম সংস্কার করুন" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "ইনস্টল করা গেমের সংস্কার প্রক্রিয়া শুরু হয়।" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "গেম পুনরায় ইনস্টল করুন" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "ইনস্টল করা গেমটি পুনরায় ইন্সটল করুন।" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "উদ্দীষ্ট ডিরেক্টরি তে কোন GameVersion.txt ফাইল খুঁজে পাওয়া যায়নি। এই ফাইলটি প্রয়োজনীয়।\n" "আপনি কি একটি যোগ করবেন?ফাইলটির সংস্করণ হবে ''১.০.০''।" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {2} এর মধ্যে {1}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "সমাপ্ত" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "লঞ্চপ্যাড ইউটিলিটি - ম্যানিফেস্টো" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "অগ্রগতি: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: ১০০ এর মধ্যে ১" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "গেম ম্যানিফেস্টো তৈরি করুন" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "লঞ্চপ্যাড ম্যানিফেস্টো তৈরি করুন" ================================================ FILE: Launchpad.Translations/ca.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Catalan\n" "Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ca\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/cs.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Czech\n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: cs\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Ověřuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualizuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Stahuji soubor {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Stahuji {0}: {1} z {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Neaktivní" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nebylo možné se připojit k aktualizačnímu serveru. Prodím, zkontrolujte vaše nastavení." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nezdařil se připojit k serveru." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Toto vypadá jako vaše první spuštění této aplikace.\n" "Je toto opravdu umístění kam chcete nainstalovat hru?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instaluji..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalovat" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualizuji..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aktualizovat" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Opravuji..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Opravit" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Spouštím..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Spustit" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Neaktivní" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server neposkytuje hru pro vaši platfomu." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Hru se nezdařilo spustit. Zkuste opravit instalaci." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalace dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualizace dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Oprava dokončena" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Uuups! Vypadá to, jaky by hra spadla.\n" "Chcete ověřit instalaci?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Přeinstalování hry smaže veškeré soubory hry a stáhne celou hru znova.\n" "Jste si jisti, že chcete přeinstalovat hru?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Opravit Hru" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Začne s procesem opravy nainstalované hry." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Přeinstalovat Hru" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Přeinstaluje hru." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nebyl nalezen soubor GameVersion.txt v cílové složce. Tento soubor je vyžadován.\n" "Chcete ho přidat? Verze bude \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} z {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Hotovo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Nástroje - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Průběh: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/nějaká/cesta/k/souboru : 1 z 99" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Vytvořit Herní Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Vygenerovat Manifest pro Launchpad" ================================================ FILE: Launchpad.Translations/da.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Danish\n" "Language: da_DK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: da\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Slumre" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunne ikke forbinde til patchserveren. Venligst tjek dine indstillinger." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunne ikke forbinde til serveren." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Opdaterer..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Opdater" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparere" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starter..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Start" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serveren tilegner ikke spillet for denne platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spillet kunne ikke starte. Prøv at reparere installationen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hovsa! Spillet ser ud til at have styrtede. \n" "Vil du lide Launchpad til at kontrollere installationen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparer spil" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} ud af {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Færdig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/någen/file/: 1 ud af 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generere spilmanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generere Launchpad-manifest" ================================================ FILE: Launchpad.Translations/de.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: German\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: de\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Überprüfe Datei {0} ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualisiere Datei {0} ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Lade Datei {0} herunter ({1} von {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Lade {0} herunter: {1} von {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Es konnte keine Verbindung zum Patch-Server hergestellt werden. Bitte überprüfen Sie ihre Einstellungen." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Verbindung zum Server fehlgeschlagen." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Sie starten den Launcher anscheinend zum ersten Mal.\n" "Ist dies das Verzeichnis in das Sie das Spiel installieren möchten?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installiere..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installieren" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualisiere..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repariere..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparieren" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starte..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starten" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Der Server stellt das Spiel nicht für die ausgewählte Plattform bereit." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Das Spiel konnte nicht gestartet werden. Versuche die Installation zu reparieren." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualisierung abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparatur abgeschlossen" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Uuups! Das Spiel ist wahrscheinlich abgestürzt.\n" "Möchten Sie die Installation überprüfen lassen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Eine Neuinstallation des Spiels löscht alle lokalen Dateien und lädt das komplette Spiel erneut herunter.\n" "Sind Sie sicher, dass Sie das Spiel neu installieren möchten?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparatur Spiel" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Startet die Reparatur des installierten Spiels." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Spiel neu installieren" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Installiert das Spiel erneut." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Es konnte keine GameVersion.txt-Datei im Zielverzeichnis gefunden werden. Diese Datei ist erforderlich.\n" "Möchten Sie diese Datei hinzufügen? Die Version ist dann \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} von {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Fertig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Werkzeuge - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Fortschritt: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 von 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Spiel-Manifest generieren" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad-Manifest generieren" ================================================ FILE: Launchpad.Translations/el.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Greek\n" "Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: el\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/en.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: English\n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: en\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifying file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Updating file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Downloading file {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Downloading {0}: {1} out of {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Idle" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Failed to connect to the patch server. Please check your settings." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Could not connect to server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installing..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Install" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Updating..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repairing..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Repair" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Launching..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Launch" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactive" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "The server does not provide the game for the selected platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "The game failed to launch. Try repairing the installation." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation finished" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Update finished" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Repair finished" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Repair Game" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Starts a repair process for the installed game." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstall Game" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalls the installed game." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} out of {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Finished" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progress: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 out of 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generate Game Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generate Launchpad Manifest" ================================================ FILE: Launchpad.Translations/es_ES.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Spanish\n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: es-ES\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verificar archivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Actualizando archivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Descargando archivo {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Descargando {0}: {1} de {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "En espera" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Error al conectar con el servidor. Por favor, verifique su configuración." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "No se pudo conectar al servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Parece que es la primera vez que abres el launcher.\n" "Is ¿Es esta la ubicación donde quieres instalar el juego?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalando..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Actualizando..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparando..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Inicializando..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Iniciar" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactivo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "El servidor no provee el juego para la plataforma seleccionada." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "El juego falló al iniciar. Trate de reparar la instalación." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalación finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Actualización finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparación finalizada" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oops! El juego parece tener un error.\n" "Te gustaría verificar la instalación?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Volver a instalar el juego eliminará todos los archivos locales, y descargará todo el juego otra vez.\n" "¿Seguro que desea volver a instalar el juego?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menú" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar el Juego" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia proceso de reparación para el juego instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar el juego" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalar el juego instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "No hay ningún archivo GameVersion.txt, podría encontrarse en el directorio de destino. Este archivo es necesario.\n" "¿Desea agregar uno? La versión será \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Completado" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades de Launchpad - Manifiesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progreso: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generar Manifesto del Juego" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generar Manifesto de Launchpad" ================================================ FILE: Launchpad.Translations/fi.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Finnish\n" "Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: fi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ei toimintoa" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Palvelimeen yhdistäminen epäonnistui." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Vaikuttaa siltä, että tämä on ensimmäinen kerta kun käynnistät launcherin.\n" "Onko tämä paikka, johon haluat sentaa pelin?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Asennetaan..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Asenna" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Päivitetään..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Päivitä" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Korjataan..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Korjaus" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Käynnistetään..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Käynnistä" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Palvelin ei tarjoa peliä valitulle alustalle." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Pelin käynnistys epäonnistui. Kokeile korjata asennus." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/fr.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: French\n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: fr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Fichier {0} en cours de vérification ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Mise à jour du fichier {0} en cours ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Téléchargement du fichier {0} en cours ({1} sur {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "En cours de téléchargement {0} : {1} sur {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Plate-forme de lancement - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactif" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Échec de connexion au serveur de mise à jour. Vérifiez vos paramètres." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "La connexion au serveur a échoué." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Il semble que ce soit la première fois que vous démarreriez le launcher.\n" "Est-ce que c'est l'emplacement où vous souhaiteriez installer le jeu?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installation..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Mise à jour..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Mise à jour" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Réparation..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Réparer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Lancement..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Lancement" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactif" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Le serveur ne fournit pas le jeu pour la plate-forme sélectionnée." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Impossible de démarrer le jeu. Essayez de réparer l'installation." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installation terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Mise à jour terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Réparation terminée" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oups ! Le jeu semble avoir planté. \n" "Aimeriez-vous le launcher pour vérifier l’installation ?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Réinstaller le jeu supprimera tous les fichiers locaux et retéléchargera le jeu en entier. \n" "Êtes-vous sûr que vous souhaitez réinstaller le jeu ?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Réparer le jeu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Démarre un processus de réparation pour le jeu installé." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Réinstaller le jeu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Réinstalle le jeu installé." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Aucun fichier nommé GameVersion.txt n'a pu être trouvé dans le répertoire cible. Ce fichier est nécessaire. \n" "Souhaiteriez-vous l'ajouter ? La version sera « 1.0.0 »." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} sur {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Terminé" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Plate-forme de lancement utilitaire - Montrer" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progression: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 sur 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Montrer le jeu généré" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Montrer la plate-forme de lancement générée" ================================================ FILE: Launchpad.Translations/he.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hebrew\n" "Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: he\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "מאמת את הקובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "מעדכן את הקובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "מוריד קובץ {0} ({1} מתוך {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "מוריד {0}: {1} מתוך {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "כן השיגור - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "לְהִתְבַּטֵל" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "ההתחברות לשרת השרתים נכשלה. בדוק את ההגדרות שלך." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "ההתחברות לשרת נכשלה." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "זה נראה בפעם הראשונה שאתה מפעיל את המשגר. \\ האם זה המקום שבו אתה רוצה להתקין את המשחק?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "מתקין..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "להתקין" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "עִדכּוּן..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "עדכון" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "תיקון..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "לְתַקֵן" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "הַשָׁקָה..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "לְהַשִׁיק" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "לֹא פָּעִיל" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "השרת אינו מספק את המשחק עבור הפלטפורמה שנבחרה." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "המשחק נכשל. נסה לתקן את ההתקנה." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "ההתקנה הסתיימה" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "העדכון הסתיים" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "התיקון הסתיים" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "אופס! נראה שהמשחק התרסק. \\ N האם אתה אוהב את המפעיל כדי לאמת את ההתקנה?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "התקנה מחדש של המשחק תמחק את כל הקבצים המקומיים ותוריד שוב את כל המשחק. \\ N האם אתה בטוח שברצונך להתקין מחדש את המשחק?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "תַפרִיט" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "משחק תיקון" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "מתחיל תהליך תיקון עבור המשחק המותקן." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "התקנה מחדש של המשחק" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "הסר את ההתקנה של המשחק." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "לא ניתן למצוא קובץ GameVersion.txt בספריית היעד. נדרש קובץ זה. \\ N האם ברצונך להוסיף קובץ זה? הגרסה תהיה \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} מתוך {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "גָמוּר" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "כלי עזר" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "התקדמות: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/ some / file / path: 1 מתוך 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "צור משחק המניפסט" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "יצירת מנפאט Launchpad" ================================================ FILE: Launchpad.Translations/hi.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hindi\n" "Language: hi_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: hi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/hu.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: hu\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Fájl ellenőrzése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Fájl frissítése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Fájl letöltése {0} ({1} a {2}-ból/ből)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Letöltés {0}: {1} a {2}-ból/ből" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Indítópult - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Tétlen" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nem sikerült a patch szerverhez csatlakozni. Ellenőrízd a beállításaid." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nem lehet kapcsolódni a szerverhez." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Úgy tűnik első alkalommal indítottad el a launchert.\n" "Ide akarod telepíteni a játékot?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Telepítés..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Telepítés" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Frissítés..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Frissítés" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Javítás..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Javítás" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Indítás..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Inditás" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktív" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "A szerver nem szolgáltatja a játékot a kiválasztott platformra." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "A játék indítása nem sikerült. Próbáld megjavítani a telepítést." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Telepítés kész" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Frissítés kész" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Javítás kész" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hoppá! Úgy tűnik hogy a játék összeomlott.\n" "Szeretnéd ha a launcher ellenőrízné a telepítést?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "A játék újratelepítése törölni fogja a helyi fájlokat és ismét letölti az egész játékot.\n" "Biztos hogy újra akarod telepíteni a játékot?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Játék javítása" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Javítási folyamat indítása a telepített játékhoz." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Játék újratelepítése" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Újratelepítí a telepített játékot." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "GameVersion.txt fájl nem található a cél mappában. Ez a fájl szükséges.\n" "Hozzáakarsz adni egyet? A verzió \"1.0.0\" lesz." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} a {2}-ból/ből" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Kész" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad segédprogramok - Nyilvánvaló" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Állapot: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/fájl/elérési út: 1-ből 100-ból" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generálj a Game Manifest-ot" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generálja a Launchpad megnyilvánulását" ================================================ FILE: Launchpad.Translations/id.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Indonesian\n" "Language: id_ID\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: id\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifikasi berkas {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Perbarui berkas {0} ({1} dari {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Unduh berkas {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Mengunduh {0}: {1} dari {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Diam" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Gagal untuk menyambung ke server. Mohon periksa setelan." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Tidak dapat terhubung ke server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Ini tampaknya pertama kali Anda memulai launcher. \n" "Is adalah lokasi yang mana Anda ingin menginstal permainan?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Memasang..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Pasang" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Memperbarui..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Perbarui" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Memperbaiki..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Perbaiki" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Peluncuran..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Memulai" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Non-Aktif" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server tidak menyediakan permainan untuk platform yang dipilih." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Permainan gagaldiluncurkani. Mencoba memperbaiki instalasi." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalasi selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Pembaruan selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Perbaikan selesai" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Permainan tampaknya telah jatuh. \n" "Ingin Anda memverifikasi instalasi dari peluncur tersebut?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Instal ulang permainan akan menghapus semua berkas lokal dan mengunduh seluruh permainan lagi. \n" "Apakah Anda yakin Anda ingin install ulang permainan?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Memperbaiki Permainan" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Mulai proses perbaikan untuk permaian yang telah terpasang." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Pasang Ulang Permainan" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Pasang kembalai permaian yang telah diinstal." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Tidak ada GameVersion.txt ditemukan dalam direktori. Berkas ini membutuhkan.\n" " Anda untuk menambahkan satu? Versi ini akan menjadi \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} dari {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Selesai" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Platform Peluncuran Utilitas - Tampilkan" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Kemajuan: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/beberapa/berkas/bagian : 1 dari 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Tampilkan Permainan yang Dihasilkan" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Tampilkan platform peluncuran yang dihasilkan" ================================================ FILE: Launchpad.Translations/it.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Italian\n" "Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: it\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inattivo" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Impossibile connettersi al server di patch. Si prega di controllare le impostazioni." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Impossibile connettersi al server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installazione in corso..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installa" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aggiornamento..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aggiorna" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Riparazione..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Ripara" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Avviamento..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Avvia" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inattivo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Il server non fornisce il gioco per la piattaforma selezionata." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "I'avvio del gioco è fallito. Provare a ripristinare l'installazione." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Il gioco sembra essere crashato.\n" "Vuoi verificare l'installazione?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Ripara il gioco" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} su {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Completato" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilità del Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Avanzamento: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 su 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/ja.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-30 10:15-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Japanese\n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ja\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "ファイル{0} の確認中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "ファイル{0} の更新中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "ファイル{0} をダウンロード中({2} の{1})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "{0} をダウンロード中:{2} のうち{1}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "アイドル" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "パッチサーバーに接続できませんでした。 設定を確認してください。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "サーバーに接続できませんでした" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "これはランチャーを初めて起動したときに表示されます。\\ nゲームをインストールしたい場所ですか?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "インストール中..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "インストール" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "更新中..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "修理..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修理" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "起動中..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "起動" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "非アクティブ" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "サーバーは、選択したプラットフォームのゲームを提供しません。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "ゲームは起動できませんでした。 インストールを修復してください。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "インストールが完了しました" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新が完了しました" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修理済み" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "うわー! ゲームがクラッシュしたように見える.\n" "ランチャーでインストールを確認しますか?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "ゲームを再インストールすると、すべてのローカルファイルが削除され、ゲーム全体が再度ダウンロードされます.\n" " ゲームを再インストールしてもよろしいですか?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "メニュー" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "ゲームを修復します。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "インストールされているゲームの修復処理を開始します。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "ゲームを再インストールする" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "インストールされているゲームを再インストールします。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "ターゲットディレクトリにGameVersion.txtファイルが見つかりませんでした。このファイルは必須です。\n" " あなたは1つを追加しますか? バージョンは「1.0.0」になります。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} - {1} / {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "終了" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpadユーティリティ- 目録" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "進行状況: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 のうち 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "ゲームマニフェストを生成する" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad マニフェストを生成する" ================================================ FILE: Launchpad.Translations/ko.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Korean\n" "Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ko\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/messages.po ================================================ msgid "" msgstr "" "Project-Id-Version: Launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2016-07-28 21:09+0200\n" "Last-Translator: Jarl Gullberg \n" "Language-Team: Launchpad Translation Team \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad." "glade\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "" "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "" "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "" "Reinstalling the game will delete all local files and download the entire " "game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "" "No GameVersion.txt file could be found in the target directory. This file is " "required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/nl.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Dutch\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: nl\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} verifiëren)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} updaten)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Bestand {0} ({1} van de {2} downloaden)" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Bestand {0}: {1} van de {2} aan het downloaden" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactief" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kan geen verbinding maken met de patch server. Controleer uw instellingen." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kan geen verbinding met de server maken." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Dit lijkt de eerste keer dat je dit programma start.\n" "Is dit de locatie waar je het spel wilt installeren?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installeren..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installeren" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Updaten..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Update" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Repareren..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Repareer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starten..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starten" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactief" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "De server beschikt niet over het spel voor het geselecteerde platform." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Het spel kon niet starten. Probeer de installatie te repareren." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installatie voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Update voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparatie voltooid" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Oeps! Het lijkt er op dat het spel niet meer werkt.\n" "Wil je dat Launchpad de bestanden controleert?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Het opnieuw installeren van het spel zal alle lokale bestanden verwijderen en het volledige spel opnieuw downloaden.\n" "Ben je zeker dat je het spel wil herinstalleren?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Spel herstellen" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Hiermee start u een herstelprocedure voor het geïnstalleerde spel." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Spel opnieuw installeren" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Herinstalleerd het geïnstalleerde spel." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Het GameVersion.txt bestand kon niet gevonden worden in de doelmap. Dit bestand is vereist.\n" "Wenst u dit bestand toe te voegen? Dit bestand zal versie \"1.0.0\" hebben." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} van de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Voltooid" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Voortgang: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 van de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Genereren van spel Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Genereren van Launchpad Manifest" ================================================ FILE: Launchpad.Translations/no.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Norwegian\n" "Language: no_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: no\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verifiserer fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Oppdaterer fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Laster ned fil {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Laster ned {0}: {1} av {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunne ikke koble til patchserveren. Vennligst sjekk innstillingene dine." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunne ikke koble til server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerer..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installer" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Oppdaterer..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Oppdater" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparere..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparer" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Starter..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Start" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serveren gir ikke spill for den valgte plattformen." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spillet kunne ikke starte. Prøv å reparere installasjonen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installasjonen er ferdig" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Oppdatering fullført" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparasjonen fullført" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Whoops! Spillet ser ut til å ha krasjet. \n" "Vil du Launchpad å bekrefte installasjonen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Installere spillet vil slette alle lokale filer og laste ned hele spillet igjen. \n" "er du sikker på at du vil installere spillet på nytt?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meny" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparere spillet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstaller" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstallerer spillet." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} av {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Ferdig" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Utilities - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 av 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generere Spillemanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generere Launchpad-manifest" ================================================ FILE: Launchpad.Translations/pl.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Polish\n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pl\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Sprawdzanie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Aktualizowanie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Pobieranie pliku {0} ({1} z {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Pobieranie {0}: {1} z {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Bezczynny" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nie udało się połączyć z serwerem aktualizacji. Proszę sprawdzić ustawienia." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nie można połączyć się z serwerem." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Wydaje się, że po raz pierwszy używasz launchera.\n" "Czy jest to lokalizacja, w której chcesz zainstalować grę?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalowanie..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Zainstaluj" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Aktualizowanie..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Aktualizuj" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Naprawianie..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Napraw" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Uruchamianie..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Uruchom" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Nieaktywne" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serwer nie udostępnia gry dla wybranej platformy." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Nie udało się uruchomić gry. Spróbuj naprawić instalację." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalacja zakończona" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Aktualizacja zakończona" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Naprawianie zakończone" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Ups! Wygląda na to, że gra została nieoczekiwanie zamknięta.\n" "Czy chcesz zweryfikować instalację gry?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Przeinstalowanie gry spowoduje usunięcie wszystkich plików lokalnych oraz pobierze grę na nowo. \n" "Czy jesteś pewien?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Napraw Grę" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Rozpoczyna proces naprawy zainstalowanej gry." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Przeinstaluj grę" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Przeinstaluj zainstalowaną grę." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Plik GameVersion.txt nie został znaleziony w katalogu docelowym. Ten plik jest wymagany. \n" "Czy chcesz go dodać? Wersja zostanie ustawiona na \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} z {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Zakończono" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Narzędzia Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Postęp: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path : 1 z 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Wygeneruj Manifest gry" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Wygeneruj Manifest programu Launchpad" ================================================ FILE: Launchpad.Translations/pt_BR.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pt-BR\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Veificando arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Atualizando o arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Baixando o arquivo {0} ({1} de {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Baixando {0}: {1} de {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Em Espera" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Falha ao conectar ao servidor de atualização. Por favor, verifique suas configurações." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Não foi possível se conectar ao servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Parece ser a primeira vez que você inicia o launcher.\n" "Você gostaria de instalar o jogo nesse local?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Instalando..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Atualizando..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Atualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparando..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Abrindo..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Abrir" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inativo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "O servidor não oferece o jogo para a plataforma selecionada." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "O jogo falhou ao iniciar. Tente reparar a instalação." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Atualização terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparo terminado" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Opa! Parece que o jogo crashou.\n" "Você gostaria que o launcher verificasse a instalação?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalar o jogo irá deletar todos os arquivos locais, e baixará o jogo novamente.\n" "Você tem certeza que quer reinstalar o jogo?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia um processo de reparação para o jogo instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstala o jogo instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nenhum arquivo de GameVersion.txt pôde ser encontrado no diretório de destino. Este arquivo é necessário.\n" "Você gostaria de adicionar um? A versão será \"1.0.0.\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Concluído" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades do Launchpad - Manifesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progresso: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/alguma/pasta/arquivo : 1 de 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Gerar o manifesto do jogo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Gerar o manifesto do Launchpad" ================================================ FILE: Launchpad.Translations/pt_PT.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: pt-PT\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Verificar ficheiro {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Actualizando ficheiros {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "A transferir ficheiros {0} ({1} of {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Transferindo {0}: {1} out of {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Plataforma de lançamento - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ocioso" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Falha ao conectar ao servidor de actualização. Por favor verifique as suas configurações." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Não foi possível conectar ao servidor." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Olá, parece que é a primeira vez que inicia o seu launcher..\n" "Is Este é o local onde pretende instalar o jogo?\n" "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "A instalar..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalar" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "A actualizar..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizar" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "A reparar..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparar" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "A Iniciar..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Iniciar" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inativo" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "O servidor não fornece o jogo para a plataforma seleccionada.\n" "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "O jogo falhou ao iniciar. Tente reparar a instalação." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Atualização terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparação terminada" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "\n" "Ups! O jogo parece ter caído.\n" " Você gostaria que o lançador verificasse a instalação?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalar o jogo excluirá todos os arquivos locais e baixará o jogo inteiro novamente.\n" "N Você tem certeza que deseja reinstalar o jogo?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Inicia um processo de reparação do jogo instalado." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalar o jogo" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstala o jogo instalado." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nenhum arquivo GameVersion.txt pode ser encontrado no directório de destino. Este arquivo é necessário.\n" "Você gostaria de adicionar um? A versão será \"1.0.0\".\n" "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} fora de {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Terminado" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Utilidades de Launchpad - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progresso" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/algum/caminho/deficheiro : 1 de 100\n" "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Gerar o manifesto do jogo" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Gerar o manifesto do Launchpad" ================================================ FILE: Launchpad.Translations/ro.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2018-02-01 16:07-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Romanian\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ro\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Se verifică fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Se actualizează fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Se descarcă fișierul {0} ({1} din {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Se descarcă {0}: {1} din {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inactiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Nu s-a reușit conectarea la serverul patch. Te rugăm să îți verifici setările." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Nu s-a putut efectua conexiunea la server." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Aceasta pare să fie prima dată când pornești lansatorul. \n" "Este locația unde vrei să instalezi jocul?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Se instalează..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Instalare" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Se actualizează..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Actualizare" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Se repară..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparare" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Se lansează..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Lansează" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inactiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Serverul nu permite jocului să fie lansat pe platforma selectată." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Lansarea jocului a eșuat. Încearcă să repari instalarea." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Instalarea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Actualizarea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Repararea s-a terminat" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hopa! Jocul pare să se fi oprit brusc.\n" "Vrei ca lansatorul să verifice instalarea?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Reinstalarea jocului va duce la ștergerea fișierelor locale și la descărcarea jocului.\n" "Ești sigur că vrei să reinstalezi jocul?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meniu" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Repară jocul" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Începe un proces de reparare pentru jocul instalat." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Reinstalează jocul" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Reinstalează jocul instalat." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Nici un fișier de tip GameVersion.txt nu a fost găsit în directorul țintă. Acest fișier este necesar.\n" "Vrei să mai adaugi altul? Versiunea va fi \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} din {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Finalizat" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Manifest - Utilitățiile Launchpad" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Progres: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/unele/fișier/cale: 1 din 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Generează Manifestul Jocului" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Generează Manifestul Launchpad" ================================================ FILE: Launchpad.Translations/ru.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Russian\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: ru\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Проверка файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Обновление файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Загрузка файла {0} ({1} из {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Загрузка {0}: {1} из {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Ожидание" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Не удается подключиться к серверу с патчем. Пожалуйста, проверьте настройки." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Не удалось подключиться к серверу." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Это окно появляется в первый раз когда вы запускаете лаунчер.\n" "Хотите установить игру сюда?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Установка..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Установить" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Обновление..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Обновить" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Востановление..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Востановить" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Запуск..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Запустить" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Неактивно" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Сервер не предоставляет игры для выбранной платформы." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Не удалось запустить игру. Проверьте целостность файлов или переустановите игру." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Установка завершена" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Обновление завершено" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Восстановление завершено" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Уууупс! Игра сломалась.\n" "Хотите запустить процесс восстановления?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Переустановка игры запустит процесс удаления всех локальных файлов, после чего скачает игру заново.\n" "Вы уверены, что вы хотите переустановить игру?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Меню" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Восстановить игру" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Начать процесс восстановления установленной игры." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Переустановить игру" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Переустановка игры." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Невозможно найти GameVersion.txt в конечной директории. Этот файл необходим.\n" "Хотите добавить? Версия по-умолчанию будет установлена на \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} из {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Завершено" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Прогресс: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/some/file/path: 1 из 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/sr.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Serbian (Cyrillic)\n" "Language: sr_SP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: sr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/sv_SE.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Swedish\n" "Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: sv-SE\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "Kontrollerar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "Uppdaterar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "Hämtar fil {0} ({1} av {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "Hämtar {0}: {1} av {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Kunde inte ansluta till patchservern. Var vänlig och kontrollera dina inställningar." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Kunde inte ansluta till servern." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Detta verkar vara den första gången du startar programmet.\n" "Är detta mappen du vill installera spelet i?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Installerar..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Installera" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Uppdaterar..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Uppdatera" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Reparerar..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Reparera" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Startar..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Starta" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Inaktiv" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Server erbjuder inte spelet för den valda plattformen." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Spelet kunde inte starta. Försök att reparera installationen." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Installationen avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Uppdatering avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Reparation avslutad" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Hoppsan! Spelet verkar ha krashat.\n" "Vill du försöka att reparera installationen?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Att installera om spelet kommer att radera alla lokala filer och ladda ner hela spelet igen.\n" "Är du säker på att du vill installera om spelet?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Meny" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Reparera Spelet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Startar en reparationsprocess för det installerade spelet." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Installera om spelet" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Installerar om det installerade spelet." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Ingen fil med namnet \"GameVersion.txt\" kunde hittas i målmappen. Den här filen krävs. \n" "Vill du lägga till den? Versionen kommer vara \"1.0.0\"." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {1} av {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Klar" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpadverktyg - Manifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "Status: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/någon/fil/ : 1 av 100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Skapa spelmanifest" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Skapa programmanifest" ================================================ FILE: Launchpad.Translations/tr.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Turkish\n" "Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: tr\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "{0} dosyası onaylanıyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "{0} dosyası güncelleniyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "{0} dosyası indiriliyor ({1}/{2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "{0} indiriliyor: {1}/{2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - {0}" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "Boşta" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "Yama sunucusuna bağlanılamadı. Lütfen ayarlarınızı kontrol edin." #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "Sunucuya bağlanılamadı." #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "Bu başlatıcıyı ilk açışınız gibi gözüküyor.\n" "Oyunu yüklemek istediğiniz yer bu mu?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "Yükleniyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "Yükle" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "Güncelleniyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "Güncelle" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "Tamir ediliyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "Tamir Et" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "Başlatılıyor..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "Başlat" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "Devre dışı" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "Sunucu oyunu seçili platform için temin etmiyor." #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "Oyun başlayamadı. Yüklemeyi tamir etmeyi deneyin." #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "Yükleme bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "Güncelleme bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "Tamir bitti" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "Haydaa! Oyun çökmüşe benziyor.\n" "Başlatıcının yüklemeyi teyit etmesini ister misiniz?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "Oyunu baştan yüklemek yerel dosyaların hepsini silip bütün oyunu tekrar indirir.\n" "Oyunu baştan yüklemek istediğinize emin misiniz?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "Menü" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "Oyunu Tamir Et" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "Yüklü oyun için tamir süreci başlatır." #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "Oyunu Baştan Yükle" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "Yüklü oyunu baştan yükler." #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "Hedef dizinde GameVersion.txt dosyası bulunamadı. Bu dosya gerekiyor.\n" "Bir tane eklemek ister misiniz? Sürüm \"1.0.0\" olacak." #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0} : {2}'de {1}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "Bitti" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "Launchpad Hizmetleri - Manifesto" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "İlerleme: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/bir/dosya/dizini : 100'de 1" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "Oyun Manifestosu Oluştur" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "Launchpad Manifestosu Oluştur" ================================================ FILE: Launchpad.Translations/uk.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: uk\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/vi.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-01-25 12:49-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: vi\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "" ================================================ FILE: Launchpad.Translations/zh_CN.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "验证文件 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "更新文件 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "下载文件 {0}: {1} {2} bytes。" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "下载 {0}: {1} {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad - (0)" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "闲置" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "无法连接到修补服务器。请检查您的设置。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "无法连接到伺服器。" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "这似乎是您第一次启动启动程序. 这是您要安装游戏的位置吗?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "正在安装..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "安装" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "正在更新..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "正在修复..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修复" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "正在启动..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "启动" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "未激活" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "伺服器未为选定平台提供这个游戏。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "游戏无法启动。尝试修复安装程序。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "安装完成" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新已完成" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修复完成" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "呦! 游戏似乎已经崩溃. \n" "是否您喜欢启动器来验证安装吗?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "重新安装游戏将删除所有本地文件, 并再次下载整个游戏. n\n" " 您确定要重新安装游戏吗?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "选单" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "维修游戏" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "启动已安装游戏的修复过程。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "重新安装游戏" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "重新安装游戏。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "在目录中找不到 GameVersion.txt 文件。\n" "此文件是必需的. 是否要添加一个吗?该版本将是 \"1.0.0\"。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "完成" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "启动板实用程序" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "进度: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/部分/文件/路径: 1/100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "生成游戏清单" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "生成游戏清单" ================================================ FILE: Launchpad.Translations/zh_TW.po ================================================ msgid "" msgstr "" "Project-Id-Version: launchpad\n" "POT-Creation-Date: 2016-07-28 21:06+0200\n" "PO-Revision-Date: 2017-11-14 09:31-0500\n" "Last-Translator: JarlGullberg \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: crowdin.com\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: GetString\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: Launchpad.Launcher\n" "X-Poedit-SearchPath-1: Launchpad.Utilities\n" "X-Poedit-SearchPathExcluded-0: Launchpad.Launcher/Interface/gtk3/Launchpad.glade\n" "X-Crowdin-Project: launchpad\n" "X-Crowdin-Language: zh-TW\n" "X-Crowdin-File: messages.po\n" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:625 #, csharp-format msgid "Verifying file {0} ({1} of {2})" msgstr "驗證檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:637 #, csharp-format msgid "Updating file {0} ({1} of {2})" msgstr "更新檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:649 #, csharp-format msgid "Downloading file {0} ({1} of {2})" msgstr "更新檔 {0} ({1} {2})" #: Launchpad.Launcher/Handlers/Protocols/ManifestBasedProtocolHandler.cs:661 #, csharp-format msgid "Downloading {0}: {1} out of {2}" msgstr "下載 {0}: {1} {2}" #: Launchpad.Launcher/Interface/MainWindow.cs:108 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:90 #, csharp-format msgid "Launchpad - {0}" msgstr "Launchpad- (0)" #: Launchpad.Launcher/Interface/MainWindow.cs:114 #: Launchpad.Launcher/Interface/MainWindow.cs:435 #: Launchpad.Launcher/Interface/MainWindow.cs:551 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:215 #: Launchpad.Utilities/Interface/MainWindow.cs:57 msgid "Idle" msgstr "閒置" #: Launchpad.Launcher/Interface/MainWindow.cs:124 msgid "Failed to connect to the patch server. Please check your settings." msgstr "無法連接到修補伺服器。請檢查您的設置。" #: Launchpad.Launcher/Interface/MainWindow.cs:129 msgid "Could not connect to server." msgstr "無法連接到伺服器。" #: Launchpad.Launcher/Interface/MainWindow.cs:160 msgid "This appears to be the first time you're starting the launcher.\n" "Is this the location where you would like to install the game?" msgstr "這似乎是您第一次啟動啟動程式. 這是您要安裝遊戲的位置嗎?" #: Launchpad.Launcher/Interface/MainWindow.cs:269 msgid "Installing..." msgstr "正在安裝..." #: Launchpad.Launcher/Interface/MainWindow.cs:274 msgid "Install" msgstr "安裝" #: Launchpad.Launcher/Interface/MainWindow.cs:283 msgid "Updating..." msgstr "正在更新..." #: Launchpad.Launcher/Interface/MainWindow.cs:288 msgid "Update" msgstr "更新" #: Launchpad.Launcher/Interface/MainWindow.cs:297 msgid "Repairing..." msgstr "正在修復..." #: Launchpad.Launcher/Interface/MainWindow.cs:302 msgid "Repair" msgstr "修復" #: Launchpad.Launcher/Interface/MainWindow.cs:311 msgid "Launching..." msgstr "正在啟動..." #: Launchpad.Launcher/Interface/MainWindow.cs:316 msgid "Launch" msgstr "啟動" #: Launchpad.Launcher/Interface/MainWindow.cs:325 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:272 msgid "Inactive" msgstr "未激活的" #: Launchpad.Launcher/Interface/MainWindow.cs:386 msgid "The server does not provide the game for the selected platform." msgstr "伺服器未為選定平台提供這個遊戲。" #: Launchpad.Launcher/Interface/MainWindow.cs:489 msgid "The game failed to launch. Try repairing the installation." msgstr "遊戲無法啟動。嘗試修復安裝程序。" #: Launchpad.Launcher/Interface/MainWindow.cs:557 msgid "Installation finished" msgstr "安裝完成" #: Launchpad.Launcher/Interface/MainWindow.cs:562 msgid "Update finished" msgstr "更新已完成" #: Launchpad.Launcher/Interface/MainWindow.cs:567 msgid "Repair finished" msgstr "修復完成" #: Launchpad.Launcher/Interface/MainWindow.cs:595 msgid "Whoops! The game appears to have crashed.\n" "Would you like the launcher to verify the installation?" msgstr "呦! 遊戲似乎已經崩潰. 是否您喜歡啟動器來驗證安裝嗎?" #: Launchpad.Launcher/Interface/MainWindow.cs:627 msgid "Reinstalling the game will delete all local files and download the entire game again.\n" "Are you sure you want to reinstall the game?" msgstr "重新安裝遊戲將刪除所有本地檔, 並再次下載整個遊戲. n\n" " 您確定要重新安裝遊戲嗎?" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:61 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:63 msgid "Menu" msgstr "選單" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:69 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:73 msgid "Repair Game" msgstr "維修遊戲" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:70 msgid "Starts a repair process for the installed game." msgstr "啟動已安裝遊戲的修復過程。" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:79 #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:83 msgid "Reinstall Game" msgstr "重新安裝遊戲" #: Launchpad.Launcher/gtk-gui/Launchpad.Launcher.Interface.MainWindow.cs:80 msgid "Reinstalls the installed game." msgstr "重新安裝遊戲。" #: Launchpad.Utilities/Interface/MainWindow.cs:84 msgid "No GameVersion.txt file could be found in the target directory. This file is required.\n" "Would you like to add one? The version will be \"1.0.0\"." msgstr "在目錄中找不到 GameVersion.txt 檔。此檔是必需的. 是否要添加一個嗎?該版本將是 \"1.0.0\"。" #: Launchpad.Utilities/Interface/MainWindow.cs:124 #, csharp-format msgid "{0} : {1} out of {2}" msgstr "{0}: {1} {2}" #: Launchpad.Utilities/Interface/MainWindow.cs:140 msgid "Finished" msgstr "完成" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:61 msgid "Launchpad Utilities - Manifest" msgstr "啟動板實用程式" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:128 msgid "Progress: " msgstr "進度: " #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:146 msgid "/some/file/path : 1 out of 100" msgstr "/部分/檔/路徑: 1/100" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:196 msgid "Generate Game Manifest" msgstr "生成遊戲清單" #: Launchpad.Utilities/gtk-gui/Launchpad.Utilities.Interface.MainWindow.cs:218 msgid "Generate Launchpad Manifest" msgstr "生成遊戲清單" ================================================ FILE: Launchpad.Utilities/Handlers/ManifestGenerationHandler.cs ================================================ // // ManifestGenerationHandler.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using Launchpad.Common.Enums; using Launchpad.Common.Handlers; using Launchpad.Common.Handlers.Manifest; using Launchpad.Utilities.Utility.Events; namespace Launchpad.Utilities.Handlers; /// /// Generates manifests. /// public class ManifestGenerationHandler { private readonly ManifestGenerationProgressChangedEventArgs _generationProgressArgs; /// /// Initializes a new instance of the class. /// public ManifestGenerationHandler() { _generationProgressArgs = new ManifestGenerationProgressChangedEventArgs ( string.Empty, 0, 0, string.Empty, 0 ); } /// /// Generates a manifest containing the relative path, MD5 hash and file size from /// all files in the provided root path. /// /// The root path of the directory the manifest should represent. /// The type of manifest that should be generated. /// The progress reporter to use. /// The cancellation token to use. /// A representing the asynchronous operation. public Task GenerateManifestAsync ( string targetPath, EManifestType manifestType, IProgress progressReporter, CancellationToken ct ) { var parentDirectory = Directory.GetParent(targetPath)?.ToString() ?? throw new InvalidOperationException(); var manifestPath = Path.Combine(parentDirectory, $"{manifestType}Manifest.txt"); var manifestChecksumPath = Path.Combine(parentDirectory, $"{manifestType}Manifest.checksum"); return Task.Run ( async () => { var manifestFilePaths = new List(Directory .EnumerateFiles(targetPath, "*", SearchOption.AllDirectories) .Where(s => !IsPathABlacklistedFile(s))); _generationProgressArgs.TotalFiles = manifestFilePaths.Count; await using (var tw = new StreamWriter(File.Create(manifestPath, 4096, FileOptions.Asynchronous))) { var completedFiles = 0; foreach (var filePath in manifestFilePaths) { ct.ThrowIfCancellationRequested(); var newEntry = CreateEntryForFile(targetPath, filePath); await tw.WriteLineAsync(newEntry.ToString()); await tw.FlushAsync(ct); completedFiles++; _generationProgressArgs.CompletedFiles = completedFiles; _generationProgressArgs.Filepath = newEntry.RelativePath; _generationProgressArgs.Hash = newEntry.Hash; _generationProgressArgs.Size = newEntry.Size; progressReporter.Report(_generationProgressArgs); } } await CreateManifestChecksumAsync(manifestPath, manifestChecksumPath); }, ct ); } private async Task CreateManifestChecksumAsync(string manifestPath, string manifestChecksumPath) { // Create a checksum file for the manifest. await using var manifestStream = File.OpenRead(manifestPath); var manifestHash = MD5Handler.GetStreamHash(manifestStream); await using var checksumStream = File.Create(manifestChecksumPath, 4096, FileOptions.Asynchronous); await using var tw = new StreamWriter(checksumStream); await tw.WriteLineAsync(manifestHash); await tw.FlushAsync(); tw.Close(); } private ManifestEntry CreateEntryForFile(string parentDirectory, string filePath) { string hash; long fileSize; using (var fileStream = File.OpenRead(filePath)) { hash = MD5Handler.GetStreamHash(fileStream); fileSize = fileStream.Length; } var relativeFilePath = filePath.Substring(parentDirectory.Length).TrimStart(Path.DirectorySeparatorChar); var newEntry = new ManifestEntry(relativeFilePath, hash, fileSize); return newEntry; } /// /// Determines whether or not the specified path is blacklisted and should not be included in the manifest. /// /// The path to test. /// true if the path is blackliste; otherwise, false. private bool IsPathABlacklistedFile(string filePath) { return filePath.EndsWith(".install") || filePath.EndsWith(".update") || filePath.EndsWith("GameManifest.txt") || filePath.EndsWith("GameManifest.checksum"); } } ================================================ FILE: Launchpad.Utilities/Interface/Launchpad.Utilities.glade ================================================ 640 384 False False 640 384 True False 6 6 6 6 True False vertical 6 True False True False select-folder False True 0 True False True False start Idle False True 1 True False True False False True 2 True False True False 6 True False Generate Game Manifest True True True False True end 0 True False Generate Launchpad Manifest True True True False True end 1 False True 3 ================================================ FILE: Launchpad.Utilities/Interface/MainWindow.UI.cs ================================================ // // MainWindow.UI.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System.Reflection; using Gtk; using UIElement = Gtk.Builder.ObjectAttribute; // ReSharper disable UnassignedReadonlyField #pragma warning disable 169 #pragma warning disable 649 #pragma warning disable 1591 #pragma warning disable SA1134 // Each attribute should be placed on its own line of code #pragma warning disable SA1214 // Readonly fields should appear before non-readonly fields namespace Launchpad.Utilities.Interface; public partial class MainWindow { [UIElement("FolderChooser")] private readonly FileChooserWidget _folderChooser = null!; [UIElement("StatusLabel")] private readonly Label _statusLabel = null!; [UIElement("MainProgressBar")] private readonly ProgressBar _mainProgressBar = null!; [UIElement("GenerateLaunchpadManifestButton")] private readonly Button _generateLaunchpadManifestButton = null!; [UIElement("GenerateGameManifestButton")] private readonly Button _generateGameManifestButton = null!; /// /// Creates a new instance of the class, loading its interface definition from file. /// /// An instance of the main window widget. public static MainWindow Create() { using var builder = new Builder(Assembly.GetExecutingAssembly(), "Launchpad.Utilities.Interface.Launchpad.Utilities.glade", null); return new MainWindow(builder, builder.GetObject(nameof(MainWindow)).Handle); } /// /// Binds UI-related events. /// private void BindUIEvents() { this.DeleteEvent += OnDeleteEvent; _generateLaunchpadManifestButton.Clicked += OnGenerateLaunchpadManifestButtonClicked; _generateGameManifestButton.Clicked += OnGenerateGameManifestButtonClicked; } /// /// Exits the application properly when the window is deleted. /// /// Sender. /// The alpha component. private void OnDeleteEvent(object sender, DeleteEventArgs a) { _tokenSource?.Cancel(); Application.Quit(); a.RetVal = true; } } ================================================ FILE: Launchpad.Utilities/Interface/MainWindow.cs ================================================ // // MainWindow.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using Gtk; using Launchpad.Common.Enums; using Launchpad.Utilities.Handlers; using Launchpad.Utilities.Utility.Events; using NGettext; using SysPath = System.IO.Path; namespace Launchpad.Utilities.Interface; /// /// Represents the main window of the application. /// public partial class MainWindow : Window { /// /// The manifest generation handler. /// private readonly ManifestGenerationHandler _manifest = new ManifestGenerationHandler(); /// /// The localization catalog. /// private readonly ICatalog _localizationCatalog = new Catalog("Launchpad", "./Content/locale"); private readonly IProgress _progressReporter; private CancellationTokenSource? _tokenSource; /// /// Initializes a new instance of the class. /// /// The UI builder. /// The native handle of the window. private MainWindow(Builder builder, IntPtr handle) : base(handle) { builder.Autoconnect(this); BindUIEvents(); _progressReporter = new Progress ( e => { var progressString = _localizationCatalog.GetString("Hashing {0} : {1} out of {2}"); _statusLabel.Text = string.Format(progressString, e.Filepath, e.CompletedFiles, e.TotalFiles); _mainProgressBar.Fraction = e.CompletedFiles / (double)e.TotalFiles; } ); _folderChooser.SetCurrentFolder(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)); _folderChooser.SelectMultiple = false; _statusLabel.Text = _localizationCatalog.GetString("Idle"); } private async void OnGenerateGameManifestButtonClicked(object? sender, EventArgs e) { var targetDirectory = _folderChooser.Filename; if (!Directory.GetFiles(targetDirectory).Any(s => s.Contains("GameVersion.txt"))) { using var dialog = new MessageDialog ( this, DialogFlags.Modal, MessageType.Question, ButtonsType.YesNo, _localizationCatalog.GetString ( "No GameVersion.txt file could be found in the target directory. This file is required.\n" + "Would you like to add one? The version will be \"1.0.0\"." ) ); if (dialog.Run() == (int)ResponseType.Yes) { var gameVersionPath = SysPath.Combine(targetDirectory, "GameVersion.txt"); await File.WriteAllTextAsync(gameVersionPath, new Version("1.0.0").ToString()); } else { return; } } await GenerateManifestAsync(EManifestType.Game); } private async void OnGenerateLaunchpadManifestButtonClicked(object? sender, EventArgs e) { await GenerateManifestAsync(EManifestType.Launchpad); } private async Task GenerateManifestAsync(EManifestType manifestType) { _tokenSource = new CancellationTokenSource(); _generateGameManifestButton.Sensitive = false; _generateLaunchpadManifestButton.Sensitive = false; var targetDirectory = _folderChooser.Filename; try { await _manifest.GenerateManifestAsync ( targetDirectory, manifestType, _progressReporter, _tokenSource.Token ); _statusLabel.Text = _localizationCatalog.GetString("Finished"); } catch (TaskCanceledException) { _statusLabel.Text = _localizationCatalog.GetString("Cancelled"); _mainProgressBar.Fraction = 0; } _generateGameManifestButton.Sensitive = true; _generateLaunchpadManifestButton.Sensitive = true; } } ================================================ FILE: Launchpad.Utilities/Launchpad.Utilities.csproj ================================================  Exe PreserveNewest false PreserveNewest false ================================================ FILE: Launchpad.Utilities/NLog.config ================================================ ================================================ FILE: Launchpad.Utilities/Options/CLIOptions.cs ================================================ // // CLIOptions.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using CommandLine; using Launchpad.Common.Enums; // ReSharper disable SA1118 #pragma warning disable SA1118 namespace Launchpad.Utilities.Options; /// /// Represents the command-line options to the program. /// public class CLIOptions { /// /// Gets or sets a value indicating whether the utility should be run in batch mode without a UI. /// [Option ( 'b', "batch", Required = false, HelpText = "Run the utilities in batch mode without a UI." )] public bool RunBatchProcessing { get; set; } /// /// Gets or sets the target directory from which the manifest should be generated. /// [Option ( 'd', "directory", Required = false, HelpText = "The target directory from which the manifest should be generated." )] public string? TargetDirectory { get; set; } /// /// Gets or sets the type of manifest that should be generated. /// [Option ( 'm', "manifest", Required = false, HelpText = "The type of manifest that should be generated. This only affects the output filename, " + "and not the actual file content. " + "Valid manifests: Game or Launcher" )] public EManifestType ManifestType { get; set; } } ================================================ FILE: Launchpad.Utilities/Program.cs ================================================ // // Program.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Runtime.InteropServices; using System.Threading; using CommandLine; using GLib; using Launchpad.Common.Enums; using Launchpad.Utilities.Handlers; using Launchpad.Utilities.Interface; using Launchpad.Utilities.Options; using Launchpad.Utilities.Utility.Events; using NLog; using Application = Gtk.Application; using Task = System.Threading.Tasks.Task; namespace Launchpad.Utilities; /// /// Represents the main class of the program. /// internal static class Program { /// /// Logger instance for this class. /// private static readonly ILogger Log = LogManager.GetCurrentClassLogger(); /// /// The main entry point for the application. /// private static async Task Main(string[] args) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { Environment.SetEnvironmentVariable("GSETTINGS_SCHEMA_DIR", "share\\glib-2.0\\schemas\\"); } var options = new CLIOptions(); Parser.Default.ParseArguments(args) .WithParsed(r => options = r) .WithNotParsed(_ => options = null); if (options is null) { // Parsing probably failed, bail out return; } if (options.RunBatchProcessing) { if (string.IsNullOrEmpty(options.TargetDirectory) || options.ManifestType == EManifestType.Unknown) { Log.Error("Target directory not set, or manifest type not set."); return; } // At this point, the options should be valid. Run batch processing. if (Directory.Exists(options.TargetDirectory)) { Log.Info("Generating manifest..."); var manifestGenerationHandler = new ManifestGenerationHandler(); var progressReporter = new Progress ( e => Log.Info($"Processed file {e.Filepath} : {e.Hash} : {e.Size}") ); await manifestGenerationHandler.GenerateManifestAsync ( options.TargetDirectory, options.ManifestType, progressReporter, CancellationToken.None ); Log.Info("Generation finished."); } else { Log.Error("The selected directory did not exist."); } } else if (string.IsNullOrEmpty(options.TargetDirectory) && options.ManifestType == EManifestType.Unknown) { // Run a GTK UI instead of batch processing Application.Init(); SynchronizationContext.SetSynchronizationContext(new GLibSynchronizationContext()); var win = MainWindow.Create(); win.Show(); Application.Run(); } } } ================================================ FILE: Launchpad.Utilities/Utility/DirectoryHelpers.cs ================================================ // // DirectoryHelpers.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; using System.IO; using System.Reflection; namespace Launchpad.Utilities.Utility; /// /// Contains helper functions for directory manipulation. /// public static class DirectoryHelpers { /// /// Gets the assembly-local directory, that is, the directory where the executing assembly resides. /// /// The local dir, terminated by a directory separator. public static string GetLocalDir() { var codeBaseURI = new UriBuilder(Assembly.GetExecutingAssembly().Location).Uri; return Path.GetDirectoryName(Uri.UnescapeDataString(codeBaseURI.AbsolutePath)) ?? throw new InvalidOperationException(); } } ================================================ FILE: Launchpad.Utilities/Utility/Events/ManifestGenerationProgressChangedEventArgs.cs ================================================ // // ManifestGenerationProgressChangedEventArgs.cs // // Author: // Jarl Gullberg // // Copyright (c) 2017 Jarl Gullberg // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // using System; namespace Launchpad.Utilities.Utility.Events; /// /// Represents progress in a manifest generation. /// public class ManifestGenerationProgressChangedEventArgs : EventArgs { /// /// Gets or sets the current file path. /// public string Filepath { get; set; } /// /// Gets or sets the total number of files. /// public int TotalFiles { get; set; } /// /// Gets or sets the number of completed files. /// public int CompletedFiles { get; set; } /// /// Gets or sets the current hash. /// public string Hash { get; set; } /// /// Gets or sets the size of the current file. /// public long Size { get; set; } /// /// Initializes a new instance of the class. /// /// The current file path. /// The total number of files. /// The number of completed files. /// The current hash. /// The size of the current file. public ManifestGenerationProgressChangedEventArgs ( string filepath, int totalFiles, int completedFiles, string hash, long size ) { this.Filepath = filepath; this.TotalFiles = totalFiles; this.CompletedFiles = completedFiles; this.Hash = hash; this.Size = size; } } ================================================ FILE: Launchpad.sln ================================================  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "metadata", ".\", "{F1A57014-71CE-4032-A652-01B7E35E14DB}" ProjectSection(SolutionItems) = preProject .gitignore = .gitignore README.md = README.md .travis.yml = .travis.yml appveyor.yml = appveyor.yml Directory.Build.props = Directory.Build.props EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Scripts", ".\Scripts", "{C9B78442-415D-4F02-93B1-C377F6A9A053}" ProjectSection(SolutionItems) = preProject Scripts\launchpad-dependencies.sh = Scripts\launchpad-dependencies.sh Scripts\launchpad-publis.sh = Scripts\launchpad-publish.sh Scripts\launchpad-server-setup.sh = Scripts\launchpad-server-setup.sh Scripts\update-translations.sh = Scripts\update-translations.sh EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launchpad.Launcher", "Launchpad.Launcher\Launchpad.Launcher.csproj", "{676312FB-AF67-4340-B86F-9CCEB22D802F}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launchpad.Utilities", "Launchpad.Utilities\Launchpad.Utilities.csproj", "{BA9D77D3-1767-4D9C-80F3-409C52B03861}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launchpad.Tests", "Launchpad.Tests\Launchpad.Tests.csproj", "{3DCD158D-7903-47AE-8FCC-3292128DE213}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Launchpad.Common", "Launchpad.Common\Launchpad.Common.csproj", "{DDC53837-BA5A-41F3-8258-6224F3526A52}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Release|Any CPU = Release|Any CPU Debug|Any CPU = Debug|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {DDC53837-BA5A-41F3-8258-6224F3526A52}.Release|Any CPU.ActiveCfg = Release|Any CPU {DDC53837-BA5A-41F3-8258-6224F3526A52}.Release|Any CPU.Build.0 = Release|Any CPU {DDC53837-BA5A-41F3-8258-6224F3526A52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DDC53837-BA5A-41F3-8258-6224F3526A52}.Debug|Any CPU.Build.0 = Debug|Any CPU {676312FB-AF67-4340-B86F-9CCEB22D802F}.Release|Any CPU.ActiveCfg = Release|Any CPU {676312FB-AF67-4340-B86F-9CCEB22D802F}.Release|Any CPU.Build.0 = Release|Any CPU {676312FB-AF67-4340-B86F-9CCEB22D802F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {676312FB-AF67-4340-B86F-9CCEB22D802F}.Debug|Any CPU.Build.0 = Debug|Any CPU {3DCD158D-7903-47AE-8FCC-3292128DE213}.Release|Any CPU.ActiveCfg = Release|Any CPU {3DCD158D-7903-47AE-8FCC-3292128DE213}.Release|Any CPU.Build.0 = Release|Any CPU {3DCD158D-7903-47AE-8FCC-3292128DE213}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3DCD158D-7903-47AE-8FCC-3292128DE213}.Debug|Any CPU.Build.0 = Debug|Any CPU {BA9D77D3-1767-4D9C-80F3-409C52B03861}.Release|Any CPU.ActiveCfg = Release|Any CPU {BA9D77D3-1767-4D9C-80F3-409C52B03861}.Release|Any CPU.Build.0 = Release|Any CPU {BA9D77D3-1767-4D9C-80F3-409C52B03861}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BA9D77D3-1767-4D9C-80F3-409C52B03861}.Debug|Any CPU.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ================================================ FILE: Launchpad.sln.DotSettings ================================================  ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR Required Required Required Required Field, Property, Event NEVER False CLI FTP GUID HTML HTTP ID MD UI URI URL <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> 917504 True True True True True True True True True True True True ================================================ FILE: Launchpad.sln.iml ================================================ ================================================ FILE: Packaging/Debian/template/DEBIAN/control ================================================ package: launchpad version: 0.1.2 architecture: all depends: libnotify-cil-dev, libwebkitgtk-dev, libwebkit-cil-dev, libwebkit1.1-cil, mono-complete maintainer: Jarl Gullberg homepage: https://github.com/Nihlus/Launchpad section: game priority: optional installed-size: 2 description: Launchpad - Open-source generic game launcher A free, open-source game launcher for generic games. . Launchpad is produced, maintained and distributed by Jarl Gullberg. Anyone is free to fork Launchpad for use with their game, or to use it as-is. . It is designed to be feature-complete for what a basic game launcher should be, and currently handles: . * Installing * Updating * Verifying * Displaying a changelog . of your game. The default installation comes with a copy of the Unreal Engine 4 First Person Template (Epic Games 2015). ================================================ FILE: Packaging/Debian/template/usr/lib/Launchpad/readme.md ================================================ This directory represents a basic debian package for Launchpad. It's mostly used internally for me to easily package it. ================================================ FILE: Packaging/Debian/template/usr/share/applications/launchpad.desktop ================================================ [Desktop Entry] Name=Launchpad Comment=An open-source game launcher. Exec=/usr/bin/launchpad Icon=/usr/share/pixmaps/launchpad_icon.png Terminal=false Type=Application Categories=GNOME;GTK;Game ================================================ FILE: Packaging/Windows/setup_windows.iss ================================================ ; Script generated by the Inno Script Studio Wizard. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Launchpad" #define MyAppVersion "0.2.4.34678" #define MyAppPublisher "Jarl Gullberg" #define MyAppURL "https://github.com/Nihlus/Launchpad/" #define MyAppExeName "Launchpad.exe" ; ; Fill this out with the path to your built launchpad binaries. ; #define LaunchpadReleaseDir "..\..\release\launchpad-0.2.4.34678\bin" [Setup] ; NOTE: The value of AppId uniquely identifies this application. ; Do not use the same AppId value in installers for other applications. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) AppId={{B9676EA5-104E-4401-AF3F-EEDE45E3DA95} AppName={#MyAppName} AppVersion={#MyAppVersion} AppVerName={#MyAppName} AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} DefaultDirName={pf}\{#MyAppName} DefaultGroupName={#MyAppName} AllowNoIcons=yes OutputDir=C:\Users\Jarl\Desktop OutputBaseFilename={#MyAppName}-setup-{#MyAppVersion} Compression=lzma SolidCompression=yes UninstallDisplayIcon={app}\{#MyAppExeName} PrivilegesRequired=admin [UninstallDelete] Type: filesandordirs; Name: "{app}" [Languages] Name: "english"; MessagesFile: "compiler:Default.isl" [Tasks] Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; [Files] Source: "{#LaunchpadReleaseDir}\Launchpad.exe"; DestDir: "{app}"; Source: "{#LaunchpadReleaseDir}\*"; DestDir: "{app}"; Flags: recursesubdirs createallsubdirs ; Extra libraries - GTK# must be included. Source: "{#LaunchpadReleaseDir}\gtk-sharp-2.12.38.msi"; DestDir: "{tmp}"; [Icons] Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon [Dirs] Name: "{app}\"; Permissions: everyone-modify [Run] Filename: "msiexec.exe"; Parameters: "/i ""{tmp}\gtk-sharp-2.12.38.msi"" /qn"; Flags: runascurrentuser; Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: runascurrentuser nowait postinstall skipifsilent ================================================ FILE: README.md ================================================ Launchpad ========= An open-source launcher for your games. Launchpad was originally made for Unreal Engine 4, but supports arbitrary software and games. Chat on Discord with us! http://discord.gg/0uvPPH2sOmcalj0K [![Build Status](https://travis-ci.org/Nihlus/Launchpad.svg?branch=master)](https://travis-ci.org/Nihlus/Launchpad) [![codecov](https://codecov.io/gh/Nihlus/Launchpad/branch/master/graph/badge.svg)](https://codecov.io/gh/Nihlus/Launchpad) ![Launchpad (GTK# on Linux)](https://i.imgur.com/Xq1mtRl.png "Launchpad (GTK# on Linux)") ## Features * Self-updating * Can install, update and verify the game installation * Support for a number of widespread protocols (currently FTP and HTTP/HTTPS) ## Usage guide [Game Developer Quickstart](https://github.com/Nihlus/Launchpad/wiki/Game-Developer-Quickstart) Note for users installing on Unix - you may need to install some additional libraries for Launchpad to run. Simply run /Scripts/launchpad-dependencies.sh if your system is Debian or Debian-based, and it'll install them for you. ## Requirements ### Building #### Every OS * .NET Core SDK (>=2.0.0) * JetBrains Rider (or any IDE supporting the modern C# tooling) ### Running #### Linux & Mac * Mono (or 32-bit .NET Core) * libgtk-3-0 #### Windows * .NET 4.6.2 ## Contributing If you want to contribute code back to the project, great! Open a pull request with your changes based on the `master` branch and I'll gladly take a look. If you're not a developer, but want to contribute anyway, or if you just want to say thank you by buying me lunch, you can toss me some loose change via PayPal or Ko-Fi. [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=jarl%2egullberg%40gmail%2ecom&lc=SE&item_name=Launchpad&item_number=pad%2dgithub&no_note=0¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest) Buy Me a Coffee at ko-fi.com ## Code contributors * Jarl Gullberg ================================================ FILE: Scripts/launchpad-dependencies.sh ================================================ #!/bin/bash sudo apt-get install mono-complete sudo apt-get install libgtk-3-0 ================================================ FILE: Scripts/launchpad-publish.sh ================================================ #!/bin/bash # This script assumes that it is launched from the /Scripts/ directory in the Launchpad development tree. # If it is not, your results may be unexpected. # Move to the base folder where the script is located. cd $(dirname $0) LAUNCHPAD_ROOT=".." OUTPUT_ROOT="$LAUNCHPAD_ROOT/release" RED='\033[0;31m' GREEN='\033[0;32m' ORANGE='\033[0;33m' LOG_PREFIX="${GREEN}[Launchpad]:" LOG_PREFIX_ORANGE="${ORANGE}[Launchpad]:" LOG_PREFIX_RED="${RED}[Launchpad]:" LOG_SUFFIX='\033[0m' # Build a release version of launchpad echo -e "$LOG_PREFIX Building Release configuration of Launchpad Launcher... $LOG_SUFFIX" xbuild /p:Configuration="Release" "$LAUNCHPAD_ROOT/Launchpad.Launcher/Launchpad.Launcher.csproj" echo -e "$LOG_PREFIX Building Release configuration of Launchpad Utilities... $LOG_SUFFIX" xbuild /p:Configuration="Release" "$LAUNCHPAD_ROOT/Launchpad.Utilities/Launchpad.Utilities.csproj" LAUNCHPAD_ASSEMBLY_VERSION=$(monodis --assembly "$LAUNCHPAD_ROOT/Launchpad.Launcher/bin/Release/Launchpad.exe" | grep Version | egrep -o '[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*d*') echo -e "$LOG_PREFIX Copying files to output directory... $LOG_SUFFIX" # Create the root output directory if [ ! -d "$OUTPUT_ROOT" ]; then mkdir "$OUTPUT_ROOT" fi # Create a staging folder for this version mkdir "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION" mkdir "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/bin" # Copy the neccesary files echo "" echo -e "$LOG_PREFIX Updating and copying translation files... $LOG_SUFFIX" bash "$LAUNCHPAD_ROOT/Scripts/update-translations.sh" cp -r "$LAUNCHPAD_ROOT/Extras/locale" "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/bin" cp -r "$LAUNCHPAD_ROOT/Launchpad.Launcher/bin/Release/." "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/bin" # Generate launcher binary manifest echo "" echo -e "$LOG_PREFIX Generating launcher binary manifest... $LOG_SUFFIX" mono "$LAUNCHPAD_ROOT/Launchpad.Utilities/bin/Release/Launchpad.Utilities.exe" -b -d "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/bin" -m Launchpad echo "$LAUNCHPAD_ASSEMBLY_VERSION" > "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/LauncherVersion.txt" # Create compressed packages for distribution echo "" echo -e "$LOG_PREFIX Compressing binary packages... $LOG_SUFFIX" # Move to the release directory for compatibility purposes cd "$LAUNCHPAD_ROOT/release" echo -e "$LOG_PREFIX Compressing ZIP package... $LOG_SUFFIX" zip -r9 "launchpad-$LAUNCHPAD_ASSEMBLY_VERSION.zip" "launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/" echo "" echo -e "$LOG_PREFIX Compressing tarball... $LOG_SUFFIX" tar cfJ "launchpad-$LAUNCHPAD_ASSEMBLY_VERSION.tar.xz" "launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/" # Move back to the previous working directory cd - # Create simple debian package echo "" echo -e "$LOG_PREFIX Building Debian package... $LOG_SUFFIX" mkdir "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/" cp -r "$LAUNCHPAD_ROOT/Packaging/Debian/template/." "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/" cp -r "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/." "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/usr/lib/Launchpad/" rm "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/usr/lib/Launchpad/readme.md" # Update the package version in the control file sed -i "s/\(version *: \).*/\1$LAUNCHPAD_ASSEMBLY_VERSION/" "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/DEBIAN/control" dpkg -b "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/" # Offer remote upload capabilities echo "" echo -e "$LOG_PREFIX_ORANGE Would you like to upload the new version to a remote FTP server for distribution? $LOG_SUFFIX" echo -e "$LOG_PREFIX_ORANGE Note: You will be prompted for login information and a path to the upload directory. $LOG_SUFFIX" echo -e "$LOG_PREFIX_ORANGE The directory should look something like this (on Debian): '/srv/ftp/launcher/' $LOG_SUFFIX" echo "" echo -e "$LOG_PREFIX_RED Selecting this option will replace and publish this build. $LOG_SUFFIX" read -p "[y/n]" -r echo "" # (optional) move to a new line if [[ $REPLY =~ ^[Yy]$ ]]; then read -p "Enter remote host: " -r REMOTEHOST read -p "Enter remote username: " -r REMOTEUSER read -p "Enter full path to remote upload directory [/srv/ftp/launcher/]: " -r REMOTEUPLOAD read -p "Enter full path to remote binary directory [/var/www/files/public/Launchpad/Binaries]: " -r REMOTEUPLOADBINARIES # Give the remote launcher dir a default value if no input was provided if [ -z "$REMOTEUPLOAD" ]; then REMOTEUPLOAD="/srv/ftp/launcher/" fi # Give the remote binary dir a default value if no input was provided if [ -z "$REMOTEUPLOADBINARIES" ]; then REMOTEUPLOADBINARIES="/var/www/files/public/Launchpad/Binaries" fi # Make sure the remote launcher dir ends with a slash if [[ ! "$REMOTEUPLOADBINARIES" == */ ]]; then REMOTEUPLOAD+="/" fi # Make sure the remote binary dir ends with a slash if [[ ! "$REMOTEUPLOADBINARIES" == */ ]]; then REMOTEUPLOAD+="/" fi echo "" echo -e "$LOG_PREFIX Uploading files to remote server... $LOG_SUFFIX" # Upload the binaries used by the launcher to update itself ssh $REMOTEUSER@$REMOTEHOST "mkdir -p $REMOTEUPLOAD" #scp -r "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/." "$REMOTEUSER@$REMOTEHOST:$REMOTEUPLOAD" # Upload new packaged binaries (zip, tarball, debian) ssh $REMOTEUSER@$REMOTEHOST "mkdir -p $REMOTEUPLOADBINARIES" scp "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION.zip" "$REMOTEUSER@$REMOTEHOST:$REMOTEUPLOADBINARIES" scp "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION.tar.xz" "$REMOTEUSER@$REMOTEHOST:$REMOTEUPLOADBINARIES" scp "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all.deb" "$REMOTEUSER@$REMOTEHOST:$REMOTEUPLOADBINARIES" echo "" echo -e "$LOG_PREFIX Upload successful! $LOG_SUFFIX" fi echo "" echo -e "$LOG_PREFIX Cleaning up residual build files... $LOG_SUFFIX" rm -r "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION-all/" rm -r "$OUTPUT_ROOT/launchpad-$LAUNCHPAD_ASSEMBLY_VERSION/" echo "" echo -e "$LOG_PREFIX Done! $LOG_SUFFIX" ================================================ FILE: Scripts/launchpad-server-setup.sh ================================================ #!/bin/bash #check if we're running as root - this is required. bIsRoot=false if [ $(id -u) -eq 0 ] then bIsRoot=true else bIsRoot=false echo "This script needs to be run as root. Please run it with or ." exit 1 fi #check if vsftpd is installed #assume it is installed. bIsVsftpdInstalled=true echo "Checking for vsftpd..." #if no, #ask user if it should be installed. hash vsftpd 2>/dev/null || { echo >&2 "vsftpd is required software for this automated setup."; bIsVsftpdInstalled=false; } if [ "$bIsVsftpdInstalled" = false ] then read -p "Would you like to install it? [y/n] " -r if [[ $REPLY =~ ^[Yy]$ ]] then apt-get install vsftpd else exit 1; fi else echo "Vsftpd was installed, proceeding." fi #if yes, #modify the config options, uncommenting each echo "Allowing anonymous downloading of files..." sed -i "s/^#anonymous_enable/anonymous_enable/" /etc/vsftpd.conf sed -i "s/\(anonymous_enable *= *\).*/\1YES/" /etc/vsftpd.conf echo "Allowing local accounts to log in and write files..." sed -i "s/^#write_enable/write_enable/" /etc/vsftpd.conf sed -i "s/\(write_enable *= *\).*/\1YES/" /etc/vsftpd.conf echo "Setting local umask..." sed -i "s/^#local_umask/local_umask/" /etc/vsftpd.conf sed -i "s/\(local_umask *= *\).*/\1022/" /etc/vsftpd.conf echo "Prohibiting anonymous uploading of files..." sed -i "s/^#anon_upload_enable/anon_upload_enable/" /etc/vsftpd.conf sed -i "s/\(anon_upload_enable *= *\).*/\1NO/" /etc/vsftpd.conf echo "Changing service PAM name.." sed -i "s/^#pam_service_name/pam_service_name/" /etc/vsftpd.conf sed -i "s/\(pam_service_name *= *\).*/\1ftp/" /etc/vsftpd.conf service vsftpd restart #create folders echo "Creating folder structure in /srv/ftp..." cd /srv/ftp mkdir game mkdir game/Win64 mkdir game/Win32 mkdir game/Linux mkdir game/Mac mkdir game/Win64/bin mkdir game/Win32/bin mkdir game/Linux/bin mkdir game/Mac/bin mkdir launcher mkdir launcher/bin chown -R root:ftp game chown -R root:ftp launcher #vsftpd will fail voluntarily if the FTP root is writable, if we're jailing users. chmod ugo-w /srv/ftp chmod -R g+rwX game chmod -R o+r game chmod -R g+rwX launcher chmod -R o+r launcher echo "Folder structure created and permissions set." read -p "You will need an account in the ftp group to upload files to the server. Would you like to use an existing account, or create a new one? Note that you may need to log out and back in if you use an existing account. [Create - y/ Existing - n] " -r if [[ $REPLY =~ ^[Yy]$ ]] then useradd -d /srv/ftp --comment Launchpad-system -G ftp launchpad passwd launchpad else read -p "Input account name: " -r usermod -a -G ftp $REPLY fi echo "Setup successful. You can now start uploading your game and/or launcher via your selected accounts." ================================================ FILE: Scripts/update-translations.sh ================================================ #!/bin/bash # Move to the base folder where the script is located. cd $(dirname $0) LAUNCHPAD_TRANSLATIONS_ROOT="../Launchpad.Translations/" cd $LAUNCHPAD_TRANSLATIONS_ROOT mkdir "translations_update" cd "translations_update" wget https://crowdin.com/download/project/launchpad.zip unzip launchpad.zip for D in `find . -type d` do LOCALE_NAME=${D/./} LOCALE_NAME=${LOCALE_NAME///} LOCALE_NAME=${LOCALE_NAME/-/_} if [ ! -z "$LOCALE_NAME" ]; then cp "$D/messages.po" "../$LOCALE_NAME.po" mkdir -p "../../Launchpad.Launcher/Content/locale/$LOCALE_NAME/LC_MESSAGES/" cp "$D/messages.po" "../../Launchpad.Launcher/Content/locale/$LOCALE_NAME/LC_MESSAGES/messages.po" fi done rm launchpad.zip for D in `find . -type d` do if [ ! $D == "." ]; then rm -r $D fi done cd .. rm -r "translations_update" ================================================ FILE: appveyor.yml ================================================ image: Visual Studio 2019 init: - git config --global url."https://github.com/".insteadOf "git@github.com:" configuration: Debug platform: x86 before_build: - dotnet restore build: parallel: true project: Launchpad.sln test: assemblies: only: - Launchpad.Tests.dll ================================================ FILE: lib/gtk+-3.16-bundle-win32/etc/gtk-3.0/settings.ini ================================================ [Settings] gtk-theme-name=win32 ================================================ FILE: lib/gtk+-3.16-bundle-win32/lib/gdk-pixbuf-2.0/loaders.cache ================================================ # GdkPixbuf Image Loader Modules file # Automatically generated file, do not edit # Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.28.2 # # LoaderDir = lib/gdk-pixbuf-2.0/2.10.0/loaders # "./lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.dll" "svg" 2 "gdk-pixbuf" "Scalable Vector Graphics" "LGPL" "image/svg+xml" "image/svg" "image/svg-xml" "image/vnd.adobe.svg+xml" "text/xml-svg" "image/svg+xml-compressed" "" "svg" "svgz" "svg.gz" "" " 'red' ================================================ FILE: lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml ================================================ [] Custom colors An array of custom colors to show in the color chooser. Each color is specified as a tuple of four doubles, specifying RGBA values between 0 and 1. (false,1.0,1.0,1.0,1.0) The selected color The selected color, described as a tuple whose first member is a boolean that is true if a color was selected, and the remaining four members are four doubles, specifying RGBA values between 0 and 1. ================================================ FILE: lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.Debug.gschema.xml ================================================ true Enable inspector keybinding If this setting is true, GTK+ lets the user open an interactive debugging window with a keybinding. The default shortcuts for the keybinding are Control-Shift-I and Control-Shift-D. true Inspector warning If this setting is true, GTK+ shows a warning before letting the user use the interactive debugger. ================================================ FILE: lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml ================================================ "" 'path-bar' Location mode Controls whether the file chooser shows just a path bar, or a visible entry for the filename as well, for the benefit of typing-oriented users. The possible values for these modes are "path-bar" and "filename-entry". false Show hidden files Controls whether the file chooser shows hidden files or not. false Show folders first If set to true, then folders are shown before files in the list. false Expand folders This key is deprecated; do not use it. true Show file sizes Controls whether the file chooser shows a column with file sizes. 'name' Sort column Can be one of "name", "modified", or "size". It controls which of the columns in the file chooser is used for sorting the list of files. 'ascending' Sort order Can be one of the strings "ascending" or "descending". (-1, -1) Window position The (x, y) coordinates of the upper-left corner of the GtkFileChooserDialog's window. (-1, -1) Window size The size (width, height) of the GtkFileChooserDialog's window, in pixels. 'recent' Startup mode Either "recent" or "cwd"; controls whether the file chooser starts up showing the list of recently-used files, or the contents of the current working directory. 148 Sidebar width Width in pixels of the file chooser's places sidebar. '24h' Time format Whether the time is shown in 24h or 12h format. ================================================ FILE: lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.exampleapp.gschema.xml ================================================ 'Monospace 12' Font The font to be used for content. 'none' Transition The transition to use when switching tabs. false Show words Whether to show a word list in the sidebar ================================================ FILE: stylecop.json ================================================ { "$schema" : "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", "settings" : { "indentation" : { "indentationSize" : 4, "tabSize" : 4, "useTabs" : false }, "spacingRules" : { }, "readabilityRules" : { }, "orderingRules" : { "elementOrder" : [ "kind", "constant", "accessibility", "static", "readonly" ], "systemUsingDirectivesFirst" : true, "usingDirectivesPlacement" : "outsideNamespace", "blankLinesBetweenUsingGroups" : "allow" }, "namingRules" : { "allowCommonHungarianPrefixes" : true, "allowedHungarianPrefixes" : [ "gl", "f", "db" ] }, "maintainabilityRules" : { "topLevelTypes" : [ "class", "interface", "struct", "enum" ] }, "layoutRules" : { "newlineAtEndOfFile" : "require", "allowConsecutiveUsings" : false }, "documentationRules" : { "companyName" : "Jarl Gullberg", "copyrightText" : "\n {fileName}\n\n Author:\n {author}\n\n Copyright (c) {year} {companyName}\n\n This program is free software: you can redistribute it and\/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n", "variables" : { "licenseFile": "LICENSE", "year" : "2017", "author" : "Jarl Gullberg " }, "xmlHeader" : false, "documentInterfaces" : true, "documentExposedElements" : true, "documentInternalElements" : true, "documentPrivateElements" : false, "documentPrivateFields" : false, "documentationCulture" : "en-US", "fileNamingConvention" : "stylecop" } } } ================================================ FILE: stylecop.ruleset ================================================