Full Code of Nihlus/Launchpad for AI

master 1d62d68683fb cached
157 files
789.3 KB
218.7k tokens
215 symbols
1 requests
Download .txt
Showing preview only (857K chars total). Download the full file or copy to clipboard to get everything.
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
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="Encoding" addBOMForNewFiles="with NO BOM" />
</project>

================================================
FILE: .idea/.idea.Launchpad/.idea/indexLayout.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="UserContentModel">
    <attachedFolders />
    <explicitIncludes />
    <explicitExcludes />
  </component>
</project>

================================================
FILE: .idea/.idea.Launchpad/.idea/markdown-exported-files.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="MarkdownExportedFiles">
    <htmlFiles />
    <imageFiles />
    <otherFiles />
  </component>
</project>

================================================
FILE: .idea/.idea.Launchpad/.idea/markdown-navigator/profiles_settings.xml
================================================
<component name="MarkdownNavigator.ProfileManager">
  <settings default="" pdf-export="" />
</component>

================================================
FILE: .idea/.idea.Launchpad/.idea/markdown-navigator.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="MarkdownProjectSettings">
    <PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" showGitHubPageIfSynced="false" allowBrowsingInPreview="false" synchronizePreviewPosition="true" highlightPreviewType="NONE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="false" showSelectionInPreview="true">
      <PanelProvider>
        <provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.panel" providerName="Default - Swing" />
      </PanelProvider>
    </PreviewSettings>
    <ParserSettings gitHubSyntaxChange="false">
      <PegdownExtensions>
        <option name="ABBREVIATIONS" value="false" />
        <option name="ANCHORLINKS" value="true" />
        <option name="ASIDE" value="false" />
        <option name="ATXHEADERSPACE" value="true" />
        <option name="AUTOLINKS" value="true" />
        <option name="DEFINITIONS" value="false" />
        <option name="DEFINITION_BREAK_DOUBLE_BLANK_LINE" value="false" />
        <option name="FENCED_CODE_BLOCKS" value="true" />
        <option name="FOOTNOTES" value="false" />
        <option name="HARDWRAPS" value="false" />
        <option name="INSERTED" value="false" />
        <option name="QUOTES" value="false" />
        <option name="RELAXEDHRULES" value="true" />
        <option name="SMARTS" value="false" />
        <option name="STRIKETHROUGH" value="true" />
        <option name="SUBSCRIPT" value="false" />
        <option name="SUPERSCRIPT" value="false" />
        <option name="SUPPRESS_HTML_BLOCKS" value="false" />
        <option name="SUPPRESS_INLINE_HTML" value="false" />
        <option name="TABLES" value="true" />
        <option name="TASKLISTITEMS" value="true" />
        <option name="TOC" value="false" />
        <option name="WIKILINKS" value="true" />
      </PegdownExtensions>
      <ParserOptions>
        <option name="COMMONMARK_LISTS" value="true" />
        <option name="DUMMY" value="false" />
        <option name="EMOJI_SHORTCUTS" value="true" />
        <option name="FLEXMARK_FRONT_MATTER" value="false" />
        <option name="GFM_LOOSE_BLANK_LINE_AFTER_ITEM_PARA" value="false" />
        <option name="GFM_TABLE_RENDERING" value="true" />
        <option name="GITBOOK_URL_ENCODING" value="false" />
        <option name="GITHUB_EMOJI_URL" value="false" />
        <option name="GITHUB_LISTS" value="false" />
        <option name="GITHUB_WIKI_LINKS" value="true" />
        <option name="JEKYLL_FRONT_MATTER" value="false" />
        <option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
      </ParserOptions>
    </ParserSettings>
    <HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" embedUrlContent="false" addPageHeader="true">
      <GeneratorProvider>
        <provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.generator" providerName="Default Swing HTML Generator" />
      </GeneratorProvider>
      <headerTop />
      <headerBottom />
      <bodyTop />
      <bodyBottom />
    </HtmlSettings>
    <CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssTextEnabled="false" isDynamicPageWidth="true">
      <StylesheetProvider>
        <provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.css" providerName="Default Swing Stylesheet" />
      </StylesheetProvider>
      <ScriptProviders />
      <cssText />
    </CssSettings>
    <HtmlExportSettings updateOnSave="false" parentDir="$ProjectFileDir$" targetDir="$ProjectFileDir$" cssDir="" scriptDir="" plainHtml="false" imageDir="" copyLinkedImages="false" imageUniquifyType="0" targetExt="" useTargetExt="false" noCssNoScripts="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" />
    <LinkMapSettings>
      <textMaps />
    </LinkMapSettings>
  </component>
</project>

================================================
FILE: .idea/.idea.Launchpad/.idea/misc.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="com.jetbrains.rider.android.RiderAndroidMiscFileCreationComponent">
    <option name="ENSURE_MISC_FILE_EXISTS" value="true" />
  </component>
</project>

================================================
FILE: .idea/.idea.Launchpad/.idea/projectSettingsUpdater.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="RiderProjectSettingsUpdater">
    <option name="vcsConfiguration" value="2" />
  </component>
</project>


================================================
FILE: .idea/.idea.Launchpad/.idea/vcs.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="$PROJECT_DIR$" vcs="Git" />
  </component>
</project>

================================================
FILE: Directory.Build.props
================================================
<!--
    This file contains common properties for all DIGOS.Ambassador projects. It is divided into multiple sections,
    depending on the use case for the properties.
-->

<Project>
    <!-- Common properties for all projects -->
    <PropertyGroup>
        <LangVersion>latest</LangVersion>
        <Deterministic>true</Deterministic>
        <DebugSymbols>true</DebugSymbols>

        <TargetFramework>net8.0</TargetFramework>

        <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
        <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
    </PropertyGroup>

    <PropertyGroup>
        <SolutionDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)/))</SolutionDir>
    </PropertyGroup>

    <Choose>
        <When Condition="'$(TargetFramework.TrimEnd(`0123456789.`))' == 'netcoreapp'">
            <PropertyGroup>
                <IsRunnableTarget>true</IsRunnableTarget>
            </PropertyGroup>
        </When>
        <Otherwise>
            <PropertyGroup>
                <IsRunnableTarget>false</IsRunnableTarget>
            </PropertyGroup>
        </Otherwise>
    </Choose>

    <!-- NuGet-related properties -->
    <PropertyGroup>
        <Title>$(AssemblyName)</Title>
        <Authors>Jarl Gullberg</Authors>
        <Copyright>Jarl Gullberg 2020</Copyright>
        <PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
        <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

        <IncludeSymbols>true</IncludeSymbols>
        <IncludeSource>true</IncludeSource>

        <RepositoryUrl>https://github.com/Nihlus/Launchpad</RepositoryUrl>
        <RepositoryBranch>master</RepositoryBranch>
        <PackageOutputPath>$(SolutionDir)/nuget</PackageOutputPath>
        <PackageProjectUrl>https://github.com/Nihlus/Launchpad</PackageProjectUrl>
        <PackageTags>launcher;game;free;</PackageTags>
    </PropertyGroup>

    <!-- Code inspection properties -->
    <PropertyGroup>
        <StyleCopRuleset>$(SolutionDir)/stylecop.ruleset</StyleCopRuleset>
        <StyleCopConfiguration>$(SolutionDir)/stylecop.json</StyleCopConfiguration>

        <Nullable>enable</Nullable>

        <GenerateDocumentationFile>true</GenerateDocumentationFile>

        <RunCodeAnalysis>true</RunCodeAnalysis>
        <CodeAnalysisRuleSet>$(StyleCopRuleset)</CodeAnalysisRuleSet>
        <WarningsAsErrors>
            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;
        </WarningsAsErrors>
        <NoWarn>
            CS8632;
        </NoWarn>
    </PropertyGroup>

    <ItemGroup>
        <AdditionalFiles Include="$(StyleCopConfiguration)">
            <Link>stylecop.json</Link>
            <InProject>false</InProject>
        </AdditionalFiles>
        <AdditionalFiles Include="$(StyleCopRuleset">
            <Link>stylecop.ruleset</Link>
            <InProject>false</InProject>
        </AdditionalFiles>
    </ItemGroup>

    <ItemGroup>
        <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" PrivateAssets="all" />
        <PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" />
    </ItemGroup>

    <!-- JetBrains Annotations -->
    <ItemGroup>
        <PackageReference Include="JetBrains.Annotations" Version="2023.3.0" PrivateAssets="all" />
    </ItemGroup>
