added content-builder.

This commit is contained in:
Bryce Covert
2015-10-28 18:29:44 -07:00
parent 43661dbf29
commit 83e8d51232
95 changed files with 2687 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,40 @@
#!/usr/bin/env bash
STEAMROOT="$(cd "${0%/*}" && echo $PWD)"
STEAMEXE=`basename "$0" .sh`
UNAME=`uname`
if [ "$UNAME" == "Linux" ]; then
PLATFORM=linux32
export LD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$LD_LIBRARY_PATH"
else # if [ "$UNAME" == "Darwin" ]; then
PLATFORM=osx32
export DYLD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$DYLD_LIBRARY_PATH"
fi
ulimit -n 2048
MAGIC_RESTART_EXITCODE=42
if [ "$DEBUGGER" == "gdb" ] || [ "$DEBUGGER" == "cgdb" ]; then
ARGSFILE=$(mktemp $USER.steam.gdb.XXXX)
# Set the LD_PRELOAD varname in the debugger, and unset the global version.
if [ "$LD_PRELOAD" ]; then
echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE"
echo show env LD_PRELOAD >> "$ARGSFILE"
unset LD_PRELOAD
fi
$DEBUGGER -x "$ARGSFILE" "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@"
rm "$ARGSFILE"
else
$DEBUGGER "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@"
fi
STATUS=$?
if [ $STATUS -eq $MAGIC_RESTART_EXITCODE ]; then
exec "$0" "$@"
fi
exit $STATUS

Binary file not shown.

View File

@@ -0,0 +1 @@
Versions/Current/Breakpad

View File

@@ -0,0 +1 @@
Versions/Current/Headers

View File

@@ -0,0 +1 @@
Versions/Current/Resources

View File

@@ -0,0 +1,287 @@
// Copyright (c) 2006, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Framework to provide a simple C API to crash reporting for
// applications. By default, if any machine-level exception (e.g.,
// EXC_BAD_ACCESS) occurs, it will be handled by the BreakpadRef
// object as follows:
//
// 1. Create a minidump file (see Breakpad for details)
// 2. Prompt the user (using CFUserNotification)
// 3. Invoke a command line reporting tool to send the minidump to a
// server
//
// By specifying parameters to the BreakpadCreate function, you can
// modify the default behavior to suit your needs and wants and
// desires.
// A service name associated with the original bootstrap parent port, saved in
// OnDemandServer and restored in Inspector.
#define BREAKPAD_BOOTSTRAP_PARENT_PORT "com.Breakpad.BootstrapParent"
typedef void *BreakpadRef;
#ifdef __cplusplus
extern "C" {
#endif
#include <CoreFoundation/CoreFoundation.h>
#include <Foundation/Foundation.h>
#include "BreakpadDefines.h"
// Optional user-defined function to dec to decide if we should handle
// this crash or forward it along.
// Return true if you want Breakpad to handle it.
// Return false if you want Breakpad to skip it
// The exception handler always returns false, as if SEND_AND_EXIT were false
// (which means the next exception handler will take the exception)
typedef bool (*BreakpadFilterCallback)(int exception_type,
int exception_code,
mach_port_t crashing_thread,
void *context);
// Create a new BreakpadRef object and install it as an exception
// handler. The |parameters| will typically be the contents of your
// bundle's Info.plist.
//
// You can also specify these additional keys for customizable behavior:
// Key: Value:
// BREAKPAD_PRODUCT Product name (e.g., "MyAwesomeProduct")
// This one is used as the key to identify
// the product when uploading. Falls back to
// CFBundleName if not specified.
// REQUIRED
//
// BREAKPAD_PRODUCT_DISPLAY This is the display name, e.g. a pretty
// name for the product when the crash_sender
// pops up UI for the user. Falls back first to
// CFBundleDisplayName and then to
// BREAKPAD_PRODUCT if not specified.
//
// BREAKPAD_VERSION Product version (e.g., 1.2.3), used
// as metadata for crash report. Falls back to
// CFBundleVersion if not specified.
// REQUIRED
//
// BREAKPAD_VENDOR Vendor name, used in UI (e.g. "A report has
// been created that you can send to <vendor>")
//
// BREAKPAD_URL URL destination for reporting
// REQUIRED
//
// BREAKPAD_REPORT_INTERVAL # of seconds between sending
// reports. If an additional report is
// generated within this time, it will
// be ignored. Default: 3600sec.
// Specify 0 to send all reports.
//
// BREAKPAD_SKIP_CONFIRM If true, the reporter will send the report
// without any user intervention.
// Defaults to NO
//
// BREAKPAD_CONFIRM_TIMEOUT Number of seconds before the upload
// confirmation dialog will be automatically
// dismissed (cancelling the upload).
// Default: 300 seconds (min of 60).
// Specify 0 to prevent timeout.
//
// BREAKPAD_SEND_AND_EXIT If true, the handler will exit after sending.
// This will prevent any other handler (e.g.,
// CrashReporter) from getting the crash.
// Defaults TO YES
//
// BREAKPAD_DUMP_DIRECTORY The directory to store crash-dumps
// in. By default, we use
// ~/Library/Breakpad/<BREAKPAD_PRODUCT>
// The path you specify here is tilde-expanded.
//
// BREAKPAD_INSPECTOR_LOCATION The full path to the Inspector executable.
// Defaults to <Framework resources>/Inspector
//
// BREAKPAD_REPORTER_EXE_LOCATION The full path to the Reporter/sender
// executable.
// Default:
// <Framework Resources>/crash_report_sender.app
//
// BREAKPAD_LOGFILES Indicates an array of log file paths that
// should be uploaded at crash time.
//
// BREAKPAD_REQUEST_COMMENTS If true, the message dialog will have a
// text box for the user to enter comments.
// Default: NO
//
// BREAKPAD_REQUEST_EMAIL If true and BREAKPAD_REQUEST_COMMENTS is also
// true, the message dialog will have a text
// box for the user to enter their email address.
// Default: NO
//
// BREAKPAD_SERVER_TYPE A parameter that tells Breakpad how to
// rewrite the upload parameters for a specific
// server type. The currently valid values are
// 'socorro' or 'google'. If you want to add
// other types, see the function in
// crash_report_sender.m that maps parameters to
// URL parameters. Defaults to 'google'.
//
// BREAKPAD_SERVER_PARAMETER_DICT A plist dictionary of static
// parameters that are uploaded to the
// server. The parameters are sent as
// is to the crash server. Their
// content isn't added to the minidump
// but pass as URL parameters when
// uploading theminidump to the crash
// server.
//
// BREAKPAD_IN_PROCESS A boolean NSNumber value. If YES, Breakpad
// will write the dump file in-process and then
// launch the reporter executable as a child
// process.
//=============================================================================
// The BREAKPAD_PRODUCT, BREAKPAD_VERSION and BREAKPAD_URL are
// required to have non-NULL values. By default, the BREAKPAD_PRODUCT
// will be the CFBundleName and the BREAKPAD_VERSION will be the
// CFBundleVersion when these keys are present in the bundle's
// Info.plist, which is usually passed in to BreakpadCreate() as an
// NSDictionary (you could also pass in another dictionary that had
// the same keys configured). If the BREAKPAD_PRODUCT or
// BREAKPAD_VERSION are ultimately undefined, BreakpadCreate() will
// fail. You have been warned.
//
// If you are running in a debugger, Breakpad will not install, unless the
// BREAKPAD_IGNORE_DEBUGGER envionment variable is set and/or non-zero.
//
// The BREAKPAD_SKIP_CONFIRM and BREAKPAD_SEND_AND_EXIT default
// values are NO and YES. However, they can be controlled by setting their
// values in a user or global plist.
//
// It's easiest to use Breakpad via the Framework, but if you're compiling the
// code in directly, BREAKPAD_INSPECTOR_LOCATION and
// BREAKPAD_REPORTER_EXE_LOCATION allow you to specify custom paths
// to the helper executables.
//
//=============================================================================
// The following are NOT user-supplied but are documented here for
// completeness. They are calculated by Breakpad during initialization &
// crash-dump generation, or entered in by the user.
//
// BREAKPAD_PROCESS_START_TIME The time, in seconds since the Epoch, the
// process started
//
// BREAKPAD_PROCESS_CRASH_TIME The time, in seconds since the Epoch, the
// process crashed.
//
// BREAKPAD_PROCESS_UP_TIME The total time in milliseconds the process
// has been running. This parameter is not
// set until the crash-dump-generation phase.
//
// BREAKPAD_LOGFILE_KEY_PREFIX Used to find out which parameters in the
// parameter dictionary correspond to log
// file paths.
//
// BREAKPAD_SERVER_PARAMETER_PREFIX This prefix is used by Breakpad
// internally, because Breakpad uses
// the same dictionary internally to
// track both its internal
// configuration parameters and
// parameters meant to be uploaded
// to the server. This string is
// used internally by Breakpad to
// prefix user-supplied parameter
// names so those can be sent to the
// server without leaking Breakpad's
// internal values.
//
// BREAKPAD_ON_DEMAND Used internally to indicate to the
// Reporter that we're sending on-demand,
// not as result of a crash.
//
// BREAKPAD_COMMENTS The text the user provided as comments.
// Only used in crash_report_sender.
// Returns a new BreakpadRef object on success, NULL otherwise.
BreakpadRef BreakpadCreate(NSDictionary *parameters);
// Uninstall and release the data associated with |ref|.
void BreakpadRelease(BreakpadRef ref);
// Clients may set an optional callback which gets called when a crash
// occurs. The callback function should return |true| if we should
// handle the crash, generate a crash report, etc. or |false| if we
// should ignore it and forward the crash (normally to CrashReporter).
// Context is a pointer to arbitrary data to make the callback with.
void BreakpadSetFilterCallback(BreakpadRef ref,
BreakpadFilterCallback callback,
void *context);
// User defined key and value string storage. Generally this is used
// to configure Breakpad's internal operation, such as whether the
// crash_sender should prompt the user, or the filesystem location for
// the minidump file. See Breakpad.h for some parameters that can be
// set. Anything longer than 255 bytes will be truncated. Note that
// the string is converted to UTF8 before truncation, so any multibyte
// character that straddles the 255(256 - 1 for terminator) byte limit
// will be mangled.
//
// A maximum number of 64 key/value pairs are supported. An assert()
// will fire if more than this number are set. Unfortunately, right
// now, the same dictionary is used for both Breakpad's parameters AND
// the Upload parameters.
//
// TODO (nealsid): Investigate how necessary this is if we don't
// automatically upload parameters to the server anymore.
// TODO (nealsid): separate server parameter dictionary from the
// dictionary used to configure Breakpad, and document limits for each
// independently.
void BreakpadSetKeyValue(BreakpadRef ref, NSString *key, NSString *value);
NSString *BreakpadKeyValue(BreakpadRef ref, NSString *key);
void BreakpadRemoveKeyValue(BreakpadRef ref, NSString *key);
// You can use this method to specify parameters that will be uploaded
// to the crash server. They will be automatically encoded as
// necessary. Note that as mentioned above there are limits on both
// the number of keys and their length.
void BreakpadAddUploadParameter(BreakpadRef ref, NSString *key,
NSString *value);
// This method will remove a previously-added parameter from the
// upload parameter set.
void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key);
// Add a log file for Breakpad to read and send upon crash dump
void BreakpadAddLogFile(BreakpadRef ref, NSString *logPathname);
// Generate a minidump and send
void BreakpadGenerateAndSendReport(BreakpadRef ref);
void BreakpadSetComment( BreakpadRef ref, char const *pchComment );
#ifdef __cplusplus
}
#endif

View File

@@ -0,0 +1,73 @@
// Copyright (c) 2011, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Keys for configuration file
#define kReporterMinidumpDirectoryKey "MinidumpDir"
#define kReporterMinidumpIDKey "MinidumpID"
// Filename for recording uploaded IDs
#define kReporterLogFilename "uploads.log"
// The default subdirectory of the Library to put crash dumps in
// The subdirectory is
// ~/Library/<kDefaultLibrarySubdirectory>/<GoogleBreakpadProduct>
#define kDefaultLibrarySubdirectory "Breakpad"
// Specify some special keys to be used in the configuration file that is
// generated by Breakpad and consumed by the crash_sender.
#define BREAKPAD_PRODUCT "BreakpadProduct"
#define BREAKPAD_PRODUCT_DISPLAY "BreakpadProductDisplay"
#define BREAKPAD_VERSION "BreakpadVersion"
#define BREAKPAD_VENDOR "BreakpadVendor"
#define BREAKPAD_URL "BreakpadURL"
#define BREAKPAD_REPORT_INTERVAL "BreakpadReportInterval"
#define BREAKPAD_SKIP_CONFIRM "BreakpadSkipConfirm"
#define BREAKPAD_CONFIRM_TIMEOUT "BreakpadConfirmTimeout"
#define BREAKPAD_SEND_AND_EXIT "BreakpadSendAndExit"
#define BREAKPAD_DUMP_DIRECTORY "BreakpadMinidumpLocation"
#define BREAKPAD_INSPECTOR_LOCATION "BreakpadInspectorLocation"
#define BREAKPAD_REPORTER_EXE_LOCATION \
"BreakpadReporterExeLocation"
#define BREAKPAD_LOGFILES "BreakpadLogFiles"
#define BREAKPAD_LOGFILE_UPLOAD_SIZE "BreakpadLogFileTailSize"
#define BREAKPAD_REQUEST_COMMENTS "BreakpadRequestComments"
#define BREAKPAD_COMMENTS "BreakpadComments"
#define BREAKPAD_REQUEST_EMAIL "BreakpadRequestEmail"
#define BREAKPAD_EMAIL "BreakpadEmail"
#define BREAKPAD_SERVER_TYPE "BreakpadServerType"
#define BREAKPAD_SERVER_PARAMETER_DICT "BreakpadServerParameters"
#define BREAKPAD_IN_PROCESS "BreakpadInProcess"
// The keys below are NOT user supplied, and are used internally.
#define BREAKPAD_PROCESS_START_TIME "BreakpadProcStartTime"
#define BREAKPAD_PROCESS_UP_TIME "BreakpadProcessUpTime"
#define BREAKPAD_PROCESS_CRASH_TIME "BreakpadProcessCrashTime"
#define BREAKPAD_LOGFILE_KEY_PREFIX "BreakpadAppLogFile"
#define BREAKPAD_SERVER_PARAMETER_PREFIX "BreakpadServerParameterPrefix_"
#define BREAKPAD_ON_DEMAND "BreakpadOnDemand"

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>14E7f</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Breakpad</string>
<key>CFBundleIdentifier</key>
<string>com.googlecode.google-breakpad</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Breakpad</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0.compiler</string>
<key>DTPlatformBuild</key>
<string>6D2105</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>13F34</string>
<key>DTSDKName</key>
<string>macosx10.9</string>
<key>DTXcode</key>
<string>0632</string>
<key>DTXcodeBuild</key>
<string>6D2105</string>
</dict>
</plist>

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>14E7f</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>crash_report_sender</string>
<key>CFBundleExecutable</key>
<string>crash_report_sender</string>
<key>CFBundleIconFile</key>
<string>crash_report_sender</string>
<key>CFBundleIdentifier</key>
<string>com.Breakpad.crash_report_sender</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>crash_report_sender</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0.compiler</string>
<key>DTPlatformBuild</key>
<string>6D2105</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>13F34</string>
<key>DTSDKName</key>
<string>macosx10.9</string>
<key>DTXcode</key>
<string>0632</string>
<key>DTXcodeBuild</key>
<string>6D2105</string>
<key>LSHasLocalizedDisplayName</key>
<true/>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,96 @@
crashhandler.dylib,317664;1439230634;2741129262
Frameworks/Breakpad.framework/Breakpad,-2;1416854152;1199629470
Frameworks/Breakpad.framework/Headers,-2;1416854152;2393740531
Frameworks/Breakpad.framework/Resources,-2;1416854152;2265073452
Frameworks/Breakpad.framework/Versions/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Breakpad,195740;1437437974;835510279
Frameworks/Breakpad.framework/Versions/A/Headers/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Headers/Breakpad.h,14831;1437437974;2482042494
Frameworks/Breakpad.framework/Versions/A/Headers/BreakpadDefines.h,3958;1437437974;963933939
Frameworks/Breakpad.framework/Versions/A/Resources/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/breakpadUtilities.dylib,228860;1437437974;209348409
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Info.plist,1470;1437437974;2469926133
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/MacOS/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/MacOS/crash_report_sender,174604;1437437974;410442872
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/PkgInfo,8;1416854152;1535771721
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/Breakpad.nib,12668;1437437974;3540142285
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/crash_report_sender.icns,170816;1416854152;915185259
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/da.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/da.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/da.lproj/Localizable.strings,2478;1416854152;654383998
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/de.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/de.lproj/InfoPlist.strings,196;1416854152;2366931700
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/de.lproj/Localizable.strings,2796;1416854152;3396540296
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/English.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/English.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/English.lproj/Localizable.strings,2478;1416854152;1913686460
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/es.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/es.lproj/InfoPlist.strings,188;1416854152;1451028526
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/es.lproj/Localizable.strings,2628;1416854152;417724762
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/fr.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/fr.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/fr.lproj/Localizable.strings,2744;1416854152;2241105537
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/goArrow.png,3591;1416854152;3106003257
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/it.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/it.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/it.lproj/Localizable.strings,2640;1416854152;787942299
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/ja.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/ja.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/ja.lproj/Localizable.strings,1842;1416854152;2544048415
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/nl.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/nl.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/nl.lproj/Localizable.strings,2596;1416854152;196822744
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/no.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/no.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/no.lproj/Localizable.strings,2534;1416854152;1646896514
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sl.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sl.lproj/InfoPlist.strings,188;1416854152;2672724807
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sl.lproj/Localizable.strings,2682;1416854152;2843672434
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sv.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sv.lproj/InfoPlist.strings,160;1416854152;4177083103
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/sv.lproj/Localizable.strings,2638;1416854152;1197651611
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/tr.lproj/,-1;1437437974;0
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/tr.lproj/InfoPlist.strings,172;1416854152;1805770543
Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app/Contents/Resources/tr.lproj/Localizable.strings,2480;1416854152;3918966399
Frameworks/Breakpad.framework/Versions/A/Resources/Info.plist,1138;1437437974;573432830
Frameworks/Breakpad.framework/Versions/A/Resources/Inspector,84312;1437437974;2362423737
Frameworks/Breakpad.framework/Versions/Current,-2;1416854152;3554254475
libaudio.dylib,393660;1439230634;4147514688
libtier0_s.dylib,418360;1439230634;2101267771
libvstdlib_s.dylib,603976;1439230634;2674618927
public/,-1;1431459354;0
public/steambootstrapper_brazilian.txt,7815;1416854196;3556185828
public/steambootstrapper_czech.txt,7848;1416854196;3862545155
public/steambootstrapper_danish.txt,7516;1416854196;1370321954
public/steambootstrapper_dutch.txt,7536;1416854196;3408724792
public/steambootstrapper_english.txt,3602;1416854196;2866176359
public/steambootstrapper_finnish.txt,7762;1425583652;804026997
public/steambootstrapper_french.txt,7945;1416854196;4190429835
public/steambootstrapper_german.txt,7884;1416854196;1642271619
public/steambootstrapper_greek.txt,9085;1418943006;3415970692
public/steambootstrapper_hungarian.txt,7820;1416854196;54719833
public/steambootstrapper_italian.txt,7861;1416854196;3187126565
public/steambootstrapper_japanese.txt,8462;1416854196;2201097218
public/steambootstrapper_korean.txt,7895;1431459354;314279235
public/steambootstrapper_koreana.txt,7895;1431459354;314279235
public/steambootstrapper_norwegian.txt,7513;1416854196;3195586701
public/steambootstrapper_polish.txt,7564;1416854196;1910297820
public/steambootstrapper_portuguese.txt,7679;1416854196;3525183397
public/steambootstrapper_romanian.txt,7747;1416854196;2676918546
public/steambootstrapper_russian.txt,9010;1416854196;2508297086
public/steambootstrapper_schinese.txt,7309;1431459354;2979630355
public/steambootstrapper_spanish.txt,7864;1416854196;2724601073
public/steambootstrapper_swedish.txt,7564;1416854196;3083583076
public/steambootstrapper_tchinese.txt,7291;1416854196;3793434074
public/steambootstrapper_thai.txt,10039;1423165434;3746757362
public/steambootstrapper_turkish.txt,7638;1416854196;2152040103
public/steambootstrapper_ukrainian.txt,9177;1416854196;4191800949
steamclient.dylib,57793708;1439230634;4155142850
steamcmd,4251808;1439230636;1906774967
steamcmd.sh,1052;1418947006;1760865730
steamconsole.dylib,541084;1439230636;1233603721
SHA1=EACCA8CDDB9F645E4C8F6D21CE6B25F24908FA32

View File

@@ -0,0 +1,36 @@
"osx"
{
"version" "1439237729"
"steamcmd_public_all"
{
"file" "steamcmd_public_all.zip.f4b59090f5c311ee2cd3bfc991877434c6d2cfd3"
"checksum" "f4b59090f5c311ee2cd3bfc991877434c6d2cfd3"
"size" "57654"
}
"steamcmd_bins_osx"
{
"file" "steamcmd_bins_osx.zip.444b3e83e43eabc04560fb191b52912ccd777b9e"
"checksum" "444b3e83e43eabc04560fb191b52912ccd777b9e"
"size" "15610161"
"zipvz" "steamcmd_bins_osx.zip.vz.0f9064f17631b67d550e2c222ffe66ba62f6ac08_9338220"
}
"steamcmd_breakpad_osx"
{
"file" "steamcmd_breakpad_osx.zip.8b1c35f31ef2cf5a4bb819f8c68ea98c1e3c25cb"
"checksum" "8b1c35f31ef2cf5a4bb819f8c68ea98c1e3c25cb"
"size" "414313"
"zipvz" "steamcmd_breakpad_osx.zip.vz.a8aa1057a1616cf52fff53f1cf9abd70d5701f24_311677"
}
"steamcmd_osx"
{
"file" "steamcmd_osx.zip.46ceea73c06ba8ce8c3e7a01256b576288ccbb37"
"checksum" "46ceea73c06ba8ce8c3e7a01256b576288ccbb37"
"size" "1470855"
"zipvz" "steamcmd_osx.zip.vz.e1415b4c1d60d6b4cfd446adce093b879434f92b_1090265"
"IsBootstrapperPackage" "1"
}
}
"kvsignatures"
{
"osx" "3eb6407cf86899abfe0e908f1745e9e33b0c0766b8123c62df23ae9931f5466422236f142b33830c90e655d423dad0db5172688d55df2713ff80412f441eb1cf29a089130c9f336f444afc65a4cfe44706d6a1f23af4b6f54274ca31070a46f8a76044089f8f7ba1f6ea72497938f2a444577e37e9ae6db9e360919b8fa2565b"
}

View File

@@ -0,0 +1,76 @@
"Language" "brazilian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Atualizando o %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "O %appname% precisa ser atualizado antes de ser iniciado."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "Não foi possível criar os arquivos no diretório de instalação. Certifique-se de que você não está tentando executá-lo pela imagem de disco."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "Não foi possível criar os arquivos no diretório de instalação."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "O %appname% precisa de %nMegaBytes% MB de espaço livre em disco para atualizar."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Falha ao carregar o manifesto de pacotes."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Falha ao verificar o manifesto de pacotes."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Falha ao salvar o manifesto de pacotes."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Falha ao ler o pacote (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Arquivo de pacote corrompido (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Falha ao descompactar o pacote (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Falha ao aplicar a atualização. Revertendo..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Executando limpeza..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Falha ao executar a limpeza após a atualização. Continuando..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Falha ao criar o manifesto de instalação."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Atualização concluída, iniciando o %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Verificando se há atualizações..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Preparando para atualizar..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Baixando atualização..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Baixando atualização (%bytes% de %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Extraindo o pacote..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Instalando a atualização..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Verificando a instalação..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Download concluído."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "O %appname% precisa estar online para atualizar. Por favor, certifique-se de que está conectado à internet e tente novamente."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Não foi possível criar o diretório %dirname%, erro %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "O download falhou: erro de http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "O %appname% alterou o local onde guarda o conteúdo de jogos - de \"~/Documents/Steam Content\" para \"~/Library/Application Support/Steam/SteamApps\". Você tem arquivos de jogo no local original e o %appname% não conseguiu mover os arquivos porque já existem arquivos no novo local. Você pode precisar mover os arquivos manualmente ou apagar os arquivos antigos e baixar os jogos novamente. Continuar mesmo assim?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "O %appname% alterou o local onde guarda o conteúdo de jogos - de \"~/Documents/Steam Content\" para \"~/Library/Application Support/Steam/SteamApps\". Você tem arquivos de jogo no local original e o %appname% não conseguiu mover os arquivos porque já existem arquivos no novo local. Você pode precisar mover os arquivos manualmente ou apagar os arquivos antigos e baixar os jogos novamente. Continuar mesmo assim?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "O %appname% não pode ser executado a partir de um caminho com caracteres que não estejam no alfabeto inglês (como letras acentuadas). Por favor, reinstale o %appname% na pasta padrão."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "Progresso: %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Cancelar"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% Erro fatal"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% Aviso"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Por favor, arraste %appname% para a sua pasta de Aplicativos antes de abri-lo."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "czech"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Aktualizace služby %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "Před spuštěním se služba %appname% musí sama zaktualizovat."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "Služba %appname% nemůže zapisovat do svého instalačního adresáře. Ujistěte se, že ji nespouštíte z obrázku na disku."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "Služba %appname% nemůže zapisovat do svého instalačního adresáře."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "Služba %appname% potřebuje k aktualizaci %nMegaBytes% MB volného místa na disku."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Načtení balíčkového seznamu se nezdařilo."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Ověření balíčkového seznamu se nezdařilo."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Čtení balíčkového seznamu se nezdařilo (%pkgName%)."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Přečtení balíčku se nezdařilo (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Poškozený soubor v balíčku (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Rozbalení balíčku se nezdařilo (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Nezdařilo se uplatnit aktualizace, návrat zpět..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Čištění..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Vyčištění po aktualizaci se nezdařilo, pokračování..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Nepodařilo se zapsat instalační manifest."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Aktualizace hotova, spouštění služby %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Zjišťují se dostupné aktualizace..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Příprava na aktualizaci..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Stahování aktualizací..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Stahování aktualizací (%bytes% z %size% kB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Extrahování balíčku..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Instalace aktualizací..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Ověřování instalace..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Stahování dokončeno."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "Chcete-li službu %appname% aktualizovat, musíte být online. Prosím potvrďte své připojení k internetu a zkuste to znovu."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Adresář %dirname% nelze vytvořit, chyba %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Stažení se nezdařilo: http chyba %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "Služba %appname% změnila místo pro ukládání obsahu hry z „~/Documents/Steam Content“ na „~/Library/Application Support/Steam/SteamApps“. Vaše herní soubory jsou uloženy na původním místě a služba %appname% nemohla soubory přesunout, protože již existují na novém místě. Možná bude nutné, abyste soubory přesunuli ručně nebo abyste staré soubory vymazali a hry si znovu stáhli. Chcete i přesto pokračovat?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "Služba %appname% změnila místo pro ukládání obsahu hry z „~/Documents/Steam Content“ na „~/Library/Application Support/Steam/SteamApps“. Vaše herní soubory jsou uloženy na původním místě a služba %appname% nemohla soubory přesunout. Možná bude nutné, abyste soubory přesunuli ručně nebo abyste staré soubory vymazali a hry si znovu stáhli. Chcete i přesto pokračovat?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "Službu %appname% nelze spustit z cesty ke složce, která obsahuje neanglické znaky. Přeinstalujte prosím službu %appname% do výchozí složky."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% dokončeno"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Zrušit"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% Fatální chyba"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% Varování"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Před spuštěním aplikace prosím přesuňte %appname% do své složky aplikací."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "danish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Opdaterer %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% skal opdatere sig selv inden start."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% kan ikke skrive til dens installationsmappe. Kontroller, at du ikke forsøger at køre fra diskbilledet."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% kan ikke skrive til dens installationsmappe."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% kræver %nMegaBytes%MB ledig plads på harddisken til opdatering."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Kunne ikke indlæse pakkemanifest."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Kunne ikke verificere pakkemanifest."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Kunne ikke gemme pakkemanifest."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Kunne ikke læse pakke (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Korrupt pakkefil (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Kunne ikke pakke pakken ud (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Kunne ikke anvende opdatering - skifter tilbage..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Rydder op..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Kunne ikke rydde op efter opdatering - fortsætter..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Kunne ikke skrive installationsmanifest."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Opdatering fuldført - starter %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Kontrollerer for tilgængelige opdateringer..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Forbereder opdatering..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Henter opdatering..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Henter opdatering (%bytes% af %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Pakker pakken ud..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Installerer opdatering..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Verificerer installation..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Download fuldført."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% skal være online for at opdatere. Bekræft din netværksforbindelse, og prøv igen."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Kunne ikke oprette mappen %dirname%, fejl %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Download mislykkedes: http-fejl %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% har ændret den placering, hvor der gemmes spilindhold, fra \"~/Documents/Steam Content\" til \"~/Library/Application Support/Steam/SteamApps\". Du har spilfiler liggende på den oprindelige placering, og %appname% kunne ikke flytte filerne, da der allerede findes filer på den nye placering. Du kan blive nødt til at flytte filerne manuelt eller slette de gamle filer og downloade dine spil igen. Fortsæt alligevel?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% har ændret den placering, hvor der gemmes spilindhold, fra \"~/Documents/Steam Content\" til \"~/Library/Application Support/Steam/SteamApps\". Du har spilfiler liggende på den oprindelige placering, og %appname% kunne ikke flytte filerne. Du kan blive nødt til at flytte filerne manuelt eller slette de gamle filer og downloade dine spil igen. Fortsæt alligevel?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% kan ikke køre fra en mappe med ikke-engelske tegn. Geninstaller venligst %appname% i standardmappen."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% gennemført"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Annuller"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Fatal fejl"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Advarsel"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Træk venligst %appname% ind i din Programmer-mappe før du starter den."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "dutch"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% updaten..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% moet zichzelf eerst updaten alvorens op te starten."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% kan niet naar de installatiemap schrijven. Zorg ervoor dat je niet probeert te openen vanaf de schijf-image."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% kan niet naar de installatiemap schrijven."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% heeft %nMegaBytes% MB vrije schijfruimte nodig om te kunnen updaten."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Laden van manifestbestand mislukt."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Verifiëren van manifestbestand mislukt."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Opslaan van manifestbestand mislukt."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Lezen van pakket (%pkgName%) mislukt."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Corrupt pakketbestand (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Uitpakken van pakket (%pkgName%) mislukt."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Kan update niet toepassen, bezig met ongedaan maken..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Bezig met opruimen..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Opruimen na update mislukt, doorgaan..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Schrijven naar installatiemanifest mislukt."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Update voltooid, %appname% wordt gestart..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Controleren op beschikbare updates..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Update voorbereiden..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Update downloaden..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Update downloaden (%bytes% van %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Pakket uitpakken..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Update installeren..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Installatie verifiëren..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Download voltooid."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% moet online zijn om te kunnen updaten. Bevestig je netwerkverbinding en probeer het opnieuw."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Kan map %dirname% niet maken, foutmelding %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Download mislukt: HTTP-foutbericht %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% heeft de locatie waar spelcontent wordt opgeslagen gewijzigd van '~/Documents/Steam Content' in '~/Library/Application Support/Steam/SteamApps'. Er zitten spelbestanden op de oude locatie die %appname% niet kan verplaatsen omdat er zich al bestanden op de nieuwe locatie bevinden. Mogelijk moet je de bestanden handmatig verplaatsen of de oude bestanden verwijderen en je spellen opnieuw downloaden. Toch doorgaan?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% heeft de locatie waar spelcontent wordt opgeslagen gewijzigd van '~/Documents/Steam Content' in '~/Library/Application Support/Steam/SteamApps'. Er zitten spelbestanden op de oude locatie die %appname% niet kan verplaatsen. Mogelijk moet je de bestanden handmatig verplaatsen of de oude bestanden verwijderen en je spellen opnieuw downloaden. Toch doorgaan?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% kan niet gestart worden vanuit een map met niet-Latijnse karakters. Installeer %appname% opnieuw naar de standaardmap."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% voltooid"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Annuleren"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Fatale fout"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Waarschuwing"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Sleep %appname% naar je programmamap voordat je het opstart."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,41 @@
"Language" "english"
"Tokens"
{
SteamBootstrapper_UpdatingSteam "Updating %appname%..."
SteamBootstrapper_ElevationPrompt "%appname% needs to self-update before launching."
SteamBootstrapper_ReadOnlyInstallOSX "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
SteamBootstrapper_RunFromDiskImageOSX "Please drag %appname% into your Applications folder before launching it."
SteamBootstrapper_ReadOnlyInstall "%appname% is unable to write to its folder."
SteamBootstrapper_InstallDirNotASCII "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
SteamBootstrapper_InsufficientDiskSpace "%appname% needs %nMegaBytes%MB of free disk space to update."
SteamBootstrapper_FailedManifestLoad "Failed to load package manifest."
SteamBootstrapper_FailedManifestVerify "Failed to verify package manifest."
SteamBootstrapper_FailedManifestSave "Failed to save package manifest."
SteamBootstrapper_FailedPackageRead "Failed to read package (%pkgName%)."
SteamBootstrapper_CorruptPackageFile "Corrupt package file (%pkgName%)."
SteamBootstrapper_FailedPackageUnzip "Failed to unzip package (%pkgName%)."
SteamBootstrapper_UpdateApplyFail "Failed to apply update, reverting..."
SteamBootstrapper_UpdateCleanup "Cleaning up..."
SteamBootstrapper_UpdateCleanupFail "Failed to clean up after update, continuing..."
SteamBootstrapper_UpdateFinalizeFail "Failed to write installation manifest."
SteamBootstrapper_UpdateComplete "Update complete, launching %appname%..."

View File

@@ -0,0 +1,76 @@
"Language" "finnish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Päivitetään %appname%ia..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname%in pitää tehdä päivitys ennen käynnistämistä."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% ei pysty kirjoittamaan asennushakemistoonsa. Varmista, että et yritä käyttää levykuvaa käynnistämiseen."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% ei pysty kirjoittamaan asennushakemistoonsa."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% tarvitsee %nMegaBytes%Mt levytilaa päivitystä varten."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Pakettiluettelon lataaminen epäonnistui."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Pakettiluettelon varmentaminen epäonnistui."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Pakettiluettelon tallentaminen epäonnistui."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Paketin (%pkgName%) lukeminen epäonnistui."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Paketin tiedosto (%pkgName%) on vahingoittunut."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Paketin (%pkgName%) purkaminen epäonnistui."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Päivityksen asentaminen epäonnistui. Palautetaan..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Puhdistetaan..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Puhdistaminen ei onnistunut päivityksen jälkeen. Jatketaan..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Asennusluettelon kirjoittaminen epäonnistui."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Päivitys on valmis.Käynnistetään %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Tarkistetaan saatavilla olevat päivitykset..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Valmistellaan päivitystä..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Ladataan päivitystä..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Ladataan päivitystä (%bytes% / %size% kt)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Puretaan pakettia..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Asennetaan päivitystä..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Varmennetaan asennus..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Lataaminen suoritettu."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname%in täytyy olla online-tilassa päivitystä varten. Varmista verkkoyhteys ja yritä uudelleen."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Hakemistoa %dirname% ei voitu luoda, virhe %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Lataaminen epäonnistui: http-virhe %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% on aiemmin tallentanut pelisisältöä hakemistoon '~/Documents/Steam Content', mutta nykyinen tallennushakemisto on '~/Library/Application Support/Steam/SteamApps'. Alkuperäisessä hakemistossa on pelitiedostoja, joita %appname% ei pystynyt siirtämään, koska uudessa hakemistossa on jo tiedostoja. Voit joutua siirtämään tiedostot manuaalisesti tai poistamaan vanhat tiedostot ja lataamaan pelisi uudelleen. Jatketaanko silti?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% on aiemmin tallentanut pelisisältöä hakemistoon '~/Documents/Steam Content', mutta nykyinen tallennushakemisto on '~/Library/Application Support/Steam/SteamApps'. Alkuperäisessä hakemistossa on pelitiedostoja, joita %appname% ei pystynyt siirtämään. Voit joutua siirtämään tiedostot manuaalisesti tai poistamaan vanhat tiedostot ja lataamaan pelisi uudelleen. Jatketaanko silti?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "Sovellusta %appname% ei voida suorittaa tiedostosijainnista, joka sisältää muita kuin englanninkielisiä aakkosia. Ole hyvä ja asenna %appname% uudelleen oletustiedostosijaintiin."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% valmis"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Peruuta"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Vakava virhe"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Varoitus"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Ole hyvä ja vedä %appname% Applications-kansioosi ennen kuin käynnistät sen."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "french"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Mise à jour de %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% doit effectuer une mise à jour automatique avant de démarrer."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% ne peut pas écrire dans son répertoire d'installation. Assurez-vous de ne pas l'exécuter depuis l'image disque."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% ne peut pas écrire dans son répertoire d'installation."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "La mise à jour de %appname% nécessite %nMegaBytes% Mo d'espace libre sur le disque."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Impossible de charger le manifeste de package."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Impossible de vérifier le manifeste de package."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Impossible d'enregistrer le manifeste de package."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Impossible de lire le package (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Fichier de package corrompu (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Impossible de décompresser le package (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Impossible d'appliquer la mise à jour. Annulation..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Nettoyage des fichiers..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Le nettoyage des fichiers après la mise à jour a échoué. Poursuite de l'opération..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Impossible d'écrire le manifeste d'installation."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Mise à jour terminée. Lancement de %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Recherche de nouvelles mises à jour..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Préparation de la mise à jour..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Téléchargement de la mise à jour..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Téléchargement : (%bytes% sur %size% Ko)"
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Extraction du package..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Installation de la mise à jour..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Vérification de l'installation..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Téléchargement terminé."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% doit être en ligne pour effectuer la mise à jour. Vérifiez votre connexion réseau puis réessayez."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "La création du répertoire %dirname% a échoué : erreur %errno%."
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Le téléchargement a échoué : erreur HTTP %errno%."
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% a changé l'emplacement où le contenu de jeu est stocké de '~/Documents/Steam Content' à '~/Library/Application Support/Steam/SteamApps'. L'emplacement d'origine contient toujours des fichiers de jeu que %appname% n'a pas pu déplacer car ils existent déjà dans le nouvel emplacement. Il se peut que vous deviez déplacer les fichiers manuellement, ou supprimer les anciens fichiers et télécharger de nouveau vos jeux. Continuer ?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% a changé l'emplacement où le contenu de jeu est stocké de '~/Documents/Steam Content' à '~/Library/Application Support/Steam/SteamApps'. L'emplacement d'origine contient toujours des fichiers de jeu que %appname% n'a pas pu déplacer. Il se peut que vous deviez déplacer les fichiers manuellement, ou supprimer les anciens fichiers et télécharger de nouveau vos jeux. Continuer ?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% ne peut pas être exécuté depuis un répertoire dont le chemin d'accès contient des caractères non-anglais. Veuillez réinstaller %appname% dans le répertoire par défaut."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "Progression : %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Annuler"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Erreur fatale"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Avertissement"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Veuillez faire glisser %appname% dans votre dossier Applications avant de le lancer."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "german"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% wird aktualisiert..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% wird vor dem Start automatisch aktualisiert."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% kann nicht in das Installationsverzeichnis schreiben. Vergewissern Sie sich, dass das Programm nicht vom Speicherabbild aus starten."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% kann nicht in das Installationsverzeichnis schreiben."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% benötigt für Updates %nMegaBytes% MB freien Speicherplatz."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Das Paketmanifest konnte nicht geladen werden."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Das Paketmanifest konnte nicht überprüft werden."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Das Paketmanifest konnte nicht gespeichert werden."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Das Paket (%pkgName%) konnte nicht gelesen werden."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Paketdatei (%pkgName%) ist beschädigt."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Das Paket (%pkgName%) konnte nicht entpackt werden."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Update ist fehlgeschlagen; Wiederherstellung von..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Bereinigen..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Datenbereinigung nach Update ist fehlgeschlagen, fortfahren..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Beim Schreiben des Installationsmanifestes ist ein Fehler aufgetreten."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Aktualisierung abgeschlossen, %appname% wird geladen..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Suche nach verfügbaren Updates..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Update wird vorbereitet..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Update wird heruntergeladen..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Update wird heruntergeladen (%bytes% von %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Paket wird extrahiert..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Update wird installiert..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Installation wird überprüft..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Download ist abgeschlossen."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% muss für die Durchführung von Updates mit dem Internet verbunden sein. Stellen Sie eine Verbindung zum Internet her, und versuchen Sie es erneut."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Verzeichnis %dirname% konnte nicht erstellt werden, Fehler %errno%."
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Download ist fehlgeschlagen: HTTP-Fehler %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% speichert Spielinhalte nicht mehr unter '~/Documents/Steam Content' sondern unter '~/Library/Application Support/Steam/SteamApps'. Es befinden sich noch Spieledateien im alten Speicherort, die von %appname% nicht verschoben werden konnten, da bereits Dateien im neuen Speicherort vorhanden sind. Sie müssen die Dateien daher ggf. manuell verschieben oder die alten Dateien löschen und die Spiele erneut herunterladen. Trotzdem fortfahren?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% speichert Spielinhalte nicht mehr unter '~/Documents/Steam Content' sondern unter '~/Library/Application Support/Steam/SteamApps'. Es liegen noch Spieledateien im alten Speicherort, die von %appname% nicht verschoben werden konnten. Sie müssen die Dateien daher ggf. manuell verschieben oder die alten Dateien löschen und die Spiele erneut herunterladen. Trotzdem fortfahren?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% kann nicht aus einem Pfad mit Nicht-ASCII-Zeichen gestartet werden. Bitte installieren Sie %appname% in das Standardverzeichnis neu."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% abgeschlossen"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Abbrechen"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Kritischer Fehler"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Warnung"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Bitte ziehen Sie %appname% vor dem Start in den Ordner \"Programme\"."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "greek"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Ενημέρωση %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "Το %appname% πρέπει να ενημερωθεί πριν εκκινήσει."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "Το %appname% δεν μπορεί να γράψει στο φάκελο εγκατάστασής του. Σιγουρευτείτε ότι δεν προσπαθείτε να το εκτελέσετε από εικονικό δίσκο."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "Το %appname% δεν μπορεί να γράψει στο φάκελο εγκατάστασής του."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "Το %appname% απαιτεί %nMegaBytes%MB ελεύθερου χώρου στο δίσκο για να ενημερωθεί."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Αποτυχία φόρτωσης πακέτου manifest."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Αποτυχία επικύρωσης πακέτου manifest."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Αποτυχία αποθήκευσης πακέτου manifest."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Αποτυχία ανάγνωσης πακέτου (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Κατεστραμμένο αρχείο πακέτου (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Αποτυχία αποσυμπίεσης πακέτου (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Αποτυχία εφαρμογής ενημέρωσης, επαναφορά..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Καθαρισμός..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Αποτυχία καθαρισμού μετά την ενημέρωση, συνέχεια..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Αποτυχία εγγραφής πακέτου manifest εγκατάστασης."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Ενημέρωση ολοκληρώθηκε, εκκίνηση %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Έλεγχος για διαθέσιμες ενημερώσεις..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Προετοιμασία για ενημέρωση..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Λήψη ενημέρωσης..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Λήψη ενημέρωσης (%bytes% από %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Εξαγωγή πακέτου..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Εγκατάσταση ενημέρωσης..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Επαλήθευση εγκατάστασης..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Η λήψη ολοκληρώθηκε."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "Το %appname% απαιτεί σύνδεση στο διαδίκτυο για να ενημερωθεί. Ελέγξτε τη σύνδεσή σας στο διαδίκτυο και προσπαθήστε ξανά."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Αδυναμία δημιουργίας φακέλου %dirname%, σφάλμα %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Αποτυχία λήψης: σφάλμα http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "Το %appname% άλλαξε φάκελο αποθήκευσης παιχνιδιών από '~/Documents/Steam Content' σε '~/Library/Application Support/Steam/SteamApps'. Έχετε αρχεία παιχνιδιών στον αρχικό φάκελο και το %appname% δεν μπόρεσε να μετακινήσει τα αρχεία επειδή τα αρχεία υπάρχουν ήδη στη νέα τοποθεσία. Μπορεί να χρειαστεί να μετακινήσετε τα αρχεία εσείς, ή να διαγράψετε τα παλιά αρχεία και να κατεβάσετε τα αρχεία ξανά. Συνέχεια;"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "Το %appname% άλλαξε φάκελο αποθήκευσης παιχνιδιών από '~/Documents/Steam Content' σε '~/Library/Application Support/Steam/SteamApps'. Έχετε αρχεία παιχνιδιών στον αρχικό φάκελο και το %appname% δεν μπόρεσε να μετακινήσει τα αρχεία. Μπορεί να χρειαστεί να μετακινήσετε τα αρχεία εσείς, ή να διαγράψετε τα παλιά αρχεία και να κατεβάσετε τα αρχεία ξανά. Συνέχεια;"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "Το %appname% δεν μπορεί να εκκινήσει από διαδρομή φακέλου με μη αγγλικούς χαρακτήρες. Εγκαταστήστε το %appname% ξανά στον προεπιλεγμένο φάκελο."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Άκυρο"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Aνεπανόρθωτο σφάλμα"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Προειδοποίηση"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Σύρετε το %appname% στο φάκελο Εφαρμογών σας πριν το εκκινήσετε."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "hungarian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "A %appname% frissítése..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "A %appname% az indítás előtt elvégzi a szükséges frissítéseket."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "A %appname% nem tud írni a telepítési könyvtárba. Ellenőrizd, nem a lemezképről próbálod-e futtatni."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "A %appname% nem tud írni a telepítési könyvtárba."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "A %appname%nek %nMegaBytes% MB szabad lemezterületre van szüksége a frissítéshez."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "A csomagmanifest betöltése sikertelen."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "A csomagmanifest hitelesítése sikertelen."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "A csomagmanifest mentése sikertelen."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "A csomag (%pkgName%) olvasása sikertelen."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Sérült csomagfájl (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "A csomag (%pkgName%) kicsomagolása sikertelen."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "A frissítés alkalmazása sikertelen. Visszalépés..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Törlés..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "A telepítés utáni törlés sikertelen. Folytatás..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "A telepítési manifest írása sikertelen."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Frissítés kész. %appname% indítása..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Elérhető frissítések keresése..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Felkészülés a frissítésre..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Frissítés letöltése..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Frissítés letöltése (%bytes%/%size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Csomag kibontása..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Frissítés telepítése..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Telepítés hitelesítése..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "A letöltés kész."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "A %appname% frissítése csak online lehetséges. Ellenőrizd a hálózati kapcsolatot, és próbáld újra."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "A(z) %dirname% könyvtár létrehozása sikertelen, %errno% hiba lépett fel"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "A letöltés sikertelen: %errno% http hiba"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "A %appname% módosította a játéktartalmak mentési útvonalát a „~/Documents/Steam Content” helyről a „~/Library/Application Support/Steam/SteamApps” helyre. Játékfájlok vannak az eredeti helyen, és a %appname% nem tudta áthelyezni a fájlokat, mert már léteznek fájlok az új helyen. Előfordulhat, hogy manuálisan kell áthelyezned a fájlokat, vagy törölnöd kell a régi fájlokat, és újra le kell töltened a játékaidat. Ennek ellenére folytatod?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "A %appname% módosította a játéktartalmak mentési útvonalát a „~/Documents/Steam Content” helyről a „~/Library/Application Support/Steam/SteamApps” helyre. Játékfájlok vannak az eredeti helyen, és a %appname% nem tudta áthelyezni a fájlokat. Előfordulhat, hogy manuálisan kell áthelyezned a fájlokat, vagy törölnöd kell a régi fájlokat, és újra le kell töltened a játékaidat. Ennek ellenére folytatod?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "A(z) %appname% nem futtatható nem angol karaktereket tartalmazó útvonalról. Telepítsd újra a(z) %appname% alkalmazást az alapértelmezett mappába."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% kész"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Mégse"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Végzetes hiba"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Figyelmeztetés"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Húzd be a(z) %appname% alkalmazást az Alkalmazások mappába indítás előtt."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "italian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Aggiornamento di %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "È necessario che %appname% si aggiorni automaticamente prima dell'avvio."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "Impossibile scrivere nella cartella di installazione di %appname%. Verificare che non si stia tentando l'esecuzione dall'immagine del disco."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "Impossibile scrivere nella cartella di installazione di %appname%."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "Per l'aggiornamento di %appname% sono necessari %nMegaBytes% MB di spazio libero su disco."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Caricamento del manifesto del pacchetto non riuscito."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Verifica del manifesto del pacchetto non riuscita."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Salvataggio del manifesto del pacchetto non riuscito."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Lettura del pacchetto (%pkgName%) non riuscita."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "File del pacchetto (%pkgName%) danneggiato."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Decompressione del pacchetto (%pkgName%) non riuscita."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Applicazione dell'aggiornamento non riuscita, ripristino..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Pulitura..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Pulitura dopo l'aggiornamento non riuscita, proseguimento della procedura..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Scrittura del manifesto dell'installazione non riuscita."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Aggiornamento completato, avvio di %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Verifica della disponibilità di aggiornamenti..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Preparazione dell'aggiornamento..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Download dell'aggiornamento..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Download dell'aggiornamento (%bytes% di %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Estrazione del pacchetto..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Installazione dell'aggiornamento..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Verifica dell'installazione..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Download completato."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "È necessario che %appname% sia online per l'aggiornamento. Verifica la connessione alla rete e riprova."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Impossibile creare la cartella %dirname%: errore %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Download non riuscito: errore http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "È stato modificato il percorso in cui %appname% memorizza i contenuti di gioco da '~/Documents/Steam Content' in '~/Library/Application Support/Steam/SteamApps'. Sono presenti file di gioco nel percorso originario e %appname% non è stato in grado di spostarli poiché ne esistono già nel nuovo percorso. Potrebbe essere necessario spostare i file manualmente o cancellare i vecchi file e scaricare nuovamente i giochi. Continuare?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "È stato modificato il percorso in cui %appname% memorizza i contenuti di gioco da '~/Documents/Steam Content' in '~/Library/Application Support/Steam/SteamApps'. Sono presenti file di gioco nel percorso originario e %appname% non è stato in grado di spostarli. Potrebbe essere necessario spostare i file manualmente o cancellare i vecchi file e scaricare nuovamente i giochi. Continuare?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% non può essere avviato da un percorso contenente caratteri non inglesi. Reinstalla %appname% nel percorso predefinito."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% completato"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Annulla"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Errore fatale"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Attenzione"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Trascina %appname% nella tua cartella delle Applicazioni prima di avviarlo."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "japanese"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% を更新中..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% を起動するには、まず更新する必要があります。"
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "インストール ディレクトリに書き込むことができません。ディスク イメージから起動していないかご確認ください。"
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "インストール ディレクトリに書き込めません。"
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% の更新には、HDD に %nMegaBytes%MB の空き容量が必要です。"
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "パッケージ リストを読み込めませんでした。"
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "パッケージ リストを検証できませんでした。"
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "パッケージ リストを保存できませんでした。"
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "パッケージ(%pkgName%)を読み込めませんでした。"
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "パッケージ(%pkgName%)が破損しています。"
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "パッケージ(%pkgName%)を解凍できませんでした。"
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "更新を適用できませんでした。変更を元に戻しています..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "クリーンアップ中..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "更新後にクリーンアップできませんでした。続行中..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "インストール リストを書き込めませんでした。"
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "更新が完了しました。%appname% を起動します..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "更新を確認中..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "更新の準備中..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "更新をダウンロード中..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "更新をダウンロード中(%bytes% / %size% KB..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "パッケージを抽出中..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "更新をインストール中..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "インストール状況を確認中..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "ダウンロードが終了しました。"
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% の更新にはインターネットにアクセスする必要があります。ネットワーク接続をご確認のうえ、もう一度お試しください。"
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "ディレクトリ \"%dirname%\" を作成できませんでした。エラー %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "ダウンロードできませんでしたhttp エラー %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% のゲームコンテンツ保管場所が '~/Documents/Steam Content' から '~/Library/Application Support/Steam/SteamApps' に変更されました。変更前の場所にゲームファイルがあるため自動で新しい場所に移動しようとしましたが、すでに新しい場所にファイルがあるために移動できませんでした。手動でファイルを移動するか、古いファイルを削除してゲームをダウンロードしなおす必要がある可能性があります。このまま続けますか?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname%のゲームコンテンツ保管場所が '~/Documents/Steam Content' から '~/Library/Application Support/Steam/SteamApps' に変更されました。変更前の場所にゲームファイルがあるため自動で新しい場所に移動しようとしましたが、できませんでした。手動でファイルを移動するか、古いファイルを削除してゲームをダウンロードしなおす必要がある可能性があります。このまま続けますか?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% は英語以外の文字が含まれるフォルダパス名から実行することはできません。 %appname% を標準のフォルダに再インストールしてください。"
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% 完了"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "キャンセル"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - 致命的なエラー"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - 警告"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "起動する前に %appname% をアプリケーションフォルダにドラッグしてください。"
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "korean"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% 업데이트 중..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "실행 전에 먼저 %appname% 자기 자신을 업데이트해야 합니다."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% 설치 폴더에 쓰기 작업을 할 수 없습니다. 혹시 디스크 이미지에서 실행 중인 것은 아닌지 확인해보십시오."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% 설치 폴더에 쓰기 작업을 할 수 없습니다."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% 업데이트는 디스크 여유 공간 %nMegaBytes%MB가 있어야 가능합니다."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "패키지 manifest를 불러오지 못했습니다."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "패키지 manifest를 확인하지 못했습니다."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "패키지 manifest를 저장하지 못했습니다."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "패키지(%pkgName%)를 읽지 못했습니다.."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "손상된 패키지 파일(%pkgName%)입니다."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "패키지(%pkgName%)의 압축을 풀지 못했습니다.."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "업데이트를 적용하지 못했습니다. 되돌리는 중..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "삭제 중..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "업데이트 후 삭제하지 못했습니다. 계속하는 중..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "설치 manifest를 쓰지 못했습니다."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "업데이트 완료! %appname% 실행 중..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "사용 가능한 업데이트 확인 중..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "업데이트 준비 중..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "업데이트 내려받는 중..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "업데이트(%bytes%/%size%KB) 내려받는 중..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "패키지 압축을 푸는 중..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "업데이트 설치 중..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "설치 확인 중..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "내려받기 완료."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% 업데이트 과정은 인터넷을 통해 진행됩니다. 네트워크 연결을 확인하고 다시 시도하십시오."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "디렉토리 %dirname% 생성 실패, %errno% 오류"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "http 오류(%errno%)로 내려받지 못했습니다."
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname%의 게임 콘텐츠 저장 위치가 '~/Documents/Steam Content'에서 '~/Library/Application Support/Steam/SteamApps'로 변경되었습니다. 새로운 위치에 이미 파일이 존재하기 때문에 원래 위치의 게임 파일을 이동하지 못했습니다. 원래 위치의 파일을 직접 옮기거나 오래된 파일을 지우고 게임을 다시 내려받을 수 있습니다. 계속 실행하시겠습니까?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname%의 게임 콘텐츠 저장 위치가 '~/Documents/Steam Content'에서 '~/Library/Application Support/Steam/SteamApps'로 변경되었습니다. 원래 위치의 게임 파일은 이동하지 못했습니다. 원래 위치의 파일을 직접 옮기거나 오래된 파일을 지우고 게임을 다시 내려받을 수 있습니다. 계속 실행하시겠습니까?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname%은 알파벳 외의 문자가 포함된 폴더에서는 실행할 수 없습니다. %appname%을 기본 폴더에 재설치하십시오."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% 완료"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "확인"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "취소"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - 치명적인 오류"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - 경고"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "실행하기 전에 %appname%을 응용프로그램 폴더 안으로 드래그 하세요."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "korean"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% 업데이트 중..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "실행 전에 먼저 %appname% 자기 자신을 업데이트해야 합니다."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% 설치 폴더에 쓰기 작업을 할 수 없습니다. 혹시 디스크 이미지에서 실행 중인 것은 아닌지 확인해보십시오."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% 설치 폴더에 쓰기 작업을 할 수 없습니다."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% 업데이트는 디스크 여유 공간 %nMegaBytes%MB가 있어야 가능합니다."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "패키지 manifest를 불러오지 못했습니다."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "패키지 manifest를 확인하지 못했습니다."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "패키지 manifest를 저장하지 못했습니다."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "패키지(%pkgName%)를 읽지 못했습니다.."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "손상된 패키지 파일(%pkgName%)입니다."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "패키지(%pkgName%)의 압축을 풀지 못했습니다.."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "업데이트를 적용하지 못했습니다. 되돌리는 중..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "삭제 중..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "업데이트 후 삭제하지 못했습니다. 계속하는 중..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "설치 manifest를 쓰지 못했습니다."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "업데이트 완료! %appname% 실행 중..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "사용 가능한 업데이트 확인 중..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "업데이트 준비 중..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "업데이트 내려받는 중..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "업데이트(%bytes%/%size%KB) 내려받는 중..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "패키지 압축을 푸는 중..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "업데이트 설치 중..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "설치 확인 중..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "내려받기 완료."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% 업데이트 과정은 인터넷을 통해 진행됩니다. 네트워크 연결을 확인하고 다시 시도하십시오."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "디렉토리 %dirname% 생성 실패, %errno% 오류"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "http 오류(%errno%)로 내려받지 못했습니다."
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname%의 게임 콘텐츠 저장 위치가 '~/Documents/Steam Content'에서 '~/Library/Application Support/Steam/SteamApps'로 변경되었습니다. 새로운 위치에 이미 파일이 존재하기 때문에 원래 위치의 게임 파일을 이동하지 못했습니다. 원래 위치의 파일을 직접 옮기거나 오래된 파일을 지우고 게임을 다시 내려받을 수 있습니다. 계속 실행하시겠습니까?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname%의 게임 콘텐츠 저장 위치가 '~/Documents/Steam Content'에서 '~/Library/Application Support/Steam/SteamApps'로 변경되었습니다. 원래 위치의 게임 파일은 이동하지 못했습니다. 원래 위치의 파일을 직접 옮기거나 오래된 파일을 지우고 게임을 다시 내려받을 수 있습니다. 계속 실행하시겠습니까?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname%은 알파벳 외의 문자가 포함된 폴더에서는 실행할 수 없습니다. %appname%을 기본 폴더에 재설치하십시오."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% 완료"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "확인"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "취소"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - 치명적인 오류"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - 경고"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "실행하기 전에 %appname%을 응용프로그램 폴더 안으로 드래그 하세요."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "norwegian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Oppdaterer %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% må oppdatere seg selv før det starter."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% kan ikke skrive til installeringsmappen. Kontroller at du ikke prøver å kjøre fra diskavbildningen."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% kan ikke skrive til installeringsmappen."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% trenger %nMegaBytes% MB med ledig diskplass for å oppdatere."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Kunne ikke laste pakkemanifest."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Kunne ikke bekrefte pakkemanifest."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Kunne ikke lagre pakkemanifest."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Kunne ikke lese pakke (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Skadet pakkefil (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Kunne ikke åpne pakke (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Kunne ikke bruke oppdatering. Tilbakestiller..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Rydder opp..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Kunne ikke rydde opp etter oppdatering. Fortsetter..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Kunne ikke skrive installeringsmanifest."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Oppdateringen er fullført. Starter %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Ser etter tilgjengelige oppdateringer..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Gjør klar til å oppdatere..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Laster ned oppdatering..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Laster ned oppdatering (%bytes% av %size% kB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Pakker ut..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Installerer oppdatering..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Bekrefter installering..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Nedlastingen er fullført."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% må være tilkoblet for å kunne oppdatere. Bekreft nettverkstilkoblingen, og prøv på nytt."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Kunne ikke opprette mappen %dirname%. Fikk feilen %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Nedlastingen mislyktes: http-feil %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% har endret lagringssted for spillinnhold fra ~/Documents/Steam Content til ~/Library/Application Support/Steam/SteamApps. Du har spillfiler på det opprinnelige lagringsstedet, og %appname% kunne ikke flytte filene fordi det allerede finnes filer på det nye lagringsstedet. Det kan hende at du må flytte filene manuelt eller slette de gamle filene og laste ned spillene på nytt. Vil du fortsette likevel?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% har endret lagringssted for spillinnhold fra '~/Documents/Steam Content' til '~/Library/Application Support/Steam/SteamApps'. Du har spillfiler på det opprinnelige lagringsstedet, og %appname% kunne ikke flytte filene. Det kan hende at du må flytte filene manuelt eller slette de gamle filene og laste ned spillene på nytt. Vil du fortsette likevel?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% kan ikke kjøres fra en mappebane med ikke-engelske tegn. Vennligst installer %appname% på nytt til standardmappen."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% utført"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Avbryt"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Fatal feil"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Advarsel"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Vennligst dra %appname% inn i Programmer-mappen din før du starter det."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "polish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Aktualizowanie %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% musi zostać zaktualizowany przed uruchomieniem."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% nie może zapisać w katalogu instalacji. Upewnij się, że nie uruchamiasz z obrazu dysku."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% nie może zapisać w katalogu instalacji."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% potrzebuje %nMegaBytes% MB wolnego miejsca na dysku do celów aktualizacji."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Błąd wczytywania wykazu pakietu."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Błąd weryfikacji wykazu pakietu."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Błąd zapisu wykazu pakietu."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Błąd odczytu pakietu (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Uszkodzony plik pakietu (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Błąd rozpakowania pakietu (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Błąd aktualizacji, przywracanie..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Czyszczenie..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Błąd czyszczenia po aktualizacji, kontynuowanie..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Błąd zapisu wykazu instalacji."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Aktualizacja zakończona, uruchamianie %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Wyszukiwanie dostępnych uaktualnień..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Przygotowanie do aktualizacji..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Pobieranie aktualizacji..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Pobieranie aktualizacji (%bytes% z %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Rozpakowywanie pakietu..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Instalowanie aktualizacji..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Weryfikowanie instalacji..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Pobieranie zakończone."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% musi przejść w tryb online. Sprawdź połączenie z siecią i spróbuj ponownie."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Nie można utworzyć katalogu %dirname%, wystąpił błąd: %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Błąd pobierania: błąd http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% zmienił miejsce zapisu zawartości gier z '~/Documents/Steam Content' na '~/Library/Application Support/Steam/SteamApps'. W pierwotnej lokalizacji znajdują się pliki gier, których %appname% nie mógł przenieść, ponieważ istnieją już w nowej lokalizacji. Może być konieczne przeniesienie plików ręcznie lub usunięcie starych plików i ponowne pobranie gier. Czy mimo to kontynuować?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% zmienił miejsce zapisu zawartości gier z '~/Documents/Steam Content' na '~/Library/Application Support/Steam/SteamApps'. W pierwotnej lokalizacji znajdują się pliki gier, których %appname% nie mógł przenieść. Może być konieczne przeniesienie plików ręcznie lub usunięcie starych plików i ponowne pobranie gier. Czy mimo to kontynuować?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% nie może zostać uruchomiony z folderu o ścieżce posiadającej znaki inne niż angielskie. Przeinstaluj %appname% do folderu domyślnego."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% ukończono"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Anuluj"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - błąd krytyczny"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - ostrzeżenie"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Przed uruchomieniem należy przeciągnąć %appname% do folderu Aplikacje."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "portuguese"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "A atualizar %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "O %appname% tem de ser atualizado antes de ser iniciado."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "O %appname% não pode gravar no seu diretório de instalação. Não é possível executar a partir da imagem de disco."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "O %appname% não pode gravar no seu diretório de instalação."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "O %appname% necessita de %nMegaBytes%MB de espaço em disco livre para a atualização."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Falha no carregamento do manifesto do pacote."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Falha na verificação do manifesto do pacote."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Falha ao guardar o manifesto do pacote."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Falha na leitura do pacote (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Ficheiro de pacote corrompido (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Falha na descompressão do pacote (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Falha na aplicação da atualização. A reverter..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "A limpar..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Falha na limpeza após a atualização. A continuar..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Falha na escrita do manifesto de instalação."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Atualização concluída, a iniciar %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "A procurar atualizações disponíveis..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "A preparar a atualização..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "A transferir atualização..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "A transferir atualização (%bytes% de %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "A extrair pacote..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "A instalar atualização..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "A verificar a instalação..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Transferência concluída."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "O %appname% necessita de estar online para ser atualizado. Verifica a tua ligação de rede e tenta de novo."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Não foi possível criar o diretório %dirname%. Ocorreu o erro %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Falha na transferência: erro http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "O %appname% mudou o local onde guarda os ficheiros de '~/Documents/%appname% Content' para '~/Library/Application Support/%appname%/%appname%Apps'. Existem ficheiros na localização original e o %appname% não conseguiu mover os ficheiros porque estes já existem na nova localização. Talvez seja necessário mover os ficheiros manualmente ou eliminar os ficheiros e transferir os jogos novamente. Continuar?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "O %appname% mudou o local onde guarda os ficheiros de '~/Documents/%appname% Content' para '~/Library/Application Support/%appname%/%appname%Apps'. Existem ficheiros na localização original e o %appname% não conseguiu mover os ficheiros. Talvez seja necessário mover os ficheiros manualmente ou eliminar os ficheiros e transferir os jogos novamente. Continuar?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% não consegue ser executado num diretório com caracteres não ingleses. Por favor, reinstala %appname% na pasta predefinida."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "Progresso: %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Cancelar"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Erro Crítico"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Aviso"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Arrasta %appname% para a tua pasta de Aplicações antes de o iniciares."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "romanian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% se actualizează..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% trebuie să se autoactualizeze înainte de lansare."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% nu poate scrie în dosarul de instalare propriu. Asigură-te că nu încerci să îl rulezi din imaginea de pe disc."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% nu poate scrie în dosarul de instalare propriu."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% are nevoie %nMegaBytes% MB de spaţiu liber pe disc pentru actualizare."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Încărcarea manifestului pachetului a eşuat."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Verificarea manifestului pachetului a eşuat."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Salvarea manifestului pachetului a eşuat."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Citirea pachetului (%pkgName%) a eşuat."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Fişier pachet (%pkgName%) corupt."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Dezarhivarea pachetului (%pkgName%) a eşuat."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Aplicarea actualizării a eşuat, se revine..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Curăţare în curs..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Curăţarea după actualizare a eşuat, se continuă..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Scrierea manifestului instalării a eşuat."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Actualizare completă, se lansează %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Se caută actualizări disponibile..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Se pregăteşte actualizarea..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Se descarcă actualizarea..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Se descarcă actualizarea (%bytes% din %size% kB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Se extrage pachetul..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Se instalează actualizarea..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Se verifică instalarea..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Descărcare finalizată."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% trebuie să fie online pentru a se actualiza. Verificaţi conexiunea la reţea şi încercaţi din nou."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Nu s-a putut crea dosarul %dirname%, a fost generat mesajul de eroare %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Descărcare eşuată: eroare http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% a schimbat locul de stocare a conţinutului aferent jocurilor de la '~/Documents/Steam Content' la '~/Library/Application Support/Steam/SteamApps'. Aveţi fişiere de jocuri în locul original şi %appname% nu a putut să le mute deoarece fişierele există deja în locul nou. Poate fi necesar să mutaţi fişierele manual sau să ştergeţi fişierele vechi şi să descărcaţi din nou jocurile. Continuaţi oricum?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% a schimbat locul de stocare a conţinutului aferent jocurilor de la '~/Documents/Steam Content' la '~/Library/Application Support/Steam/SteamApps'. Aveţi fişiere de jocuri în locul original şi %appname% nu a putut să le mute. Poate fi necesar să mutaţi fişierele manual sau să ştergeţi fişierele vechi şi să descărcaţi din nou jocurile. Continuaţi oricum?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% nu poate rula de la o adresă de folder cu caractere non-engleze. Te rugăm să reinstalezi %appname% în folderul implicit."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% complet"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Anulează"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Eroare fatală"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Atenţie"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Te rugăm să muți %appname% în dosarul de Aplicații înainte de a încerca să o lansezi."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "russian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Обновление %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "Перед запуском %appname% должен обновиться сам."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% не может записывать в свою папку установки. Убедитесь что вы не пытаетесь работать с образа диска."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% не может записывать в свою папку установки."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "Для обновления %appname% необходимо %nMegaBytes%МБ свободного места на диске."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Сбой при загрузке файла-manifest пакета."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Сбой при проверке файла-manifest пакета."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Не удалось сохранить файл-manifest пакета."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Не удалось прочитать пакет (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Поврежден файл пакета (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Не удалось разархивировать пакет (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Сбой при обновлении, возвращаемся к исходному..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Идет очистка..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Сбой при очистке после обновления, продолжение процесса..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Сбой при записи файла-manifest установки."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Обновление завершено, запуск %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Проверка на наличие обновлений..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Подготовка к обновлению..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Загрузка обновления..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Загрузка обновления (%bytes% из %size% КБ)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Разархивирование пакета..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Установка обновления..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Проверка установки..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Загрузка выполнена."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "Для обновления %appname% должен быть онлайн. Проверьте ваше подключение к сети и повторите попытку."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Невозможно создать папку %dirname%, выводится код ошибки %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Сбой при загрузке: ошибка http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "Папка для хранения контента игры %appname% была изменена с '~/Documents/Steam Content' на '~/Library/Application Support/Steam/SteamApps'. Файлы игры находятся в первоначальной папке и %appname% не смог перенести их, так как такие же файлы уже существуют в новой папке. Возможно, вам придется перенести эти файлы вручную или удалить старые файлы и загрузить ваши игры еще раз. Продолжить?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "Папка для хранения контента игры %appname% была изменена с '~/Documents/Steam Content' на '~/Library/Application Support/Steam/SteamApps'. Файлы игры находятся в первоначальной папке и %appname% не смог перенести их. Возможно, вам придется перенести эти файлы вручную или удалить старые файлы и загрузить ваши игры еще раз. Продолжить?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% невозможно запустить из папки, путь к которой содержит символы, не характерные для английского языка. Пожалуйста, переустановите %appname% в папку по умолчанию."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "Готово %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Отмена"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% — критическая ошибка"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% — предупреждение"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Пожалуйста, переместите %appname% в папку «Приложения» перед запуском."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "schinese"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "正在更新 %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% 需要在启动前进行自我更新。"
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% 无法向其安装目录写入数据。请确保您没有尝试从磁盘映像中运行。"
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% 无法向其安装目录写入数据。"
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% 需要 %nMegaBytes%MB 可用磁盘空间用于更新。"
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "无法载入安装包清单。"
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "无法验证安装包清单。"
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "无法保存安装包清单。"
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "无法读取安装包(%pkgName%)。"
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "安装包文件(%pkgName%)已损坏。"
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "无法解压缩安装包(%pkgName%)。"
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "无法应用更新,正在还原..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "正在清理..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "更新后无法清理,正在继续..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "无法写入安装清单。"
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "更新完成,正在启动 %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "正在检查可用更新..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "正在准备更新..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "正在下载更新..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "正在下载更新 (已下载 %bytes%,共 %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "正在展开安装包..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "正在安装更新..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "正在验证安装..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "下载完成。"
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% 需要在线进行更新。请确认您的网络连接正常,然后重试。"
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "无法创建目录 %dirname%,发生错误 %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "下载失败http 错误 %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% 已经将游戏内容保存位置由“~/Documents/Steam Content”更改为“~/Library/Application Support/Steam/SteamApps”。在原始位置保存的游戏文件Steam 无法移动,因为新的保存位置上已经有文件存在。您可能需要手动移动这些文件,或者删除旧文件然后重新下载游戏。是否继续?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% 已经将游戏内容保存位置由“~/Documents/Steam Content”更改为“~/Library/Application Support/Steam/SteamApps”。在原始位置保存的游戏文件Steam 无法移动。您可能需要手动移动这些文件,或者删除旧文件然后重新下载游戏。是否继续?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% 无法在以非英文字符文件夹命名的路径下运行。请将 %appname% 重新安装至默认文件夹。"
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "已完成 %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "确定"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "取消"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - 致命错误"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - 警告"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "请在启动 %appname% 前其将拖动到您的“应用程序”文件夹中。"
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "spanish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Actualizando %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% debe auto-actualizarse antes de iniciarse."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% no puede escribir en su directorio de instalación. Asegúrate de que no estás intentando ejecutarlo desde la imagen del disco."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% no puede escribir en su directorio de instalación."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% necesita %nMegaBytes% MB de espacio libre en disco para actualizarse."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "No se ha podido cargar el archivo declarativo del paquete."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "No se ha podido comprobar el archivo declarativo del paquete."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "No se ha podido guardar el archivo declarativo del paquete."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "No se ha podido leer el paquete (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Archivo de paquete dañado (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "No se ha podido descomprimir el paquete (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "No se ha podido aplicar la actualización, volviendo a versión anterior..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Limpiando..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "No se ha podido limpiar después de la actualización, continuando..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "No se ha podido escribir el archivo declarativo de la instalación."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Actualización completa, iniciando %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Buscando actualizaciones disponibles..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Preparando para actualizar..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Descargando actualización..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Descargando actualización (%bytes% de %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Extrayendo paquete..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Instalando actualización..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Verificando instalación..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Descarga completa."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% debe estar conectado para actualizarse. Confirma tu conexión de red e inténtalo de nuevo."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "No se ha podido crear el directorio %dirname%, se obtuvo el error %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Error de descarga: error http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% ha cambiado el lugar en el que almacena el contenido de los juegos de '~/Documents/Steam Content' a '~/Library/Application Support/Steam/SteamApps'. Tienes archivos de juegos en la ubicación original y %appname% no ha podido moverlos porque ya existen en la nueva ubicación. Puede que tengas que moverlos manualmente o eliminar los antiguos y volver a descargar los juegos. ¿Quieres continuar de todos modos?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% ha cambiado el lugar en el que almacena el contenido de los juegos de '~/Documents/Steam Content' a '~/Library/Application Support/Steam/SteamApps'. Tienes archivos de juegos en la ubicación original y %appname% no ha podido moverlos. Puede que tengas que moverlos manualmente o eliminar los antiguos y volver a descargar los juegos. ¿Quieres continuar de todos modos?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% no puede iniciarse desde una ruta de carpeta con caracteres que no se encuentren en el alfabeto inglés. Por favor, vuelve a instalar %appname% en la carpeta predeterminada."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% completado"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "Aceptar"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Cancelar"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Error fatal"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Advertencia"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Por favor, arrastra %appname% a la carpeta Aplicaciones antes de iniciarlo."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "swedish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% uppdateras ..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% behöver självuppdateras innan det startas."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "Det går inte att skriva till %appname%s installationskatalog. Kontrollera att du inte försöker köra från diskavbildningen."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "Det går inte att skriva till %appname%s installationskatalog."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "Det behövs %nMegaBytes% MB ledigt diskutrymme för uppdateringen i %appname%."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Det gick inte att läsa in paketmanifest."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Det gick inte att verifiera paketmanifest."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Det gick inte att spara paketmanifest."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Det gick inte att läsa paketet (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Korrupt paketfil (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Det gick inte att zippa upp paketet (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Det gick inte att tillämpa uppdateringen. Återställer..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Rensar..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Det gick inte att rensa efter uppdateringen. Fortsätter..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Det gick inte att skriva installationsmanifestet."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Uppdatering klar, %appname% startas..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Söker efter tillgängliga uppdateringar..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Förbereder uppdatering..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Hämtar uppdatering..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Hämtar uppdatering (%bytes% av %size% kB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Extraherar paket..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Installerar uppdatering..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Verifierar installation..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Hämtning klar."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% måste vara online när en uppdatering ska göras. Kontrollera nätverksuppkopplingen och försök igen."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Det gick inte att skapa katalogen %dirname%. Felet %errno% uppstod."
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Hämtningen misslyckades: http-fel %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% har ändrat platsen där spelinnehåll lagras, från \"~/Documents/Steam Content\" till \"~/Library/Application Support/Steam/SteamApps\". Du har spelfiler på den ursprungliga platsen, men %appname% kunde inte flytta filerna eftersom filerna redan finns på den nya platsen. Du kan behöva flytta filerna manuellt eller radera de gamla filerna och hämta spelen igen. Fortsätt ändå?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% har ändrat platsen där spelinnehåll lagras, från \"~/Documents/Steam Content\" till \"~/Library/Application Support/Steam/SteamApps\". Du har spelfiler på den ursprungliga platsen, men %appname% kunde inte flytta filerna. Du kan behöva flytta filerna manuellt eller radera de gamla filerna och hämta spelen igen. Fortsätt ändå?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% kan inte köras från en mapp med icke-engelska tecken. Ominstallera %appname% i den ursprungliga mappen."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% färdigt"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "OK"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Avbryt"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Allvarligt fel"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Varning"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Dra %appname% till din programmapp innan du startar det."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "tchinese"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "正在更新 %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% 必須先自行更新才能啟動。"
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% 無法寫入自己的安裝目錄。請確定您未嘗試從磁碟映像執行 %appname%。"
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% 無法寫入自己的安裝目錄。"
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "需要 %nMegaBytes%MB 可用磁碟空間才能更新 %appname%。"
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "無法載入套件資訊清單。"
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "無法確認套件資訊清單。"
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "無法儲存套件資訊清單。"
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "無法讀取套件 (%pkgName%)。"
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "套件檔案損毀 (%pkgName%)。"
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "無法解壓縮套件 (%pkgName%)。"
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "無法套用更新,正在回復..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "正在清除..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "更新後無法清除,正在繼續處理..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "無法寫入安裝資訊清單。"
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "更新完成,正在啟動 %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "正在檢查可用更新..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "正在準備更新..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "正在下載更新..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "正在下載更新 (已下載 %bytes% KB共 %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "正在解壓縮套件..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "正在安裝更新..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "正在確認安裝..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "下載完成。"
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% 必須上線才能更新。請確認您已連線到網路,然後再試一次。"
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "無法建立 %dirname% 目錄,發生錯誤 %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "下載失敗http 錯誤 %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% 已將儲存遊戲內容的位置從「~/Documents/Steam Content」變更為「~/Library/Application Support/Steam/SteamApps」。原始位置中還有您的遊戲檔案Steam 無法移動檔案,因為檔案已存在於新位置中。您必須手動移動檔案,或刪除舊檔案然後重新下載遊戲。是否仍要繼續?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% 已將儲存遊戲內容的位置從「~/Documents/Steam Content」變更為「~/Library/Application Support/Steam/SteamApps」。原始位置中還有您的遊戲檔案但 %appname% 無法移動檔案。您必須手動移動檔案,或刪除舊檔案然後重新下載遊戲。是否仍要繼續?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% 無法在含有非英文字元的資料夾上執行,請將 %appname% 重新安裝至預設的資料夾。"
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% 完成"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "確定"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "取消"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - 重大錯誤"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - 警告"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "請在開啟 %appname% 之前將它拖曳至您的應用程式資料夾。"
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "thai"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "กำลังอัปเดต %appname%..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% ต้องอัปเดตตัวเองก่อนเริ่ม"
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% ไม่สามารถเขียนในไดเรกทอรีที่ติดตั้งได้ ตรวจสอบให้แน่ใจว่าคุณไม่ได้พยายามรันจากดิสก์อิมเมจ"
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% ไม่สามารถเขียนในไดเรกทอรีที่ติดตั้งได้"
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% ต้องการพื้นที่ว่างในดิสก์ %nMegaBytes%MB เพื่ออัปเดต"
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "ล้มเหลวในการโหลดมานิเฟสต์ของแพ็กเกจ"
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "ล้มเหลวในการตรวจสอบมานิเฟสต์ของแพ็กเกจ"
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "ล้มเหลวในการบันทึกมานิเฟสต์ของแพ็กเกจ"
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "ล้มเหลวในการอ่านแพ็กเกจ (%pkgName%)"
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "ไฟล์แพ็กเกจเสียหาย (%pkgName%)"
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "การแตกแพ็กเกจ (%pkgName%) ล้มเหลว"
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "การใช้อัปเดตล้มเหลว, กำลังย้อนกลับ..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "กำลังล้างข้อมูล..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "การล้างข้อมูลหลังอัปเดตล้มเหลว, กำลังดำเนินการต่อ..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "ล้มเหลวในการเขียนมานิเฟสต์ของการติดตั้ง"
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "อัปเดตเสร็จสมบูรณ์, กำลังเริ่ม %appname%..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "กำลังตรวจหาอัปเดตที่พร้อมใช้งาน..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "กำลังเตรียมอัปเดต..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "กำลังดาวน์โหลดอัปเดต..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "กำลังดาวน์โหลดอัปเดต (%bytes% / %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "กำลังแยกแพ็กเกจ..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "กำลังติดตั้งอัปเดต..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "กำลังตรวจสอบการติดตั้ง..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "ดาวน์โหลดเสร็จสมบูรณ์"
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname% ต้องออนไลน์เพื่ออัปเดต โปรดตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "ไม่สามารถสร้างไดเรกทอรี %dirname% เกิดข้อผิดพลาด %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "การดาวน์โหลดล้มเหลว: ข้อผิดพลาด http %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname% เปลี่ยนที่เก็บข้อมูลเกมจาก '~/Documents/Steam Content' เป็น '~/Library/Application Support/Steam/SteamApps' คุณมีไฟล์เกมอยู่ในตำแหน่งเดิม และ %appname% ไม่สามารถย้ายไฟล์ได้เนื่องจากไฟล์มีอยู่แล้วในตำแหน่งใหม่ คุณอาจต้องการย้ายไฟล์ด้วยตนเอง หรือลบไฟล์เก่า และดาวน์โหลดเกมของคุณอีกครั้ง ดำเนินการต่อไปหรือไม่"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname% เปลี่ยนที่เก็บข้อมูลเกมจาก '~/Documents/Steam Content' เป็น '~/Library/Application Support/Steam/SteamApps' คุณมีไฟล์เกมอยู่ในตำแหน่งเดิม และ %appname% ไม่สามารถย้ายไฟล์ได้ คุณอาจต้องการย้ายไฟล์ด้วยตนเอง หรือลบไฟล์เก่า และดาวน์โหลดเกมของคุณอีกครั้ง ดำเนินการต่อไปหรือไม่"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname% ไม่สามารถเปิดจากโฟลเดอร์ที่มีชื่อที่ไม่ใช่ภาษาอังกฤษ กรุณาติดตั้ง %appname% ลงในโฟลเดอร์ที่เป็นภาษาอังกฤษ"
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "เสร็จสมบูรณ์ %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "ตกลง"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "ยกเลิก"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - พบข้อผิดพลาดร้ายแรง"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - คำเตือน"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "กรุณาลาก %appname% ไปที่โฟลเดอร์แอพพลิเคชั่นก่อนที่จะเปิด"
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "turkish"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "%appname% Güncelleniyor..."
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname%'in, çalışmadan önce kendisini güncellemesi gerekiyor."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% yükleme klasörüne yazamıyor. Disk imajı üzerinde çalıştırdığınızdan emin olun."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% yükleme klasörüne yazamıyor."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname%'in güncelleştirme için %nMegaBytes%MB boş alana ihtiyacı var."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Paket manifestosu yüklenemedi."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Paket manifestosu doğrulanamadı."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Paket manifestosu kaydedilemedi."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Paket manifestosu okunamadı (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Bozuk paket dosyası (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Paket dosyası çıkartılamadı (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Güncelleme uygulanamadı, geri alınıyor..."
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Temizleniyor..."
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Güncellemeden sonra temizlenemedi, devam ediliyor..."
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Yükleme manifestosu yazılamadı."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Güncelleme tamamlandı, %appname% başlatılıyor..."
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Güncellemeler denetleniyor..."
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Güncellemeye hazırlanıyor..."
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Güncelleme indiriliyor..."
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Güncelleme indiriliyor (%bytes% / %size% KB)..."
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Paket çıkartılıyor..."
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Güncelleme yükleniyor..."
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Yükleme doğrulanıyor..."
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "İndirme tamamlandı."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "%appname%, güncelleme için çevrimiçi olmalıdır. Lütfen ağ bağlantınızı doğrulayın ve yeniden deneyin."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "%dirname% dizini oluşturulamıyor, %errno% hatası"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "İndirme başarısız: %errno% http hatası"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "%appname%, oyun içeriklerini depolama yerini '~/Documents/Steam Content' den '~/Library/Application Support/Steam/SteamApps' olarak değiştirdi. Orijinal depolama yerinde dosyalarınız var ve %appname% bu dosyaları taşıyamıyor çünkü dosyalar zaten yeni depolama yerinde oluşturulmuş. Bu dosyaları taşıma işlemini elle yapabilir ya da eski dosyaları silerek oyunlarınızı tekrar indirebilirsiniz. Devam edilsin mi?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "%appname%, oyun içeriklerini depolama yerini '~/Documents/Steam Content' den '~/Library/Application Support/Steam/SteamApps' olarak değiştirdi. Orijinal depolama yerinde dosyalarınız var ve %appname% bu dosyaları taşıyamıyor. Bu dosyaları taşıma işlemini elle yapabilir ya da eski dosyaları silerek oyunlarınızı tekrar indirebilirsiniz. Devam edilsin mi?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "%appname%, İngilizce olmayan karakterler içeren bir klasörden çalıştırılamaz. Lütfen %appname% uygulamasını varsayılan klasöre tekrar yükleyin."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "%percent%%% tamamlandı"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "Tamam"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "İptal"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% - Kritik Hata"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% - Uyarı"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Başlatmadan önce lütfen %appname% uygulamasını Uygulamalar klasörünüze sürükleyin."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

View File

@@ -0,0 +1,76 @@
"Language" "ukrainian"
"Tokens"
{
"SteamBootstrapper_UpdatingSteam" "Триває оновлення %appname%…"
"[english]SteamBootstrapper_UpdatingSteam" "Updating %appname%..."
"SteamBootstrapper_ElevationPrompt" "%appname% має оновитися для запуску."
"[english]SteamBootstrapper_ElevationPrompt" "%appname% needs to self-update before launching."
"SteamBootstrapper_ReadOnlyInstallOSX" "%appname% не має дозволу на запис до цієї папки. Переконайтеся, що ви запускаєте не з образу диска."
"[english]SteamBootstrapper_ReadOnlyInstallOSX" "%appname% is unable to write to its folder. Make sure you're not trying to run from the disk image."
"SteamBootstrapper_ReadOnlyInstall" "%appname% не має дозволу на запис до цієї папки."
"[english]SteamBootstrapper_ReadOnlyInstall" "%appname% is unable to write to its folder."
"SteamBootstrapper_InsufficientDiskSpace" "%appname% потребує %nMegaBytes% МБ вільного місця на носії для оновлення."
"[english]SteamBootstrapper_InsufficientDiskSpace" "%appname% needs %nMegaBytes%MB of free disk space to update."
"SteamBootstrapper_FailedManifestLoad" "Сталася помилка при спробі завантаження manifest-файлу пакунка."
"[english]SteamBootstrapper_FailedManifestLoad" "Failed to load package manifest."
"SteamBootstrapper_FailedManifestVerify" "Сталася помилка при перевірці manifest-файлу пакунка."
"[english]SteamBootstrapper_FailedManifestVerify" "Failed to verify package manifest."
"SteamBootstrapper_FailedManifestSave" "Сталася помилка при спробі зберегти manifest-файл пакунка."
"[english]SteamBootstrapper_FailedManifestSave" "Failed to save package manifest."
"SteamBootstrapper_FailedPackageRead" "Помилка читання пакунка (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageRead" "Failed to read package (%pkgName%)."
"SteamBootstrapper_CorruptPackageFile" "Файл пакунка пошкоджений (%pkgName%)."
"[english]SteamBootstrapper_CorruptPackageFile" "Corrupt package file (%pkgName%)."
"SteamBootstrapper_FailedPackageUnzip" "Помилка видобування пакунка (%pkgName%)."
"[english]SteamBootstrapper_FailedPackageUnzip" "Failed to unzip package (%pkgName%)."
"SteamBootstrapper_UpdateApplyFail" "Не вдалося застосувати оновлення, повернення до вихідної версії…"
"[english]SteamBootstrapper_UpdateApplyFail" "Failed to apply update, reverting..."
"SteamBootstrapper_UpdateCleanup" "Очистка…"
"[english]SteamBootstrapper_UpdateCleanup" "Cleaning up..."
"SteamBootstrapper_UpdateCleanupFail" "Не вдалося провести очищення після оновлення, продовження процесу…"
"[english]SteamBootstrapper_UpdateCleanupFail" "Failed to clean up after update, continuing..."
"SteamBootstrapper_UpdateFinalizeFail" "Помилка запису manifest-файлу інсталяції."
"[english]SteamBootstrapper_UpdateFinalizeFail" "Failed to write installation manifest."
"SteamBootstrapper_UpdateComplete" "Оновлення завершено, запуск %appname%…"
"[english]SteamBootstrapper_UpdateComplete" "Update complete, launching %appname%..."
"SteamBootstrapper_UpdateChecking" "Перевірка наявності оновлень…"
"[english]SteamBootstrapper_UpdateChecking" "Checking for available updates..."
"SteamBootstrapper_UpdatePrepare" "Підготовка до оновлення…"
"[english]SteamBootstrapper_UpdatePrepare" "Preparing to update..."
"SteamBootstrapper_UpdateDownload" "Завантаження оновлення…"
"[english]SteamBootstrapper_UpdateDownload" "Downloading update..."
"SteamBootstrapper_UpdateDownloading" "Завантаження оновлення (%bytes% з %size% КБ)…"
"[english]SteamBootstrapper_UpdateDownloading" "Downloading update (%bytes% of %size% KB)..."
"SteamBootstrapper_UpdateExtractingPackage" "Видобування пакунка…"
"[english]SteamBootstrapper_UpdateExtractingPackage" "Extracting package..."
"SteamBootstrapper_UpdateInstalling" "Триває інсталювання оновлення…"
"[english]SteamBootstrapper_UpdateInstalling" "Installing update..."
"SteamBootstrapper_InstallVerify" "Перевірка інсталяції…"
"[english]SteamBootstrapper_InstallVerify" "Verifying installation..."
"SteamBootstrapper_DownloadComplete" "Завантаження завершено."
"[english]SteamBootstrapper_DownloadComplete" "Download complete."
"SteamBootstrapper_NoNetwork" "Для оновлення %appname% необхідне з’єднання з Інтернетом. Переконайтеся в його наявності та спробуйте, будь ласка, знову."
"[english]SteamBootstrapper_NoNetwork" "%appname% needs to be online to update. Please confirm your network connection and try again."
"SteamBootstrapper_FailedMkdir" "Не вдалося створити папку %dirname%, виникла помилка: %errno%"
"[english]SteamBootstrapper_FailedMkdir" "Couldn't create directory %dirname%, got error %errno%"
"SteamBootstrapper_FailedDownloadHTTPError" "Збій завантаження: помилка HTTP %errno%"
"[english]SteamBootstrapper_FailedDownloadHTTPError" "Download failed: http error %errno%"
"SteamBootstrapper_MoveContentDir_DestExists" "Розташування ігрових даних для %appname% було змінено з «~/Documents/%appname% Content» на «~/Library/Application Support/%appname%/%appname%Apps». Ви маєте файли в попередньому місці, але %appname% не вдалося їх перемістити, оскільки ці файли вже існують у новому розташуванні. Вам можливо доведеться перемістити файли самотужки, видалити старі файли або заново завантажити свої ігри. Усе одно продовжити?"
"[english]SteamBootstrapper_MoveContentDir_DestExists" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was not able to move the files because files already exist at the new location. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_MoveContentDir_CopyError" "Розташування ігрових даних для %appname% було змінено з «~/Documents/%appname% Content» на «~/Library/Application Support/%appname%/%appname%Apps». Ви маєте файли в попередньому місці, але %appname% не вдалося їх перемістити. Вам можливо доведеться перемістити файли самотужки, видалити старі файли або заново завантажити свої ігри. Усе одно продовжити?"
"[english]SteamBootstrapper_MoveContentDir_CopyError" "%appname% has changed where it stores game content from '~/Documents/Steam Content' to '~/Library/Application Support/Steam/SteamApps'. You have game files in the original location, and %appname% was unable to move the files. You may need to move the files manually, or delete the old files and download your games again. Continue anyway?"
"SteamBootstrapper_InstallDirNotASCII" "Запуск %appname% неможливий з розташування, що містить нелатинські літери. Будь ласка, інсталюйте %appname% заново в папку за замовчуванням."
"[english]SteamBootstrapper_InstallDirNotASCII" "%appname% cannot run from a folder path with non-English characters. Please re-install %appname% to the default folder."
"SteamBootstrapper_PercentComplete" "Виконано %percent%%%"
"[english]SteamBootstrapper_PercentComplete" "%percent%%% complete"
"SteamBootstrapper_OK" "Гаразд"
"[english]SteamBootstrapper_OK" "OK"
"SteamBootstrapper_Cancel" "Скасувати"
"[english]SteamBootstrapper_Cancel" "Cancel"
"SteamBootstrapper_Error_Title" "%appname% — Критична помилка"
"[english]SteamBootstrapper_Error_Title" "%appname% - Fatal Error"
"SteamBootstrapper_Warning_Title" "%appname% — Попередження"
"[english]SteamBootstrapper_Warning_Title" "%appname% - Warning"
"SteamBootstrapper_RunFromDiskImageOSX" "Будь ласка, перетягніть %appname% у папку «Програми» перед відкриттям."
"[english]SteamBootstrapper_RunFromDiskImageOSX" "Please drag %appname% into your Applications folder before launching it."
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,42 @@
#!/usr/bin/env bash
STEAMROOT="$(cd "${0%/*}" && echo $PWD)"
STEAMCMD=`basename "$0" .sh`
UNAME=`uname`
if [ "$UNAME" == "Linux" ]; then
STEAMEXE="${STEAMROOT}/linux32/${STEAMCMD}"
PLATFORM="linux32"
export LD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$LD_LIBRARY_PATH"
else # if [ "$UNAME" == "Darwin" ]; then
STEAMEXE="${STEAMROOT}/${STEAMCMD}"
export DYLD_LIBRARY_PATH="$STEAMROOT:$DYLD_LIBRARY_PATH"
export DYLD_FRAMEWORK_PATH="$STEAMROOT:$DYLD_FRAMEWORK_PATH"
fi
ulimit -n 2048
MAGIC_RESTART_EXITCODE=42
if [ "$DEBUGGER" == "gdb" ] || [ "$DEBUGGER" == "cgdb" ]; then
ARGSFILE=$(mktemp $USER.steam.gdb.XXXX)
# Set the LD_PRELOAD varname in the debugger, and unset the global version.
if [ "$LD_PRELOAD" ]; then
echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE"
echo show env LD_PRELOAD >> "$ARGSFILE"
unset LD_PRELOAD
fi
$DEBUGGER -x "$ARGSFILE" "$STEAMEXE" "$@"
rm "$ARGSFILE"
else
$DEBUGGER "$STEAMEXE" "$@"
fi
STATUS=$?
if [ $STATUS -eq $MAGIC_RESTART_EXITCODE ]; then
exec "$0" "$@"
fi
exit $STATUS

Binary file not shown.

View File

@@ -0,0 +1 @@
run_build.bat shows how to run a Steam content build for AppID 1000 which has one depot 1001.

View File

@@ -0,0 +1 @@
builder\steamcmd.exe +login account password +run_app_build_http ..\scripts\app_build_1000.vdf +quit

View File

@@ -0,0 +1,16 @@
"appbuild"
{
"appid" "411610"
"desc" "Tick's Tales" // description for this build
"buildoutput" "..\output\" // build output folder for .log, .csm & .csd files, relative to location of this file
"contentroot" "/Users/brycecovert/dev/advent/desktop/target/windows" // root content folder, relative to location of this file
"setlive" "default" // branch to set live after successful build, non if empty
"preview" "0" // to enable preview builds
"local" "" // set to flie path of local content server
"depots"
{
"411611" "depot_build_411611.vdf"
"411612" "depot_build_411612.vdf"
}
}

View File

@@ -0,0 +1,31 @@
"DepotBuildConfig"
{
// Set your assigned depot ID here
"DepotID" "411611"
// Set a root for all content.
// All relative paths specified below (LocalPath in FileMapping entries, and FileExclusion paths)
// will be resolved relative to this root.
// If you don't define ContentRoot, then it will be assumed to be
// the location of this script file, which probably isn't what you want
"ContentRoot" "/Users/brycecovert/dev/advent/desktop/target/windows"
// include all files recursivley
"FileMapping"
{
// This can be a full path, or a path relative to ContentRoot
"LocalPath" "*"
// This is a path relative to the install folder of your game
"DepotPath" "."
// If LocalPath contains wildcards, setting this means that all
// matching files within subdirectories of LocalPath will also
// be included.
"recursive" "1"
}
// but exclude all symbol files
// This can be a full path, or a path relative to ContentRoot
"FileExclusion" "*.pdb"
}

View File

@@ -0,0 +1,31 @@
"DepotBuildConfig"
{
// Set your assigned depot ID here
"DepotID" "411612"
// Set a root for all content.
// All relative paths specified below (LocalPath in FileMapping entries, and FileExclusion paths)
// will be resolved relative to this root.
// If you don't define ContentRoot, then it will be assumed to be
// the location of this script file, which probably isn't what you want
"ContentRoot" "/Users/brycecovert/dev/advent/desktop/target/osx"
// include all files recursivley
"FileMapping"
{
// This can be a full path, or a path relative to ContentRoot
"LocalPath" "*"
// This is a path relative to the install folder of your game
"DepotPath" "."
// If LocalPath contains wildcards, setting this means that all
// matching files within subdirectories of LocalPath will also
// be included.
"recursive" "1"
}
// but exclude all symbol files
// This can be a full path, or a path relative to ContentRoot
"FileExclusion" "*.pdb"
}