</Project>


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 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 <http://www.gnu.org/licenses/>.

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
<http://www.gnu.org/licenses/>.

  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
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

================================================
FILE: Launchpad.Common/Enums/EManifestType.cs
================================================
//
//  EManifestType.cs
//
//  Author:
//       Jarl Gullberg <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

namespace Launchpad.Common.Enums;

/// <summary>
/// Enum defining the type of manifest.
/// </summary>
public enum EManifestType
{
    /// <summary>
    /// An unknown manifest.
    /// </summary>
    Unknown = 0,

    /// <summary>
    /// A launcher manifest.
    /// </summary>
    Launchpad = 1,

    /// <summary>
    /// A game manifest.
    /// </summary>
    Game = 2
}


================================================
FILE: Launchpad.Common/Enums/ESystemTarget.cs
================================================
//
//  ESystemTarget.cs
//
//  Author:
//       Jarl Gullberg <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

#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 <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using System.Collections.Generic;

namespace Launchpad.Common;

/// <summary>
/// Various extension methods.
/// </summary>
public static class ExtensionMethods
{
    /// <summary>
    /// Sanitizes the input string, removing any \n, \r, or \0 characters.
    /// </summary>
    /// <param name="input">Input string.</param>
    /// <returns>The string, without the illegal characters.</returns>
    public static string RemoveLineSeparatorsAndNulls(this string input)
    {
        return input.Replace("\n", string.Empty).Replace("\0", string.Empty).Replace("\r", string.Empty);
    }

    /// <summary>
    /// 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.
    /// </summary>
    /// <param name="dictionary">The dictionary to update.</param>
    /// <param name="key">The key of the provided value.</param>
    /// <param name="value">The value to add or update.</param>
    /// <typeparam name="TKey">The type of the key.</typeparam>
    /// <typeparam name="TValue">The type of the value.</typeparam>
    public static void AddOrUpdate<TKey, TValue>(this IDictionary<TKey, TValue> 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 <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using System.IO;
using System.Security.Cryptography;

namespace Launchpad.Common.Handlers;

/// <summary>
/// MD5 hashing handler. Used to ensure file integrity.
/// </summary>
public static class MD5Handler
{
    /// <summary>
    /// Gets the file hash from a data stream.
    /// </summary>
    /// <returns>The hash.</returns>
    /// <param name="dataStream">File stream.</param>
    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 <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using System.Diagnostics.CodeAnalysis;

namespace Launchpad.Common.Handlers.Manifest;

/// <summary>
/// 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.
/// </summary>
public sealed class ManifestEntry : IEquatable<ManifestEntry>
{
    /// <summary>
    /// Gets the path of the file, relative to the game directory.
    /// </summary>
    public string RelativePath { get; }

    /// <summary>
    /// Gets the MD5 hash of the file.
    /// </summary>
    public string Hash { get; }

    /// <summary>
    /// Gets the size in bytes of the file.
    /// </summary>
    public long Size { get; }

    /// <summary>
    /// Initializes a new instance of the <see cref="ManifestEntry"/> class.
    /// </summary>
    /// <param name="relativePath">The relative path to the file.</param>
    /// <param name="hash">The hash of the file.</param>
    /// <param name="size">The size in bytes of the file.</param>
    public ManifestEntry(string relativePath, string hash, long size)
    {
        this.RelativePath = relativePath;
        this.Hash = hash;
        this.Size = size;
    }

    /// <summary>
    /// 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.
    /// </summary>
    /// <returns><c>true</c>, if the input was successfully parse, <c>false</c> otherwise.</returns>
    /// <param name="rawInput">Raw input.</param>
    /// <param name="inEntry">The resulting entry.</param>
    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;
    }

    /// <summary>
    /// Returns a <see cref="string"/> that represents the current <see cref="ManifestEntry"/>.
    /// The returned value matches a raw in-manifest representation of the entry, in the form of
    /// [path]:[hash]:[size].
    /// </summary>
    /// <returns>A <see cref="string"/> that represents the current <see cref="ManifestEntry"/>.</returns>
    public override string ToString()
    {
        return $"{this.RelativePath}:{this.Hash}:{this.Size}";
    }

    /// <summary>
    /// Determines whether the specified <see cref="object"/> is equal to the current <see cref="ManifestEntry"/>.
    /// </summary>
    /// <param name="obj">The <see cref="object"/> to compare with the current <see cref="ManifestEntry"/>.</param>
    /// <returns><c>true</c> if the specified <see cref="object"/> is equal to the current
    /// <see cref="ManifestEntry"/>; otherwise, <c>false</c>.</returns>
    public override bool Equals(object? obj)
    {
        return Equals(obj as ManifestEntry);
    }

    /// <inheritdoc />
    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;
    }

    /// <summary>
    /// Serves as a hash function for a <see cref="ManifestEntry"/> object.
    /// </summary>
    /// <returns>A hash code for this instance that is suitable for use in hashing algorithms and data structures such as a hash table.</returns>
    public override int GetHashCode()
    {
        return ToString().GetHashCode();
    }
}


================================================
FILE: Launchpad.Common/Handlers/Manifest/ManifestHandler.cs
================================================
//
//  ManifestHandler.cs
//
//  Author:
//       Jarl Gullberg <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using System.Collections.Generic;
using System.IO;

using Launchpad.Common.Enums;
using Remora.Results;

namespace Launchpad.Common.Handlers.Manifest;

/// <summary>
/// Handler class for the game manifest.
/// </summary>
public sealed class ManifestHandler
{
    private readonly object _manifestsLock = new object();

    /// <summary>
    /// The local base directory of the running assembly. Used to produce relative paths for manifest-related
    /// files and folders.
    /// </summary>
    private readonly string _localBaseDirectory;

    /// <summary>
    /// The remote <see cref="Uri"/> where the manifest files are expected to be.
    /// </summary>
    private readonly Uri _remoteURL;

    /// <summary>
    /// The target system for which the handler should retrieve files.
    /// </summary>
    private readonly ESystemTarget _systemTarget;

    private readonly Dictionary<EManifestType, IReadOnlyList<ManifestEntry>> _manifests;
    private readonly Dictionary<EManifestType, IReadOnlyList<ManifestEntry>> _oldManifests;

    /// <summary>
    /// Initializes a new instance of the <see cref="ManifestHandler"/> class.
    /// This constructor also serves to updated outdated file paths for the manifests.
    /// </summary>
    /// <param name="localBaseDirectory">The local base directory of the launcher installation.</param>
    /// <param name="remoteURL">The remote <see cref="Uri"/> where the manifest files are expected to be.</param>
    /// <param name="systemTarget">The target system for which the handler should retrieve files.</param>
    public ManifestHandler(string localBaseDirectory, Uri remoteURL, ESystemTarget systemTarget)
    {
        _manifests = new Dictionary<EManifestType, IReadOnlyList<ManifestEntry>>();
        _oldManifests = new Dictionary<EManifestType, IReadOnlyList<ManifestEntry>>();

        _localBaseDirectory = localBaseDirectory;
        _remoteURL = remoteURL;
        _systemTarget = systemTarget;
    }

    /// <summary>
    /// Gets the specified manifest currently held by the launcher. The return value of this method may be null if no
    /// manifest could be retrieved.
    /// </summary>
    /// <param name="manifestType">The type of manifest to retrieve, that is, the manifest for a specific component.</param>
    /// <param name="getOldManifest">Whether or not the old manifest or the new manifest should be retrieved.</param>
    /// <returns>A list of <see cref="ManifestEntry"/> objects.</returns>
    /// <exception cref="ArgumentOutOfRangeException">Thrown if the <paramref name="manifestType"/> is not a known value.</exception>
    public Result<IReadOnlyList<ManifestEntry>> GetManifest(EManifestType manifestType, bool getOldManifest)
    {
        lock (_manifestsLock)
        {
            if (getOldManifest)
            {
                if (_oldManifests.TryGetValue(manifestType, out var oldManifest))
                {
                    return Result<IReadOnlyList<ManifestEntry>>.FromSuccess(oldManifest);
                }
            }
            else
            {
                if (_manifests.TryGetValue(manifestType, out var manifest))
                {
                    return Result<IReadOnlyList<ManifestEntry>>.FromSuccess(manifest);
                }
            }
        }

        return new NotFoundError("No manifest found.");
    }

    /// <summary>
    /// Reloads all manifests of the specified type from disk.
    /// </summary>
    /// <param name="manifestType">The type of manifest to reload.</param>
    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));
            }
        }
    }

    /// <summary>
    /// Loads a manifest from a file on disk.
    /// </summary>
    /// <param name="manifestPath">The path to a manifest file.</param>
    /// <returns>A list of <see cref="ManifestEntry"/> objects.</returns>
    public static IReadOnlyList<ManifestEntry> LoadManifest(string manifestPath)
    {
        using var fileStream = File.OpenRead(manifestPath);
        return LoadManifest(fileStream);
    }

    /// <summary>
    /// Loads a manifest from a <see cref="Stream"/>.
    /// </summary>
    /// <param name="manifestStream">A stream containing a manifest.</param>
    /// <returns>A read-only list of <see cref="ManifestEntry"/> objects.</returns>
    public static IReadOnlyList<ManifestEntry> LoadManifest(Stream manifestStream)
    {
        var rawManifest = new List<string>();
        using (var sr = new StreamReader(manifestStream))
        {
            string? line;
            while ((line = sr.ReadLine()) != null)
            {
                rawManifest.Add(line);
            }
        }

        var manifest = new List<ManifestEntry>();
        foreach (var rawEntry in rawManifest)
        {
            if (ManifestEntry.TryParse(rawEntry, out var newEntry))
            {
                manifest.Add(newEntry);
            }
        }

        return manifest;
    }

    /// <summary>
    /// Gets the specified manifest's path on disk. The presence of the manifest is not guaranteed at
    /// this point.
    /// </summary>
    /// <param name="manifestType">The type of manifest to get the path to.</param>
    /// <param name="getOldManifestPath">Whether or not the path should specify an old manifest.</param>
    /// <returns>A fully qualified path to where a manifest should be.</returns>
    public string GetManifestPath(EManifestType manifestType, bool getOldManifestPath)
    {
        var manifestPath = Path.Combine(_localBaseDirectory, $"{manifestType}Manifest.txt");

        if (getOldManifestPath)
        {
            manifestPath += ".old";
        }

        return manifestPath;
    }

    /// <summary>
    /// Gets the manifest URL for the specified manifest type.
    /// </summary>
    /// <param name="manifestType">The type of manifest to get the URL of.</param>
    /// <returns>The game manifest URL.</returns>
    public string GetManifestURL(EManifestType manifestType)
    {
        if (manifestType == EManifestType.Launchpad)
        {
            return $"{_remoteURL}/launcher/{manifestType}Manifest.txt";
        }

        return $"{_remoteURL}/game/{_systemTarget}/{manifestType}Manifest.txt";
    }

    /// <summary>
    /// Gets the manifest URL for the specified manifest type.
    /// </summary>
    /// <param name="manifestType">The type of manifest to get the URL of.</param>
    /// <returns>The game manifest URL.</returns>
    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
================================================
<Project Sdk="Microsoft.NET.Sdk">
  <ItemGroup>
    <PackageReference Include="Remora.Results" Version="7.4.1" />
    <PackageReference Update="Nullable" Version="1.3.1" />
    <PackageReference Update="JetBrains.Annotations" Version="2023.3.0" />
  </ItemGroup>
</Project>


================================================
FILE: Launchpad.Common/PlatformHelpers.cs
================================================
//
//  PlatformHelpers.cs
//
//  Author:
//       Jarl Gullberg <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using System.Runtime.InteropServices;
using Launchpad.Common.Enums;

namespace Launchpad.Common;

/// <summary>
/// Helper methods for determining the current platform.
/// </summary>
public static class PlatformHelpers
{
    /// <summary>
    /// Determines whether this instance is running on Unix.
    /// </summary>
    /// <returns><c>true</c> if this instance is running on unix; otherwise, <c>false</c>.</returns>
    public static bool IsRunningOnUnix()
    {
        var currentPlatform = GetCurrentPlatform();
        return currentPlatform == ESystemTarget.Linux || currentPlatform == ESystemTarget.Mac;
    }

    /// <summary>
    /// Gets the current platform the launcher is running on.
    /// </summary>
    /// <returns>The current platform.</returns>
    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 <jarl.gullberg@gmail.com>
//
//  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 <http://www.gnu.org/licenses/>.
//

using System;
using Config.Net;
using Launchpad.Common.Enums;

namespace Launchpad.Launcher.Configuration;

/// <summary>
/// Configuration file interface.
/// </summary>
public interface ILaunchpadConfiguration
{
    // Launcher section
    // ...

    /// <summary>
    /// Gets or sets the address where the changelog is hosted.
    /// </summary>
    [Option(Alias = "Launcher.ChangelogAddress", DefaultValue = "http://www.example.com/launchpad/changelog/changelog.html")]
    Uri ChangelogAddress { get; set; }

    /// <summary>
    /// Gets or sets the system target of the launcher.
    /// </summary>
    [Option(Alias = "Launcher.SystemTarget", DefaultValue = "Linux")]
    ESystemTarget SystemTarget { get; set; }

    // Game section
    // ...

    /// <summary>
    /// Gets or sets the name of the game.
    /// </summary>
    [Option(Alias = "Game.Name", DefaultValue = "LaunchpadExample")]
    string GameName { get; set; }

    /// <summary>
    /// Gets or sets the path to the game's executable, relative to the launcher.
    /// </summary>
    [Option(Alias = "Game.ExecutablePath", DefaultValue = "LaunchpadExample/Binaries/Linux/LaunchpadExample")]
    string ExecutablePath { get; set; }

    // Remote section
    // ...

    /// <summary>
    /// Gets or sets the address of the remote server.
    /// </summary>
    [Option(Alias = "Remote.Address", DefaultValue = "ftp://ftp.example.com")]
    Uri RemoteAddress { get; set; }

    /// <summary>
    /// Gets or sets the username to use when authenticating with the remote server.
    /// </summary>
    [Option(Alias = "Remote.Username", DefaultValue = "anonymous")]
    string RemoteUsername { get; set; }

    /// <summary>
    /// Gets or sets the password to use when authenticating with the remote server.
    /// </summary>
    [Option(Alias = "Remote.Password", DefaultValue = "anonymous")]
    string RemotePassword { get; set; }

    /// <summary>
    /// Gets or sets the number of times to retry file downloads.
    /// </summary>
    [Option(Alias = "Remote.FileDownloadRetries", DefaultValue = 2)]
    int RemoteFileDownloadRetries { get; set; }

    /// <summary>
    /// Gets or sets the buffer size to use when downloading files.
    /// </summary>
    [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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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 <jarl.gullberg@gmail.com>\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
#: 
Download .txt
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
Download .txt
SYMBOL INDEX (215 symbols across 38 files)

FILE: Launchpad.Common/Enums/EManifestType.cs
  type EManifestType (line 28) | public enum EManifestType

FILE: Launchpad.Common/Enums/ESystemTarget.cs
  type ESystemTarget (line 27) | public enum ESystemTarget

FILE: Launchpad.Common/ExtensionMethods.cs
  class ExtensionMethods (line 31) | public static class ExtensionMethods
    method RemoveLineSeparatorsAndNulls (line 38) | public static string RemoveLineSeparatorsAndNulls(this string input)
    method AddOrUpdate (line 52) | public static void AddOrUpdate<TKey, TValue>(this IDictionary<TKey, TV...

FILE: Launchpad.Common/Handlers/MD5Handler.cs
  class MD5Handler (line 32) | public static class MD5Handler
    method GetStreamHash (line 39) | public static string GetStreamHash(Stream dataStream)

FILE: Launchpad.Common/Handlers/Manifest/ManifestEntry.cs
  class ManifestEntry (line 33) | public sealed class ManifestEntry : IEquatable<ManifestEntry>
    method ManifestEntry (line 56) | public ManifestEntry(string relativePath, string hash, long size)
    method TryParse (line 71) | public static bool TryParse(string rawInput, [NotNullWhen(true)] out M...
    method ToString (line 136) | public override string ToString()
    method Equals (line 147) | public override bool Equals(object? obj)
    method Equals (line 153) | public bool Equals(ManifestEntry? other)
    method GetHashCode (line 169) | public override int GetHashCode()

FILE: Launchpad.Common/Handlers/Manifest/ManifestHandler.cs
  class ManifestHandler (line 35) | public sealed class ManifestHandler
    method ManifestHandler (line 65) | public ManifestHandler(string localBaseDirectory, Uri remoteURL, ESyst...
    method GetManifest (line 83) | public Result<IReadOnlyList<ManifestEntry>> GetManifest(EManifestType ...
    method ReloadManifests (line 110) | public void ReloadManifests(EManifestType manifestType)
    method LoadManifest (line 136) | public static IReadOnlyList<ManifestEntry> LoadManifest(string manifes...
    method LoadManifest (line 147) | public static IReadOnlyList<ManifestEntry> LoadManifest(Stream manifes...
    method GetManifestPath (line 178) | public string GetManifestPath(EManifestType manifestType, bool getOldM...
    method GetManifestURL (line 195) | public string GetManifestURL(EManifestType manifestType)
    method GetManifestChecksumURL (line 210) | public string GetManifestChecksumURL(EManifestType manifestType)

FILE: Launchpad.Common/PlatformHelpers.cs
  class PlatformHelpers (line 32) | public static class PlatformHelpers
    method IsRunningOnUnix (line 38) | public static bool IsRunningOnUnix()
    method GetCurrentPlatform (line 48) | public static ESystemTarget GetCurrentPlatform()

FILE: Launchpad.Launcher/Configuration/ILaunchpadConfiguration.cs
  type ILaunchpadConfiguration (line 32) | public interface ILaunchpadConfiguration

FILE: Launchpad.Launcher/Extensions/ManifestEntryExtensions.cs
  class ManifestEntryExtensions (line 33) | public static class ManifestEntryExtensions
    method IsFileIntegrityIntact (line 41) | public static bool IsFileIntegrityIntact(this ManifestEntry entry, Dir...

FILE: Launchpad.Launcher/Handlers/ChecksHandler.cs
  class ChecksHandler (line 37) | public sealed class ChecksHandler
    method ChecksHandler (line 60) | public ChecksHandler(ILogger<ChecksHandler> log, PatchProtocolHandler ...
    method CanPatchAsync (line 71) | public Task<Result<bool>> CanPatchAsync() => _patch.CanPatchAsync();
    method IsInitialStartup (line 77) | public bool IsInitialStartup()
    method IsGameInstalled (line 87) | public bool IsGameInstalled()
    method IsGameOutdatedAsync (line 113) | public Task<Result<bool>> IsGameOutdatedAsync()
    method IsLauncherOutdatedAsync (line 120) | public Task<Result<bool>> IsLauncherOutdatedAsync()
    method IsInstallCookieEmpty (line 127) | private bool IsInstallCookieEmpty()
    method IsPlatformAvailableAsync (line 146) | public Task<Result<bool>> IsPlatformAvailableAsync(ESystemTarget platf...

FILE: Launchpad.Launcher/Handlers/ConfigHandler.cs
  class ConfigHandler (line 33) | public sealed class ConfigHandler
    method ConfigHandler (line 43) | public ConfigHandler()
    method InitializeConfigurationFile (line 56) | private void InitializeConfigurationFile()

FILE: Launchpad.Launcher/Handlers/GameHandler.cs
  class GameHandler (line 48) | public sealed class GameHandler
    method GameHandler (line 110) | public GameHandler
    method InstallGameAsync (line 137) | public async Task InstallGameAsync()
    method UpdateGameAsync (line 147) | public async Task UpdateGameAsync()
    method VerifyGameAsync (line 157) | public async Task VerifyGameAsync()
    method ReinstallGameAsync (line 167) | public async Task ReinstallGameAsync()
    method LaunchGame (line 188) | public void LaunchGame()
    method OnModuleInstallProgressChanged (line 265) | private void OnModuleInstallProgressChanged(object? sender, ModuleProg...
    method OnModuleInstallationFinished (line 276) | private void OnModuleInstallationFinished(object? sender, EModule e)
    method OnModuleInstallationFailed (line 287) | private void OnModuleInstallationFailed(object? sender, EModule e)
    method OnGameLaunchFailed (line 295) | private void OnGameLaunchFailed()
    method OnGameExited (line 303) | private void OnGameExited(int exitCode)

FILE: Launchpad.Launcher/Handlers/LauncherHandler.cs
  class LauncherHandler (line 45) | public sealed class LauncherHandler
    method LauncherHandler (line 80) | public LauncherHandler
    method UpdateLauncherAsync (line 99) | public async Task UpdateLauncherAsync()
    method CanAccessStandardChangelog (line 117) | public async Task<bool> CanAccessStandardChangelog()
    method CreateUpdateScript (line 151) | public ProcessStartInfo CreateUpdateScript()
    method GetUpdateScriptSource (line 189) | private string GetUpdateScriptSource()
    method GetUpdateScriptResourceName (line 217) | private static string GetUpdateScriptResourceName()
    method GetUpdateScriptPath (line 232) | private static string GetUpdateScriptPath()
    method OnLauncherDownloadProgressChanged (line 242) | private void OnLauncherDownloadProgressChanged(object? sender, ModuleP...
    method OnLauncherDownloadFinished (line 247) | private void OnLauncherDownloadFinished(object? sender, EModule e)

FILE: Launchpad.Launcher/Handlers/Protocols/EModule.cs
  type EModule (line 28) | public enum EModule : byte

FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/FTPProtocolHandler.cs
  class FTPProtocolHandler (line 47) | internal sealed class FTPProtocolHandler : ManifestBasedProtocolHandler
    method FTPProtocolHandler (line 64) | public FTPProtocolHandler
    method CanPatchAsync (line 89) | public override async Task<Result<bool>> CanPatchAsync()
    method IsPlatformAvailableAsync (line 149) | public override Task<Result<bool>> IsPlatformAvailableAsync(ESystemTar...
    method GetChangelogMarkupAsync (line 157) | public override Task<Result<string>> GetChangelogMarkupAsync()
    method CanProvideBannerAsync (line 164) | public override Task<Result<bool>> CanProvideBannerAsync()
    method GetBannerAsync (line 172) | public override async Task<Result<Image<Rgba32>>> GetBannerAsync()
    method ReadRemoteFileAsync (line 184) | protected override async Task<Result<string>> ReadRemoteFileAsync(stri...
    method DownloadRemoteFileAsync (line 272) | protected override async Task<Result> DownloadRemoteFileAsync
    method CreateFtpWebRequest (line 415) | private Result<FtpWebRequest> CreateFtpWebRequest(string remotePath, s...
    method DoesRemoteFileExistAsync (line 464) | private async Task<Result<bool>> DoesRemoteFileExistAsync(string remot...

FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/HTTPProtocolHandler.cs
  class HTTPProtocolHandler (line 46) | internal sealed class HTTPProtocolHandler : ManifestBasedProtocolHandler
    method HTTPProtocolHandler (line 63) | public HTTPProtocolHandler
    method CanPatchAsync (line 88) | public override async Task<Result<bool>> CanPatchAsync()
    method IsPlatformAvailableAsync (line 137) | public override Task<Result<bool>> IsPlatformAvailableAsync(ESystemTar...
    method GetChangelogMarkupAsync (line 145) | public override Task<Result<string>> GetChangelogMarkupAsync()
    method CanProvideBannerAsync (line 152) | public override Task<Result<bool>> CanProvideBannerAsync()
    method GetBannerAsync (line 160) | public override async Task<Result<Image<Rgba32>>> GetBannerAsync()
    method DownloadRemoteFileAsync (line 170) | protected override async Task<Result> DownloadRemoteFileAsync
    method ReadRemoteFileAsync (line 271) | protected override async Task<Result<string>> ReadRemoteFileAsync
    method CreateHttpWebRequest (line 339) | private Result<HttpWebRequest> CreateHttpWebRequest
    method DoesRemoteDirectoryOrFileExistAsync (line 385) | private async Task<Result<bool>> DoesRemoteDirectoryOrFileExistAsync(s...

FILE: Launchpad.Launcher/Handlers/Protocols/Manifest/ManifestBasedProtocolHandler.cs
  class ManifestBasedProtocolHandler (line 46) | public abstract class ManifestBasedProtocolHandler : PatchProtocolHandler
    method ManifestBasedProtocolHandler (line 83) | protected ManifestBasedProtocolHandler
    method InstallGameAsync (line 103) | public override async Task<Result> InstallGameAsync()
    method UpdateModuleAsync (line 134) | public override async Task<Result> UpdateModuleAsync(EModule module)
    method VerifyModuleAsync (line 233) | public override async Task<Result> VerifyModuleAsync(EModule module)
    method DownloadModuleAsync (line 330) | protected override async Task<Result> DownloadModuleAsync(EModule module)
    method ReadRemoteFileAsync (line 405) | protected abstract Task<Result<string>> ReadRemoteFileAsync(string url...
    method DownloadRemoteFileAsync (line 417) | protected abstract Task<Result> DownloadRemoteFileAsync
    method IsModuleOutdatedAsync (line 427) | public override async Task<Result<bool>> IsModuleOutdatedAsync(EModule...
    method DownloadManifestEntryAsync (line 490) | protected virtual async Task<Result> DownloadManifestEntryAsync
    method IsModuleManifestOutdatedAsync (line 627) | protected virtual async Task<Result<bool>> IsModuleManifestOutdatedAsy...
    method GetRemoteModuleManifestChecksumAsync (line 658) | protected virtual async Task<Result<string>> GetRemoteModuleManifestCh...
    method RefreshModuleManifestAsync (line 683) | protected virtual async Task<Result> RefreshModuleManifestAsync(EModul...
    method DownloadModuleManifestAsync (line 725) | protected virtual async Task<Result> DownloadModuleManifestAsync(EModu...
    method GetRemoteLauncherVersionAsync (line 763) | protected virtual async Task<Result<Version>> GetRemoteLauncherVersion...
    method GetRemoteGameVersionAsync (line 786) | protected virtual async Task<Result<Version>> GetRemoteGameVersionAsync()
    method GetVerifyIndicatorLabelMessage (line 812) | protected virtual string GetVerifyIndicatorLabelMessage(string current...
    method GetUpdateIndicatorLabelMessage (line 824) | protected virtual string GetUpdateIndicatorLabelMessage(string current...
    method GetDownloadIndicatorLabelMessage (line 836) | protected virtual string GetDownloadIndicatorLabelMessage(string curre...
    method GetDownloadProgressBarMessage (line 848) | protected virtual string GetDownloadProgressBarMessage(string filename...

FILE: Launchpad.Launcher/Handlers/Protocols/ModuleProgressChangedArgs.cs
  class ModuleProgressChangedArgs (line 30) | public sealed class ModuleProgressChangedArgs : EventArgs
    method ModuleProgressChangedArgs (line 75) | public ModuleProgressChangedArgs(EModule module, string progressBarMes...

FILE: Launchpad.Launcher/Handlers/Protocols/PatchProtocolHandler.cs
  class PatchProtocolHandler (line 45) | public abstract class PatchProtocolHandler
    method PatchProtocolHandler (line 102) | protected PatchProtocolHandler
    method CanPatchAsync (line 140) | public abstract Task<Result<bool>> CanPatchAsync();
    method IsPlatformAvailableAsync (line 147) | public abstract Task<Result<bool>> IsPlatformAvailableAsync(ESystemTar...
    method CanProvideBannerAsync (line 153) | public abstract Task<Result<bool>> CanProvideBannerAsync();
    method GetChangelogMarkupAsync (line 159) | public abstract Task<Result<string>> GetChangelogMarkupAsync();
    method GetBannerAsync (line 165) | public abstract Task<Result<Image<Rgba32>>> GetBannerAsync();
    method IsModuleOutdatedAsync (line 172) | public abstract Task<Result<bool>> IsModuleOutdatedAsync(EModule module);
    method InstallGameAsync (line 178) | public virtual async Task<Result> InstallGameAsync()
    method DownloadModuleAsync (line 213) | protected abstract Task<Result> DownloadModuleAsync(EModule module);
    method UpdateModuleAsync (line 220) | public abstract Task<Result> UpdateModuleAsync(EModule module);
    method VerifyModuleAsync (line 227) | public abstract Task<Result> VerifyModuleAsync(EModule module);
    method OnModuleDownloadProgressChanged (line 232) | protected void OnModuleDownloadProgressChanged()
    method OnModuleVerifyProgressChanged (line 240) | protected void OnModuleVerifyProgressChanged()
    method OnModuleUpdateProgressChanged (line 248) | protected void OnModuleUpdateProgressChanged()
    method OnModuleInstallationFinished (line 257) | protected void OnModuleInstallationFinished(EModule module)
    method OnModuleInstallationFailed (line 266) | protected void OnModuleInstallationFailed(EModule module)

FILE: Launchpad.Launcher/Interface/MainWindow.UI.cs
  class MainWindow (line 42) | public partial class MainWindow
    method Create (line 73) | public static MainWindow Create(IServiceProvider services)
    method BindUIEvents (line 97) | private void BindUIEvents()
    method OnMenuAboutItemActivated (line 112) | private void OnMenuAboutItemActivated(object? sender, EventArgs e)
    method OnDeleteEvent (line 126) | private static void OnDeleteEvent(object? sender, DeleteEventArgs a)

FILE: Launchpad.Launcher/Interface/MainWindow.cs
  class MainWindow (line 50) | public sealed partial class MainWindow : Gtk.Window
    method MainWindow (line 120) | public MainWindow
    method InitializeAsync (line 170) | public async Task<Result> InitializeAsync()
    method LoadChangelogAsync (line 288) | private async Task<Result> LoadChangelogAsync()
    method DisplayInitialStartupDialog (line 312) | private void DisplayInitialStartupDialog()
    method LoadBannerAsync (line 345) | private async Task<Result> LoadBannerAsync()
    method SetLauncherMode (line 396) | private void SetLauncherMode(ELauncherMode newMode, bool isInProgress)
    method OnMenuRepairItemActivated (line 491) | private void OnMenuRepairItemActivated(object? sender, EventArgs e)
    method OnMainButtonClicked (line 505) | private async void OnMainButtonClicked(object? sender, EventArgs e)
    method OnLauncherDownloadFinished (line 596) | private void OnLauncherDownloadFinished(object? sender, EventArgs e)
    method OnGameLaunchFailed (line 613) | private void OnGameLaunchFailed(object? sender, EventArgs e)
    method OnGameDownloadFailed (line 629) | private void OnGameDownloadFailed(object? sender, EventArgs e)
    method OnModuleInstallationProgressChanged (line 660) | private void OnModuleInstallationProgressChanged(object? sender, Modul...
    method OnGameDownloadFinished (line 675) | private void OnGameDownloadFinished(object? sender, EventArgs e)
    method OnGameExited (line 713) | private void OnGameExited(object? sender, int exitCode)
    method OnReinstallGameActionActivated (line 751) | private async void OnReinstallGameActionActivated(object? sender, Even...

FILE: Launchpad.Launcher/Program.cs
  class Program (line 53) | public class Program
    method Main (line 63) | [STAThread]
    method OnUnhandledGLibException (line 102) | private static void OnUnhandledGLibException(UnhandledExceptionArgs args)
    method CreateHostBuilder (line 107) | private static IHostBuilder CreateHostBuilder(string[] args) => new Ho...

FILE: Launchpad.Launcher/Services/GameArgumentService.cs
  class GameArgumentService (line 33) | public class GameArgumentService
    method GameArgumentService (line 41) | public GameArgumentService(DirectoryHelpers directoryHelpers)
    method InitializeGameArgumentsFile (line 51) | private void InitializeGameArgumentsFile()
    method GetGameArguments (line 73) | public IEnumerable<string> GetGameArguments()

FILE: Launchpad.Launcher/Services/LocalVersionService.cs
  class LocalVersionService (line 33) | public class LocalVersionService
    method LocalVersionService (line 50) | public LocalVersionService(ILogger<LocalVersionService> log, Directory...
    method GetLocalGameVersion (line 60) | public Version GetLocalGameVersion()
    method GetLocalLauncherVersion (line 85) | public Version GetLocalLauncherVersion()

FILE: Launchpad.Launcher/Services/TagfileService.cs
  class TagfileService (line 31) | public class TagfileService
    method TagfileService (line 39) | public TagfileService(DirectoryHelpers directoryHelpers)
    method CreateLauncherTagfile (line 47) | public void CreateLauncherTagfile()
    method CreateGameTagfile (line 61) | public void CreateGameTagfile()

FILE: Launchpad.Launcher/Startup.cs
  class Startup (line 34) | public class Startup
    method Startup (line 44) | public Startup(Application app, MainWindow mainWindow)
    method Start (line 53) | public void Start()
    method InitializeAsync (line 78) | public async Task InitializeAsync()
    method DeletedEvent (line 83) | private void DeletedEvent(object o, DeleteEventArgs args)

FILE: Launchpad.Launcher/Utility/DirectoryHelpers.cs
  class DirectoryHelpers (line 33) | public class DirectoryHelpers
    method DirectoryHelpers (line 45) | public DirectoryHelpers(ILaunchpadConfiguration configuration)
    method GetConfigPath (line 54) | public static string GetConfigPath()
    method GetConfigDirectory (line 63) | public static string GetConfigDirectory()
    method GetLauncherTagfilePath (line 72) | public string GetLauncherTagfilePath()
    method GetGameTagfilePath (line 81) | public string GetGameTagfilePath()
    method GetLocalLauncherDirectory (line 90) | public static string GetLocalLauncherDirectory()
    method GetTempLauncherDownloadPath (line 100) | public string GetTempLauncherDownloadPath()
    method GetGameArgumentsPath (line 109) | public string GetGameArgumentsPath()
    method GetLocalGameDirectory (line 118) | public string GetLocalGameDirectory()
    method GetLocalGameVersionPath (line 127) | public string GetLocalGameVersionPath()
    method GetRemoteLauncherBinariesPath (line 136) | public string GetRemoteLauncherBinariesPath()
    method GetRemoteLauncherVersionPath (line 147) | public string GetRemoteLauncherVersionPath()
    method GetRemoteGamePath (line 156) | public string GetRemoteGamePath()

FILE: Launchpad.Launcher/Utility/Enums/ELauncherMode.cs
  type ELauncherMode (line 28) | internal enum ELauncherMode

FILE: Launchpad.Launcher/Utility/ResourceManager.cs
  class ResourceManager (line 30) | public static class ResourceManager
    method ResourceManager (line 37) | static ResourceManager()

FILE: Launchpad.Tests/Common/MD5HandlerTests.cs
  class MD5HandlerTests (line 32) | public class MD5HandlerTests
    method HashesCorrectly (line 50) | [Fact]

FILE: Launchpad.Tests/Common/StringExtensionsTests.cs
  class StringExtensionsTests (line 31) | public class StringExtensionsTests
    class RemoveLineSeparatorsAndNulls (line 36) | public class RemoveLineSeparatorsAndNulls
      method DoesNotChangeStringThatDoesNotContainNullsCarriageReturnsOrLineFeeds (line 47) | [Fact]
      method RemovesNullCharacters (line 56) | [Fact]
      method RemovesCarriageReturns (line 65) | [Fact]
      method RemovesLineFeeds (line 74) | [Fact]
      method RemovesNullsCarriageReturnsAndLineFeeds (line 83) | [Fact]

FILE: Launchpad.Utilities/Handlers/ManifestGenerationHandler.cs
  class ManifestGenerationHandler (line 39) | public class ManifestGenerationHandler
    method ManifestGenerationHandler (line 46) | public ManifestGenerationHandler()
    method GenerateManifestAsync (line 67) | public Task GenerateManifestAsync
    method CreateManifestChecksumAsync (line 119) | private async Task CreateManifestChecksumAsync(string manifestPath, st...
    method CreateEntryForFile (line 132) | private ManifestEntry CreateEntryForFile(string parentDirectory, strin...
    method IsPathABlacklistedFile (line 153) | private bool IsPathABlacklistedFile(string filePath)

FILE: Launchpad.Utilities/Interface/MainWindow.UI.cs
  class MainWindow (line 36) | public partial class MainWindow
    method Create (line 57) | public static MainWindow Create()
    method BindUIEvents (line 66) | private void BindUIEvents()
    method OnDeleteEvent (line 79) | private void OnDeleteEvent(object sender, DeleteEventArgs a)

FILE: Launchpad.Utilities/Interface/MainWindow.cs
  class MainWindow (line 40) | public partial class MainWindow : Window
    method MainWindow (line 61) | private MainWindow(Builder builder, IntPtr handle)
    method OnGenerateGameManifestButtonClicked (line 85) | private async void OnGenerateGameManifestButtonClicked(object? sender,...
    method OnGenerateLaunchpadManifestButtonClicked (line 118) | private async void OnGenerateLaunchpadManifestButtonClicked(object? se...
    method GenerateManifestAsync (line 123) | private async Task GenerateManifestAsync(EManifestType manifestType)

FILE: Launchpad.Utilities/Options/CLIOptions.cs
  class CLIOptions (line 34) | public class CLIOptions

FILE: Launchpad.Utilities/Program.cs
  class Program (line 43) | internal static class Program
    method Main (line 53) | private static async Task Main(string[] args)

FILE: Launchpad.Utilities/Utility/DirectoryHelpers.cs
  class DirectoryHelpers (line 32) | public static class DirectoryHelpers
    method GetLocalDir (line 38) | public static string GetLocalDir()

FILE: Launchpad.Utilities/Utility/Events/ManifestGenerationProgressChangedEventArgs.cs
  class ManifestGenerationProgressChangedEventArgs (line 30) | public class ManifestGenerationProgressChangedEventArgs : EventArgs
    method ManifestGenerationProgressChangedEventArgs (line 85) | public ManifestGenerationProgressChangedEventArgs
Condensed preview — 157 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (879K chars).
[
  {
    "path": ".github/FUNDING.yml",
    "chars": 92,
    "preview": "# These are supported funding model platforms\n\ngithub: Nihlus\npatreon: jargon\nko_fi: jaxxie\n"
  },
  {
    "path": ".gitignore",
    "chars": 3564,
    "preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n## Modi"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/encodings.xml",
    "chars": 135,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"Encoding\" addBOMForNewFiles=\"with NO BOM"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/indexLayout.xml",
    "chars": 198,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"UserContentModel\">\n    <attachedFolders "
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/markdown-exported-files.xml",
    "chars": 185,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"MarkdownExportedFiles\">\n    <htmlFiles /"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/markdown-navigator/profiles_settings.xml",
    "chars": 104,
    "preview": "<component name=\"MarkdownNavigator.ProfileManager\">\n  <settings default=\"\" pdf-export=\"\" />\n</component>"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/markdown-navigator.xml",
    "chars": 4110,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"MarkdownProjectSettings\">\n    <PreviewSe"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/misc.xml",
    "chars": 232,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"com.jetbrains.rider.android.RiderAndroid"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/projectSettingsUpdater.xml",
    "chars": 185,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"RiderProjectSettingsUpdater\">\n    <optio"
  },
  {
    "path": ".idea/.idea.Launchpad/.idea/vcs.xml",
    "chars": 180,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"VcsDirectoryMappings\">\n    <mapping dire"
  },
  {
    "path": "Directory.Build.props",
    "chars": 3952,
    "preview": "<!--\n    This file contains common properties for all DIGOS.Ambassador projects. It is divided into multiple sections,\n "
  },
  {
    "path": "LICENSE",
    "chars": 35140,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "Launchpad.Common/Enums/EManifestType.cs",
    "chars": 1171,
    "preview": "//\n//  EManifestType.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl "
  },
  {
    "path": "Launchpad.Common/Enums/ESystemTarget.cs",
    "chars": 1031,
    "preview": "//\n//  ESystemTarget.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl G"
  },
  {
    "path": "Launchpad.Common/ExtensionMethods.cs",
    "chars": 2243,
    "preview": "//\n//  ExtensionMethods.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Ja"
  },
  {
    "path": "Launchpad.Common/Handlers/MD5Handler.cs",
    "chars": 1480,
    "preview": "//\n//  MD5Handler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gul"
  },
  {
    "path": "Launchpad.Common/Handlers/Manifest/ManifestEntry.cs",
    "chars": 5863,
    "preview": "//\n//  ManifestEntry.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl "
  },
  {
    "path": "Launchpad.Common/Handlers/Manifest/ManifestHandler.cs",
    "chars": 8164,
    "preview": "//\n//  ManifestHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jar"
  },
  {
    "path": "Launchpad.Common/Launchpad.Common.csproj",
    "chars": 275,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <ItemGroup>\n    <PackageReference Include=\"Remora.Results\" Version=\"7.4.1\" />\n    <"
  },
  {
    "path": "Launchpad.Common/PlatformHelpers.cs",
    "chars": 2125,
    "preview": "//\n//  PlatformHelpers.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jar"
  },
  {
    "path": "Launchpad.Launcher/Configuration/ILaunchpadConfiguration.cs",
    "chars": 3173,
    "preview": "//\n//  ILaunchpadConfiguration.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) "
  },
  {
    "path": "Launchpad.Launcher/Content/locale/af/LC_MESSAGES/messages.po",
    "chars": 5808,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ar/LC_MESSAGES/messages.po",
    "chars": 6327,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/bg/LC_MESSAGES/messages.po",
    "chars": 6084,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/bn/LC_MESSAGES/messages.po",
    "chars": 7118,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ca/LC_MESSAGES/messages.po",
    "chars": 5806,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/cs/LC_MESSAGES/messages.po",
    "chars": 6985,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/da/LC_MESSAGES/messages.po",
    "chars": 6362,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/de/LC_MESSAGES/messages.po",
    "chars": 7258,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/el/LC_MESSAGES/messages.po",
    "chars": 5804,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/en/LC_MESSAGES/messages.po",
    "chars": 7063,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/es_ES/LC_MESSAGES/messages.po",
    "chars": 7141,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/fi/LC_MESSAGES/messages.po",
    "chars": 6161,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/fr/LC_MESSAGES/messages.po",
    "chars": 7279,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/he/LC_MESSAGES/messages.po",
    "chars": 6856,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/hi/LC_MESSAGES/messages.po",
    "chars": 5804,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/hu/LC_MESSAGES/messages.po",
    "chars": 7077,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/id/LC_MESSAGES/messages.po",
    "chars": 7152,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/it/LC_MESSAGES/messages.po",
    "chars": 6353,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ja/LC_MESSAGES/messages.po",
    "chars": 6547,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ko/LC_MESSAGES/messages.po",
    "chars": 5798,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/nl/LC_MESSAGES/messages.po",
    "chars": 7230,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/no/LC_MESSAGES/messages.po",
    "chars": 6709,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/pl/LC_MESSAGES/messages.po",
    "chars": 7141,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/pt_BR/LC_MESSAGES/messages.po",
    "chars": 7126,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/pt_PT/LC_MESSAGES/messages.po",
    "chars": 7191,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ro/LC_MESSAGES/messages.po",
    "chars": 7180,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/ru/LC_MESSAGES/messages.po",
    "chars": 7038,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/sr/LC_MESSAGES/messages.po",
    "chars": 5891,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/sv_SE/LC_MESSAGES/messages.po",
    "chars": 7062,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/tr/LC_MESSAGES/messages.po",
    "chars": 6953,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/uk/LC_MESSAGES/messages.po",
    "chars": 5882,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/vi/LC_MESSAGES/messages.po",
    "chars": 5802,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/zh_CN/LC_MESSAGES/messages.po",
    "chars": 6277,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Content/locale/zh_TW/LC_MESSAGES/messages.po",
    "chars": 6255,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Launcher/Extensions/ManifestEntryExtensions.cs",
    "chars": 2093,
    "preview": "//\n//  ManifestEntryExtensions.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2"
  },
  {
    "path": "Launchpad.Launcher/Handlers/ChecksHandler.cs",
    "chars": 5688,
    "preview": "//\n//  ChecksHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl G"
  },
  {
    "path": "Launchpad.Launcher/Handlers/ConfigHandler.cs",
    "chars": 2210,
    "preview": "//\n//  ConfigHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl "
  },
  {
    "path": "Launchpad.Launcher/Handlers/GameHandler.cs",
    "chars": 10507,
    "preview": "//\n//  GameHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gu"
  },
  {
    "path": "Launchpad.Launcher/Handlers/LauncherHandler.cs",
    "chars": 8339,
    "preview": "//\n//  LauncherHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl"
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/EModule.cs",
    "chars": 1119,
    "preview": "//\n//  EModule.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gullbe"
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/Manifest/FTPProtocolHandler.cs",
    "chars": 16544,
    "preview": "//\n//  FTPProtocolHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 "
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/Manifest/HTTPProtocolHandler.cs",
    "chars": 13245,
    "preview": "//\n//  HTTPProtocolHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017"
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/Manifest/ManifestBasedProtocolHandler.cs",
    "chars": 31103,
    "preview": "//\n//  ManifestBasedProtocolHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright"
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/ModuleProgressChangedArgs.cs",
    "chars": 2470,
    "preview": "//\n//  ModuleProgressChangedArgs.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c"
  },
  {
    "path": "Launchpad.Launcher/Handlers/Protocols/PatchProtocolHandler.cs",
    "chars": 9301,
    "preview": "//\n//  PatchProtocolHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 201"
  },
  {
    "path": "Launchpad.Launcher/Interface/Launchpad.glade",
    "chars": 14642,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!-- Generated with glade 3.18.3 -->\n<interface>\n  <requires lib=\"gtk+\" version=\""
  },
  {
    "path": "Launchpad.Launcher/Interface/MainWindow.UI.cs",
    "chars": 4335,
    "preview": "//\n//  MainWindow.UI.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl "
  },
  {
    "path": "Launchpad.Launcher/Interface/MainWindow.cs",
    "chars": 26844,
    "preview": "//\n//  MainWindow.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gull"
  },
  {
    "path": "Launchpad.Launcher/Launchpad.Launcher.csproj",
    "chars": 3457,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n    <OutputType>Exe</OutputType>\n    <AssemblyName>Launchpad</Assem"
  },
  {
    "path": "Launchpad.Launcher/Launchpad.Launcher.csproj.DotSettings",
    "chars": 436,
    "preview": "<wpf:ResourceDictionary xml:space=\"preserve\" xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" xmlns:s=\"clr-namesp"
  },
  {
    "path": "Launchpad.Launcher/Program.cs",
    "chars": 6671,
    "preview": "//\n//  Program.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gullbe"
  },
  {
    "path": "Launchpad.Launcher/Resources/launchpad_update.bat",
    "chars": 934,
    "preview": "::\n:: launchpad_update.bat\n::\n::  Author:\n::       Jarl Gullberg <jarl.gullberg@gmail.com>\n::\n::  Copyright (c) 2016 Jar"
  },
  {
    "path": "Launchpad.Launcher/Resources/launchpad_update.sh",
    "chars": 1111,
    "preview": "#!/bin/bash\n#  launchpad_update.sh\n#\n#  Author:\n#       Jarl Gullberg <jarl.gullberg@gmail.com>\n#\n#  Copyright (c) 2016 "
  },
  {
    "path": "Launchpad.Launcher/Services/GameArgumentService.cs",
    "chars": 3280,
    "preview": "//\n//  GameArgumentService.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017"
  },
  {
    "path": "Launchpad.Launcher/Services/LocalVersionService.cs",
    "chars": 2752,
    "preview": "//\n//  LocalVersionService.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017"
  },
  {
    "path": "Launchpad.Launcher/Services/TagfileService.cs",
    "chars": 2075,
    "preview": "//\n//  TagfileService.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl"
  },
  {
    "path": "Launchpad.Launcher/Startup.cs",
    "chars": 2397,
    "preview": "//\n//  Startup.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gullber"
  },
  {
    "path": "Launchpad.Launcher/Utility/DirectoryHelpers.cs",
    "chars": 5040,
    "preview": "//\n//  DirectoryHelpers.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Ja"
  },
  {
    "path": "Launchpad.Launcher/Utility/Enums/ELauncherMode.cs",
    "chars": 1461,
    "preview": "//\n//  ELauncherMode.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl G"
  },
  {
    "path": "Launchpad.Launcher/Utility/ResourceManager.cs",
    "chars": 1239,
    "preview": "//\n//  ResourceManager.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jar"
  },
  {
    "path": "Launchpad.Launcher/app.manifest",
    "chars": 2520,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<assembly manifestVersion=\"1.0\" xmlns=\"urn:schemas-microsoft-com:asm.v1\">\n\t<asse"
  },
  {
    "path": "Launchpad.Launcher/config/appsettings.json",
    "chars": 167,
    "preview": "{\n    \"Logging\": {\n        \"LogLevel\": {\n            \"Default\": \"Debug\",\n            \"System\": \"Information\",\n          "
  },
  {
    "path": "Launchpad.Launcher/log4net.config",
    "chars": 1025,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<log4net>\n    <root>\n        <level value=\"ALL\" />\n        <appender-ref ref=\"Log"
  },
  {
    "path": "Launchpad.Tests/Common/MD5HandlerTests.cs",
    "chars": 1581,
    "preview": "//\n// MD5HandlerTests.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl"
  },
  {
    "path": "Launchpad.Tests/Common/StringExtensionsTests.cs",
    "chars": 2869,
    "preview": "//\n//  StringExtensionsTests.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 20"
  },
  {
    "path": "Launchpad.Tests/Launchpad.Tests.csproj",
    "chars": 606,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <IsPackable>false</IsPackable>\n  </PropertyGroup>\n\n  <ItemGrou"
  },
  {
    "path": "Launchpad.Tests/packages.config",
    "chars": 196,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n  <package id=\"NUnit\" version=\"3.7.1\" targetFramework=\"net45\" />\n  <p"
  },
  {
    "path": "Launchpad.Translations/af.po",
    "chars": 5808,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ar.po",
    "chars": 6327,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/bg.po",
    "chars": 6084,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/bn.po",
    "chars": 7118,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ca.po",
    "chars": 5806,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/cs.po",
    "chars": 6985,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/da.po",
    "chars": 6362,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/de.po",
    "chars": 7258,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/el.po",
    "chars": 5804,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/en.po",
    "chars": 7063,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/es_ES.po",
    "chars": 7141,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/fi.po",
    "chars": 6161,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/fr.po",
    "chars": 7279,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/he.po",
    "chars": 6856,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/hi.po",
    "chars": 5804,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/hu.po",
    "chars": 7077,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/id.po",
    "chars": 7152,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/it.po",
    "chars": 6353,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ja.po",
    "chars": 6547,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ko.po",
    "chars": 5798,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/messages.po",
    "chars": 5783,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/nl.po",
    "chars": 7230,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/no.po",
    "chars": 6709,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/pl.po",
    "chars": 7141,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/pt_BR.po",
    "chars": 7126,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/pt_PT.po",
    "chars": 7191,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ro.po",
    "chars": 7180,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/ru.po",
    "chars": 7038,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/sr.po",
    "chars": 5891,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/sv_SE.po",
    "chars": 7062,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/tr.po",
    "chars": 6953,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/uk.po",
    "chars": 5882,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/vi.po",
    "chars": 5802,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/zh_CN.po",
    "chars": 6277,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Translations/zh_TW.po",
    "chars": 6255,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: launchpad\\n\"\n\"POT-Creation-Date: 2016-07-28 21:06+0200\\n\"\n\"PO-Revision-Date: 201"
  },
  {
    "path": "Launchpad.Utilities/Handlers/ManifestGenerationHandler.cs",
    "chars": 6014,
    "preview": "//\n//  ManifestGenerationHandler.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c"
  },
  {
    "path": "Launchpad.Utilities/Interface/Launchpad.Utilities.glade",
    "chars": 6734,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!-- Generated with glade 3.18.3 -->\n<interface>\n  <requires lib=\"gtk+\" version=\""
  },
  {
    "path": "Launchpad.Utilities/Interface/MainWindow.UI.cs",
    "chars": 2968,
    "preview": "//\n//  MainWindow.UI.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl "
  },
  {
    "path": "Launchpad.Utilities/Interface/MainWindow.cs",
    "chars": 5024,
    "preview": "//\n//  MainWindow.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gul"
  },
  {
    "path": "Launchpad.Utilities/Launchpad.Utilities.csproj",
    "chars": 2121,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>Exe</OutputType>\n  </PropertyGroup>\n\n  <ItemGroup>"
  },
  {
    "path": "Launchpad.Utilities/NLog.config",
    "chars": 1104,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- XSD manual extracted from package NLog.Schema: https://www.nuget.org/packag"
  },
  {
    "path": "Launchpad.Utilities/Options/CLIOptions.cs",
    "chars": 2270,
    "preview": "//\n//  CLIOptions.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gul"
  },
  {
    "path": "Launchpad.Utilities/Program.cs",
    "chars": 3810,
    "preview": "//\n//  Program.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Jarl Gullbe"
  },
  {
    "path": "Launchpad.Utilities/Utility/DirectoryHelpers.cs",
    "chars": 1524,
    "preview": "//\n//  DirectoryHelpers.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//\n//  Copyright (c) 2017 Ja"
  },
  {
    "path": "Launchpad.Utilities/Utility/Events/ManifestGenerationProgressChangedEventArgs.cs",
    "chars": 2606,
    "preview": "//\n//  ManifestGenerationProgressChangedEventArgs.cs\n//\n//  Author:\n//       Jarl Gullberg <jarl.gullberg@gmail.com>\n//"
  },
  {
    "path": "Launchpad.sln",
    "chars": 3299,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 2012\nVisualStudioVersion = 12.0.31101.0\nMi"
  },
  {
    "path": "Launchpad.sln.DotSettings",
    "chars": 6372,
    "preview": "<wpf:ResourceDictionary xml:space=\"preserve\" xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" xmlns:s=\"clr-namesp"
  },
  {
    "path": "Launchpad.sln.iml",
    "chars": 698,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module type=\"RIDER_MODULE\" version=\"4\">\n  <component name=\"NewModuleRootManager\""
  },
  {
    "path": "Packaging/Debian/template/DEBIAN/control",
    "chars": 1130,
    "preview": "package: launchpad\nversion: 0.1.2\narchitecture: all\ndepends: libnotify-cil-dev, libwebkitgtk-dev, libwebkit-cil-dev, lib"
  },
  {
    "path": "Packaging/Debian/template/usr/lib/Launchpad/readme.md",
    "chars": 122,
    "preview": "This directory represents a basic debian package for Launchpad. It's mostly used internally for me to \neasily package it"
  },
  {
    "path": "Packaging/Debian/template/usr/share/applications/launchpad.desktop",
    "chars": 194,
    "preview": "[Desktop Entry]\nName=Launchpad\nComment=An open-source game launcher.\nExec=/usr/bin/launchpad\nIcon=/usr/share/pixmaps/lau"
  },
  {
    "path": "Packaging/Windows/setup_windows.iss",
    "chars": 2194,
    "preview": "; Script generated by the Inno Script Studio Wizard.\n; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT F"
  },
  {
    "path": "README.md",
    "chars": 2175,
    "preview": "Launchpad\n=========\n\nAn open-source launcher for your games.\nLaunchpad was originally made for Unreal Engine 4, but supp"
  },
  {
    "path": "Scripts/launchpad-dependencies.sh",
    "chars": 80,
    "preview": "#!/bin/bash\n\nsudo apt-get install mono-complete\nsudo apt-get install libgtk-3-0\n"
  },
  {
    "path": "Scripts/launchpad-publish.sh",
    "chars": 6192,
    "preview": "#!/bin/bash\n\n# This script assumes that it is launched from the /Scripts/ directory in the Launchpad development tree.\n#"
  },
  {
    "path": "Scripts/launchpad-server-setup.sh",
    "chars": 3024,
    "preview": "#!/bin/bash\n#check if we're running as root - this is required.\n\nbIsRoot=false\nif [ $(id -u) -eq 0 ]\nthen\n    bIsRoot=tr"
  },
  {
    "path": "Scripts/update-translations.sh",
    "chars": 867,
    "preview": "#!/bin/bash\n\n# Move to the base folder where the script is located.\ncd $(dirname $0)\n\nLAUNCHPAD_TRANSLATIONS_ROOT=\"../La"
  },
  {
    "path": "appveyor.yml",
    "chars": 284,
    "preview": "image: Visual Studio 2019\ninit:\n  - git config --global url.\"https://github.com/\".insteadOf \"git@github.com:\"\nconfigurat"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/etc/gtk-3.0/settings.ini",
    "chars": 32,
    "preview": "[Settings]\ngtk-theme-name=win32\n"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/lib/gdk-pixbuf-2.0/loaders.cache",
    "chars": 2903,
    "preview": "# GdkPixbuf Image Loader Modules file\n# Automatically generated file, do not edit\n# Created by gdk-pixbuf-query-loaders."
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml",
    "chars": 375,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<schemalist>\n\n  <enum id='org.gtk.Demo.Color'>\n    <value nick='red'   value='0'"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml",
    "chars": 931,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<schemalist>\n\n  <schema id='org.gtk.Settings.ColorChooser' path='/org/gtk/setting"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.Debug.gschema.xml",
    "chars": 832,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<schemalist>\n\n  <schema id='org.gtk.Settings.Debug' path='/org/gtk/settings/debug"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml",
    "chars": 4949,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n  Copyright © 2010 Christian Persch\n\n  This library is free software; you ca"
  },
  {
    "path": "lib/gtk+-3.16-bundle-win32/share/glib-2.0/schemas/org.gtk.exampleapp.gschema.xml",
    "chars": 845,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<schemalist>\n  <schema path=\"/org/gtk/exampleapp/\" id=\"org.gtk.exampleapp\">\n    <"
  },
  {
    "path": "stylecop.json",
    "chars": 2703,
    "preview": "{\n    \"$schema\" : \"https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCo"
  },
  {
    "path": "stylecop.ruleset",
    "chars": 17235,
    "preview": "<RuleSet Name=\"OpenTK Rules\" ToolsVersion=\"14.0\">\n  <Rules AnalyzerId=\"StyleCop.Analyzers\" RuleNamespace=\"StyleCop.Analy"
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the Nihlus/Launchpad GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 157 files (789.3 KB), approximately 218.7k tokens, and a symbol index with 215 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!