1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-06 09:34:05 +00:00

Update translations and minor fixes

This commit is contained in:
tobspr 2022-06-20 19:08:14 +02:00
parent d3d364b0f2
commit 8001727196
36 changed files with 764 additions and 255 deletions

View File

@ -49,45 +49,6 @@
} }
} }
.steamSso {
position: fixed;
@include S(top, 0px);
@include S(left, 10px);
background: rgba(88, 92, 102, 0.4);
@include SuperSmallText;
color: #fff;
@include S(max-width, 150px);
@include S(border-radius, $globalBorderRadius);
border-top-left-radius: 0;
border-top-right-radius: 0;
@include S(padding, 5px);
box-shadow: 0 D(5px) D(15px) rgba(#000, 0.1);
display: flex;
color: #000;
flex-direction: column;
a.ssoSignIn {
background: #171a23 uiResource("steam_signin.png") center center / contain no-repeat;
@include S(width, 110px);
@include S(height, 19px);
display: inline-flex;
@include S(border-radius, $globalBorderRadius);
@include S(margin-top, 3px);
overflow: hidden;
text-indent: -999em;
&:hover {
opacity: 0.95;
}
}
@include DarkThemeOverride {
color: #333539;
a {
color: #111;
}
}
}
.fullscreenBackgroundVideo { .fullscreenBackgroundVideo {
// display: none !important; // display: none !important;
z-index: -1; z-index: -1;
@ -972,6 +933,51 @@
} }
} }
> .steamSso {
background: rgba($colorBlueBright, 0.9);
&:hover {
background: rgba($colorBlueBright, 0.9);
}
// @include SuperSmallText;
// color: #fff;
// @include S(max-width, 150px);
// @include S(border-radius, $globalBorderRadius);
// border-top-left-radius: 0;
// border-top-right-radius: 0;
@include S(padding, 5px);
// box-shadow: 0 D(5px) D(15px) rgba(#000, 0.1);
// color: #000;
display: flex;
color: #222428;
flex-direction: column;
@include S(font-size, 9px);
a.ssoSignIn {
background: #171a23 uiResource("steam_signin.png") center center / contain no-repeat;
width: 100%;
box-sizing: border-box;
@include S(height, 16px);
@include S(min-height, 16px);
display: inline-flex;
@include S(border-radius, $globalBorderRadius * 0.5);
@include S(margin-top, 3px);
overflow: hidden;
text-indent: -999em;
&:hover {
opacity: 0.95;
}
}
@include DarkThemeOverride {
color: #333539;
a {
color: #111;
}
}
}
> .sidelinks { > .sidelinks {
display: grid; display: grid;
align-items: flex-start; align-items: flex-start;

View File

@ -51,6 +51,7 @@ export async function authorizeViaSSOToken(app, dialogs) {
return; return;
} }
try {
const response = await Promise.race([ const response = await Promise.race([
fetch(apiUrl + "/v1/sso/refresh", { fetch(apiUrl + "/v1/sso/refresh", {
method: "POST", method: "POST",
@ -63,6 +64,7 @@ export async function authorizeViaSSOToken(app, dialogs) {
setTimeout(() => reject("timeout exceeded"), 20000); setTimeout(() => reject("timeout exceeded"), 20000);
}), }),
]); ]);
const responseText = await response.json(); const responseText = await response.json();
if (!responseText.token) { if (!responseText.token) {
console.warn("Failed to register"); console.warn("Failed to register");
@ -74,6 +76,12 @@ export async function authorizeViaSSOToken(app, dialogs) {
window.localStorage.setItem("steam_sso_auth_token", responseText.token); window.localStorage.setItem("steam_sso_auth_token", responseText.token);
app.clientApi.token = responseText.token; app.clientApi.token = responseText.token;
WEB_STEAM_SSO_AUTHENTICATED = true; WEB_STEAM_SSO_AUTHENTICATED = true;
} catch (ex) {
console.warn("Auth failure", ex);
window.localStorage.setItem("steam_sso_auth_token", "");
window.location.replace("/");
return new Promise(() => null);
}
}; };
await verify(); await verify();

View File

@ -120,25 +120,6 @@ export class MainMenuState extends GameState {
${showExitAppButton ? `<button class="exitAppButton" aria-label="Exit App"></button>` : ""} ${showExitAppButton ? `<button class="exitAppButton" aria-label="Exit App"></button>` : ""}
</div> </div>
${
G_IS_STANDALONE || WEB_STEAM_SSO_AUTHENTICATED
? ""
: `<div class="steamSso">
${T.mainMenu.playFullVersion}
<a class="ssoSignIn" href="${
this.app.clientApi.getEndpoint() + "/v1/noauth/steam-sso"
}">Sign in</a>
</div>`
}
${
WEB_STEAM_SSO_AUTHENTICATED
? `
<div class="steamSso">${T.mainMenu.playingFullVersion}
<a href="?sso_logout_silent">${T.mainMenu.logout}</a>
</div>
`
: ""
}
<video autoplay muted loop class="fullscreenBackgroundVideo"> <video autoplay muted loop class="fullscreenBackgroundVideo">
<source src="${cachebust("res/bg_render.webm")}" type="video/webm"> <source src="${cachebust("res/bg_render.webm")}" type="video/webm">
@ -243,6 +224,27 @@ export class MainMenuState extends GameState {
: ` : `
<div class="footer ${showExternalLinks ? "" : "noLinks"} "> <div class="footer ${showExternalLinks ? "" : "noLinks"} ">
${
G_IS_STANDALONE || WEB_STEAM_SSO_AUTHENTICATED
? ""
: `<div class="steamSso boxLink">
${T.mainMenu.playFullVersion}
<a class="ssoSignIn" href="${
this.app.clientApi.getEndpoint() + "/v1/noauth/steam-sso"
}">Sign in</a>
</div>`
}
${
WEB_STEAM_SSO_AUTHENTICATED
? `
<div class="steamSso boxLink">${T.mainMenu.playingFullVersion}
<a href="?sso_logout_silent">${T.mainMenu.logout}</a>
</div>
`
: ""
}
${ ${
showExternalLinks && !G_IS_STEAM_DEMO showExternalLinks && !G_IS_STEAM_DEMO
? ` ? `

View File

@ -95,6 +95,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -290,6 +293,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Move moveMap: Move
@ -1321,3 +1337,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -298,6 +301,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Moure moveMap: Moure
@ -1363,3 +1379,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -95,6 +95,9 @@ mainMenu:
title: Aktivní módy title: Aktivní módy
warningPuzzleDLC: Nelze hrát Puzzle DLC společně s módy. Prosím deaktivujte warningPuzzleDLC: Nelze hrát Puzzle DLC společně s módy. Prosím deaktivujte
všechny módy, abyste mohli hrát DLC. všechny módy, abyste mohli hrát DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -289,6 +292,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Posun mapy moveMap: Posun mapy
@ -1323,3 +1339,5 @@ mods:
description: Aktivace či deaktivace módů je v současné době možná pouze description: Aktivace či deaktivace módů je v současné době možná pouze
kopírováním souboru módu z nebo do mods/ složky. Nicméně, možnost kopírováním souboru módu z nebo do mods/ složky. Nicméně, možnost
správy módů přímo ze hry je plánována pro budoucí aktualizaci! správy módů přímo ze hry je plánována pro budoucí aktualizaci!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -96,6 +96,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Det er ikke muligt at spille Puzzle DLC med mods. Slå alle warningPuzzleDLC: Det er ikke muligt at spille Puzzle DLC med mods. Slå alle
mods fra for at spille DLC. mods fra for at spille DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -291,6 +294,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Bevæg dig moveMap: Bevæg dig
@ -1325,3 +1341,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Aktive Mods title: Aktive Mods
warningPuzzleDLC: Das Puzzle-DLC und Mods sind nicht kompatibel. Bitte warningPuzzleDLC: Das Puzzle-DLC und Mods sind nicht kompatibel. Bitte
deaktiviere zuerst alle Mods, um das DLC zu spielen. deaktiviere zuerst alle Mods, um das DLC zu spielen.
playFullVersion: Spiel die Vollversion im Browser!
playingFullVersion: Du spielst jetzt die Vollversion!
logout: Ausloggen
puzzleMenu: puzzleMenu:
play: Spielen play: Spielen
edit: Bearbeiten edit: Bearbeiten
@ -363,6 +366,20 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Ausgeloggt aus Vollversion
desc:
Du wurdest aus der Browser-Vollversion ausgeloggt da entweder deine Internetverbindung instabil ist,
oder du auf einem anderen Gerät spielst.<br><br>
Bitte stelle sicher dass du shapez nicht in einem anderen Browser-Tab offen hast oder auf einem weiteren Computer mit demselben Steam-Account.
<br><br>
Du kannst dich dann erneut im Hauptmenü einloggen.
steamSsoNoOwnership:
title: Vollversion nötig
desc:
Um die Vollversion im Browser zu spielen brauchst du sowohl das Basispiel als auch das Puzzle DLC auf deinem Steam Account.<br><br>
Bitte stelle sicher, dass du beide gekauft hast und den richtigen Steam Account verwendest. Danach kannst du es erneut versuchen.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Bewegen moveMap: Bewegen
@ -1001,6 +1018,7 @@ mods:
entsprechende Datei in den Modordner einfügst, oder löschst. Das entsprechende Datei in den Modordner einfügst, oder löschst. Das
(De-)Aktivieren der Mods in diesem Menü ist allerdings schon für ein (De-)Aktivieren der Mods in diesem Menü ist allerdings schon für ein
späteres Update geplant! späteres Update geplant!
browserNoSupport: Aufgrund von Browser-Einschränkungen kannst du aktuell nur in der Steam-Version Mods installieren - Sorry!
settings: settings:
title: Einstellungen title: Einstellungen
categories: categories:

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -303,6 +306,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Κίνηση moveMap: Κίνηση
@ -1363,3 +1379,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -131,8 +131,8 @@ mainMenu:
helpTranslate: Help translate! helpTranslate: Help translate!
madeBy: Made by <author-link> madeBy: Made by <author-link>
playFullVersion: Sign in to play the full version in your Browser! playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version! Not all features work yet, but I'm working on it! playingFullVersion: You are now playing the full version!
logout: Logout logout: Logout
# This is shown when using firefox and other browsers which are not supported. # This is shown when using firefox and other browsers which are not supported.

View File

@ -102,6 +102,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -304,6 +307,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mover moveMap: Mover
@ -1389,3 +1405,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -292,6 +295,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Liiku moveMap: Liiku
@ -1324,3 +1340,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Mods Actifs title: Mods Actifs
warningPuzzleDLC: Jouer au DLC Puzzle n'est pas possible avec des mods. warningPuzzleDLC: Jouer au DLC Puzzle n'est pas possible avec des mods.
Désactivez-les pour jouer au DLC. Désactivez-les pour jouer au DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -300,6 +303,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Déplacer moveMap: Déplacer
@ -1404,3 +1420,5 @@ mods:
copiant le fichier du mod depuis ou vers le dossier des mods. copiant le fichier du mod depuis ou vers le dossier des mods.
Cependant, activer ou désactiver un mod est prévu pour une mise à Cependant, activer ou désactiver un mod est prévu pour une mise à
jour future ! jour future !
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -94,6 +94,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: אישור ok: אישור
@ -284,6 +287,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: הזזה moveMap: הזזה
@ -1266,3 +1282,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -97,6 +97,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -292,6 +295,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Kretanje moveMap: Kretanje
@ -1316,3 +1332,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -96,6 +96,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -295,6 +298,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mozgatás moveMap: Mozgatás
@ -1352,3 +1368,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -95,6 +95,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -296,6 +299,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Geser moveMap: Geser
@ -1397,3 +1413,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -100,6 +100,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -305,6 +308,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Sposta moveMap: Sposta
@ -1384,3 +1400,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -63,7 +63,7 @@ demoBanners:
untilEndOfDemo: デモ終了まで untilEndOfDemo: デモ終了まで
playtimeDisclaimerDownload: フルバージョンでセーブゲームを続けることができます! playtimeDisclaimerDownload: フルバージョンでセーブゲームを続けることができます!
セーブゲームをダウンロードするには、<strong>こちら</strong>をクリックしてください。 セーブゲームをダウンロードするには、<strong>こちら</strong>をクリックしてください。
titleV2: "今すぐフルバージョンをプレイしてください。" titleV2: 今すぐフルバージョンをプレイしてください。
mainMenu: mainMenu:
play: プレイ play: プレイ
continue: 続きから continue: 続きから
@ -89,6 +89,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -268,6 +271,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: マップ移動 moveMap: マップ移動
@ -376,11 +392,9 @@ ingame:
切断機はそれの向きに関わらず、<strong>縦の線</strong>で切断します。" 切断機はそれの向きに関わらず、<strong>縦の線</strong>で切断します。"
2_2_place_trash: 切断機は<strong>詰まる</strong>場合があります!<br><br> 2_2_place_trash: 切断機は<strong>詰まる</strong>場合があります!<br><br>
<strong>ゴミ箱</strong>を利用して、不必要な部品を廃棄できます。 <strong>ゴミ箱</strong>を利用して、不必要な部品を廃棄できます。
2_3_more_cutters: 2_3_more_cutters: "いいですね! <strong>更に2つ以上の切断機</strong>を設置して処理をスピードアップさせましょう!<br>\
"いいですね! <strong>更に2つ以上の切断機</strong>を設置して処理をスピードアップさせましょう!<br>\
<br> 追記: <strong>0から9 のホットキー</strong>を使用すると素早く部品にアクセスできます。" <br> 追記: <strong>0から9 のホットキー</strong>を使用すると素早く部品にアクセスできます。"
3_1_rectangles: 3_1_rectangles: "それでは四角形を抽出しましょう! <strong>4つの抽出機を作成</strong>してそれをハブに接続します。<br><\
"それでは四角形を抽出しましょう! <strong>4つの抽出機を作成</strong>してそれをハブに接続します。<br><\
br> 追記: <strong>SHIFT</strong>を押しながらベルトを引くと ベルトプランナーが有効になります!" br> 追記: <strong>SHIFT</strong>を押しながらベルトを引くと ベルトプランナーが有効になります!"
21_1_place_quad_painter: <strong>四色着色機</strong>を設置して、 21_1_place_quad_painter: <strong>四色着色機</strong>を設置して、
<strong>円</strong>、<strong>白</strong>そして <strong>円</strong>、<strong>白</strong>そして
@ -666,16 +680,14 @@ buildings:
storyRewards: storyRewards:
reward_cutter_and_trash: reward_cutter_and_trash:
title: 形の切断 title: 形の切断
desc: desc: <strong>切断機</strong>が利用可能になりました。これは入力された形を、<strong>向きを考慮せず上下の直線で</strong>半分に切断します! <br><br>利用しない側の出力に注意しましょう、破棄しなければ<strong>詰まって停止してしまいます。</strong>
<strong>切断機</strong>が利用可能になりました。これは入力された形を、<strong>向きを考慮せず上下の直線で</strong>半分に切断します! <br><br>利用しない側の出力に注意しましょう、破棄しなければ<strong>詰まって停止してしまいます。</strong>
- このために<strong>ゴミ箱</strong>も用意しました。入力アイテムをすべて破棄できます! - このために<strong>ゴミ箱</strong>も用意しました。入力アイテムをすべて破棄できます!
reward_rotater: reward_rotater:
title: 回転 title: 回転
desc: <strong>回転機</strong>が利用可能になりました 形を時計回り方向に90度回転させます。 desc: <strong>回転機</strong>が利用可能になりました 形を時計回り方向に90度回転させます。
reward_painter: reward_painter:
title: 着色 title: 着色
desc: desc: "<strong>着色機</strong>が利用可能になりました。(今まで形状でやってきた方法で)色を抽出し、形状と合成することで着色します! <\
"<strong>着色機</strong>が利用可能になりました。(今まで形状でやってきた方法で)色を抽出し、形状と合成することで着色します! <\
br><br>追伸: もし色覚特性をお持ちでしたら、 設定に<strong>色覚特性モード</strong>があります!" br><br>追伸: もし色覚特性をお持ちでしたら、 設定に<strong>色覚特性モード</strong>があります!"
reward_mixer: reward_mixer:
title: 混色 title: 混色
@ -694,8 +706,7 @@ storyRewards:
desc: <strong>回転機</strong>のバリエーションが利用可能になりました。反時計回りの回転ができるようになります! 回転機を選択し、<strong>'T'キーを押すことで方向の切り替えができます。</strong> desc: <strong>回転機</strong>のバリエーションが利用可能になりました。反時計回りの回転ができるようになります! 回転機を選択し、<strong>'T'キーを押すことで方向の切り替えができます。</strong>
reward_miner_chainable: reward_miner_chainable:
title: 連鎖抽出機 title: 連鎖抽出機
desc: desc: "<strong>連鎖抽出機</strong>が利用可能になりました! 他の抽出機に<strong>出力を渡す</strong>ことができるので、
"<strong>連鎖抽出機</strong>が利用可能になりました! 他の抽出機に<strong>出力を渡す</strong>ことができるので、
資源の抽出がより効率的になります!<br><br> 補足: ツールバーの 旧い抽出機が置き換えられました!" 資源の抽出がより効率的になります!<br><br> 補足: ツールバーの 旧い抽出機が置き換えられました!"
reward_underground_belt_tier_2: reward_underground_belt_tier_2:
title: トンネル レベルII title: トンネル レベルII
@ -720,8 +731,7 @@ storyRewards:
通常の着色機と同様に機能しますが、ひとつの色の消費で<strong>一度に2つの形</strong>を着色処理できます! 通常の着色機と同様に機能しますが、ひとつの色の消費で<strong>一度に2つの形</strong>を着色処理できます!
reward_storage: reward_storage:
title: ストレージ title: ストレージ
desc: desc: <strong>ストレージ</strong>が利用可能になりました。 - 容量上限までアイテムを格納できます!<br><br>
<strong>ストレージ</strong>が利用可能になりました。 - 容量上限までアイテムを格納できます!<br><br>
左側の出力を優先するため、<strong>オーバーフローゲート</strong>としても使用できます! 左側の出力を優先するため、<strong>オーバーフローゲート</strong>としても使用できます!
reward_blueprints: reward_blueprints:
title: ブループリント title: ブループリント
@ -740,8 +750,7 @@ storyRewards:
設定で<strong>ヒントを有効にする</strong>と、 ワイヤのチュートリアルが有効になります。" 設定で<strong>ヒントを有効にする</strong>と、 ワイヤのチュートリアルが有効になります。"
reward_filter: reward_filter:
title: アイテムフィルタ title: アイテムフィルタ
desc: desc: <strong>アイテムフィルタ</strong>が利用可能になりました! ワイヤレイヤの信号と一致するかどうかに応じて、アイテムを上側または右側の出力に分離します。<br><br>
<strong>アイテムフィルタ</strong>が利用可能になりました! ワイヤレイヤの信号と一致するかどうかに応じて、アイテムを上側または右側の出力に分離します。<br><br>
また、真偽値(0/1)信号を入力すれば全てのアイテムの通過・非通過を制御できます。 また、真偽値(0/1)信号を入力すれば全てのアイテムの通過・非通過を制御できます。
reward_display: reward_display:
title: ディスプレイ title: ディスプレイ
@ -750,13 +759,11 @@ storyRewards:
ベルトリーダーとストレージが最後に通過したアイテムを出力していることに気づきましたか? それをディスプレイに表示してみてください!" ベルトリーダーとストレージが最後に通過したアイテムを出力していることに気づきましたか? それをディスプレイに表示してみてください!"
reward_constant_signal: reward_constant_signal:
title: 定数信号 title: 定数信号
desc: desc: <strong>定数信号</strong>がワイヤレイヤで利用可能になりました! これは例えば<strong>アイテムフィルタ</strong>に接続すると便利です。<br><br>
<strong>定数信号</strong>がワイヤレイヤで利用可能になりました! これは例えば<strong>アイテムフィルタ</strong>に接続すると便利です。<br><br>
発信できる信号は<strong>形状</strong>、<strong>色</strong>、<strong>真偽値</strong>(1か0)です。 発信できる信号は<strong>形状</strong>、<strong>色</strong>、<strong>真偽値</strong>(1か0)です。
reward_logic_gates: reward_logic_gates:
title: 論理ゲート title: 論理ゲート
desc: desc: <strong>論理ゲート</strong>が利用可能になりました! 興奮する必要はありませんが、これは非常に優秀なんですよ!<br><br>
<strong>論理ゲート</strong>が利用可能になりました! 興奮する必要はありませんが、これは非常に優秀なんですよ!<br><br>
これでAND, OR, XOR, NOTを計算できます。<br><br> これでAND, OR, XOR, NOTを計算できます。<br><br>
ボーナスとして<strong>トランジスタ</strong>も追加しました! ボーナスとして<strong>トランジスタ</strong>も追加しました!
reward_virtual_processing: reward_virtual_processing:
@ -768,8 +775,7 @@ storyRewards:
- ワイヤでイカしたものを作る。<br><br> - 今までのように工場を建設する。<br><br> いずれにしても、楽しんでください! - ワイヤでイカしたものを作る。<br><br> - 今までのように工場を建設する。<br><br> いずれにしても、楽しんでください!
no_reward: no_reward:
title: 次のレベル title: 次のレベル
desc: desc: "このレベルには報酬はありません。次はきっとありますよ! <br><br> 補足: すでに作った生産ラインは削除しないようにしましょう。 -
"このレベルには報酬はありません。次はきっとありますよ! <br><br> 補足: すでに作った生産ラインは削除しないようにしましょう。 -
生産された形は<strong>すべて</strong>、後で<strong>アップグレードの解除</strong>に必要になります!" 生産された形は<strong>すべて</strong>、後で<strong>アップグレードの解除</strong>に必要になります!"
no_reward_freeplay: no_reward_freeplay:
title: 次のレベル title: 次のレベル
@ -895,8 +901,7 @@ settings:
description: 配置用のグリッドを無効にして、パフォーマンスを向上させます。 これにより、ゲームの見た目もすっきりします。 description: 配置用のグリッドを無効にして、パフォーマンスを向上させます。 これにより、ゲームの見た目もすっきりします。
clearCursorOnDeleteWhilePlacing: clearCursorOnDeleteWhilePlacing:
title: 右クリックで配置をキャンセル title: 右クリックで配置をキャンセル
description: description: デフォルトで有効です。建物を設置しているときに右クリックすると、選択中の建物がキャンセルされます。
デフォルトで有効です。建物を設置しているときに右クリックすると、選択中の建物がキャンセルされます。
無効にすると、建物の設置中に右クリックで建物を削除できます。 無効にすると、建物の設置中に右クリックで建物を削除できます。
lowQualityTextures: lowQualityTextures:
title: 低品質のテクスチャ(視認性低下) title: 低品質のテクスチャ(視認性低下)
@ -1190,3 +1195,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -72,8 +72,7 @@ mainMenu:
openSourceHint: 이 게임은 오픈 소스입니다! openSourceHint: 이 게임은 오픈 소스입니다!
discordLink: 공식 디스코드 서버 discordLink: 공식 디스코드 서버
helpTranslate: 번역을 도와주세요! helpTranslate: 번역을 도와주세요!
browserWarning: browserWarning: 이 게임은 현재 브라우저에서 느리게 작동하는 것으로 알려져 있습니다! 더 좋은 성능을 위해 정식 버전을 구매하거나
이 게임은 현재 브라우저에서 느리게 작동하는 것으로 알려져 있습니다! 더 좋은 성능을 위해 정식 버전을 구매하거나
Google Chrome 브라우저를 다운로드하세요. Google Chrome 브라우저를 다운로드하세요.
savegameLevel: 레벨 <x> savegameLevel: 레벨 <x>
savegameLevelUnknown: 미확인 레벨 savegameLevelUnknown: 미확인 레벨
@ -90,6 +89,9 @@ mainMenu:
mods: mods:
title: Active Mods title: Active Mods
warningPuzzleDLC: 퍼즐 DLC는 모드와 호환되지 않습니다. DLC 플레이 전 모든 모드를 비활성화 해주세요. warningPuzzleDLC: 퍼즐 DLC는 모드와 호환되지 않습니다. DLC 플레이 전 모든 모드를 비활성화 해주세요.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: 확인 ok: 확인
@ -145,8 +147,7 @@ dialogs:
desc: 지난번 플레이 이후 변경 사항은 다음과 같습니다. desc: 지난번 플레이 이후 변경 사항은 다음과 같습니다.
upgradesIntroduction: upgradesIntroduction:
title: 업그레이드 하기 title: 업그레이드 하기
desc: desc: <strong>기존의 공장을 허물지 마세요!</strong> 여러분이 그동안 만들어 수집한 모든 도형은 업그레이드에 사용됩니다.
<strong>기존의 공장을 허물지 마세요!</strong> 여러분이 그동안 만들어 수집한 모든 도형은 업그레이드에 사용됩니다.
업그레이드 버튼은 화면의 오른쪽 위에 있습니다. 업그레이드 버튼은 화면의 오른쪽 위에 있습니다.
massDeleteConfirm: massDeleteConfirm:
title: 삭제 확인 title: 삭제 확인
@ -159,8 +160,7 @@ dialogs:
desc: 12 레벨부터 청사진 기능이 해금됩니다! desc: 12 레벨부터 청사진 기능이 해금됩니다!
keybindingsIntroduction: keybindingsIntroduction:
title: 유용한 조작법 title: 유용한 조작법
desc: desc: "이 게임에는 거대한 공장을 수월하게 세우기 위한 많은 조작법이 있습니다. 아래는 그 대표적인 것이며, 자세한 조작법은
"이 게임에는 거대한 공장을 수월하게 세우기 위한 많은 조작법이 있습니다. 아래는 그 대표적인 것이며, 자세한 조작법은
<strong>조작법 설정</strong>을 참고해주세요!<br><br> <code <strong>조작법 설정</strong>을 참고해주세요!<br><br> <code
class='keybinding'>CTRL</code> + 드래그: 영역을 선택합니다.<br> <code class='keybinding'>CTRL</code> + 드래그: 영역을 선택합니다.<br> <code
class='keybinding'>SHIFT</code>: 누르는 동안 같은 건물을 여러개 배치할 수 있습니다.<br> class='keybinding'>SHIFT</code>: 누르는 동안 같은 건물을 여러개 배치할 수 있습니다.<br>
@ -174,8 +174,7 @@ dialogs:
desc: 체험판 버전에서는 마커를 2개 까지만 배치할 수 있습니다. 정식 버전을 구입하면 마커를 무제한으로 배치할 수 있습니다! desc: 체험판 버전에서는 마커를 2개 까지만 배치할 수 있습니다. 정식 버전을 구입하면 마커를 무제한으로 배치할 수 있습니다!
exportScreenshotWarning: exportScreenshotWarning:
title: 스크린샷 내보내기 title: 스크린샷 내보내기
desc: desc: 당신의 공장을 스크린샷으로 내보내려 합니다. 매우 거대한 크기의 공장이라면 그 처리 시간이 상당히 오래 걸릴 것이며, 최악의 경우
당신의 공장을 스크린샷으로 내보내려 합니다. 매우 거대한 크기의 공장이라면 그 처리 시간이 상당히 오래 걸릴 것이며, 최악의 경우
게임이 중단될 수 있습니다! 게임이 중단될 수 있습니다!
massCutInsufficientConfirm: massCutInsufficientConfirm:
title: 자르기 확인 title: 자르기 확인
@ -201,8 +200,7 @@ dialogs:
submitPuzzle: submitPuzzle:
title: 퍼즐 보내기 title: 퍼즐 보내기
descName: "퍼즐에 이름을 지어 주세요:" descName: "퍼즐에 이름을 지어 주세요:"
descIcon: descIcon: "퍼즐의 아이콘으로 보여지게 될 짧은 단어를 지정해 주세요. (<link>이곳</link>에서 생성하시거나, 아래 랜덤한 도형
"퍼즐의 아이콘으로 보여지게 될 짧은 단어를 지정해 주세요. (<link>이곳</link>에서 생성하시거나, 아래 랜덤한 도형
중 하나를 선택하세요):" 중 하나를 선택하세요):"
placeholderName: 퍼즐 제목 placeholderName: 퍼즐 제목
puzzleResizeBadBuildings: puzzleResizeBadBuildings:
@ -228,8 +226,7 @@ dialogs:
desc: 오프라인 모드임으로 퍼즐을 저장하거나 업로드할 수 없습니다. 그래도 계속하시겠습니까? desc: 오프라인 모드임으로 퍼즐을 저장하거나 업로드할 수 없습니다. 그래도 계속하시겠습니까?
puzzlePlayRegularRecommendation: puzzlePlayRegularRecommendation:
title: 권장 사항 title: 권장 사항
desc: desc: 퍼즐 DLC 플레이시 소개되지 않은 요소를 접하시게 될 수 있으므로, 적어도 일반 게임을 12레벨까지 플레이하시는것을
퍼즐 DLC 플레이시 소개되지 않은 요소를 접하시게 될 수 있으므로, 적어도 일반 게임을 12레벨까지 플레이하시는것을
<strong>강력히</strong> 권장드립니다. 그래도 계속하시겠습니까? <strong>강력히</strong> 권장드립니다. 그래도 계속하시겠습니까?
puzzleShare: puzzleShare:
title: 짧은 키 복사됨 title: 짧은 키 복사됨
@ -270,6 +267,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: 이동 moveMap: 이동
@ -347,31 +357,25 @@ ingame:
waypoints: waypoints:
waypoints: 마커 waypoints: 마커
hub: 허브 hub: 허브
description: description: 마커를 좌클릭하여 그곳으로 이동하고, 우클릭으로 삭제할 수 있습니다.<br><br>마커를 배치하기 위해
마커를 좌클릭하여 그곳으로 이동하고, 우클릭으로 삭제할 수 있습니다.<br><br>마커를 배치하기 위해
<keybinding> 키로 지금 있는 위치에, 또는 <strong>우클릭</strong>하여 원하는 위치에 배치할 수 <keybinding> 키로 지금 있는 위치에, 또는 <strong>우클릭</strong>하여 원하는 위치에 배치할 수
있습니다. 있습니다.
creationSuccessNotification: 마커가 성공적으로 생성되었습니다. creationSuccessNotification: 마커가 성공적으로 생성되었습니다.
interactiveTutorial: interactiveTutorial:
title: 튜토리얼 title: 튜토리얼
hints: hints:
1_1_extractor: 1_1_extractor: <strong>원형 도형</strong>을 추출하기 위해 그 위에 <strong>추출기</strong>를 선택한 뒤
<strong>원형 도형</strong>을 추출하기 위해 그 위에 <strong>추출기</strong>를 선택한 뒤
배치하여 추출하세요! 배치하여 추출하세요!
1_2_conveyor: 1_2_conveyor: "이제 <strong>컨베이어 벨트</strong>를 추출기와 허브를 서로 연결하세요!<br><br> 팁: 벨트를
"이제 <strong>컨베이어 벨트</strong>를 추출기와 허브를 서로 연결하세요!<br><br> 팁: 벨트를
마우스로 <strong>클릭한 뒤 드래그</strong>하세요!" 마우스로 <strong>클릭한 뒤 드래그</strong>하세요!"
1_3_expand: 1_3_expand: "이 게임은 방치형 게임이 <strong>아닙니다</strong>! 더 많은 추출기와 벨트를 만들어 지정된 목표를 빨리
"이 게임은 방치형 게임이 <strong>아닙니다</strong>! 더 많은 추출기와 벨트를 만들어 지정된 목표를 빨리
달성하세요.<br><br> 팁: <strong>SHIFT</strong> 키를 누른 상태에서는 빠르게 배치할 수 달성하세요.<br><br> 팁: <strong>SHIFT</strong> 키를 누른 상태에서는 빠르게 배치할 수
있고, <strong>R</strong> 키를 눌러 회전할 수 있습니다." 있고, <strong>R</strong> 키를 눌러 회전할 수 있습니다."
2_1_place_cutter: 2_1_place_cutter: "이제 <strong>절단기</strong>를 배치해 원형 도형을 반으로 잘라보세요!<br><br> 참고:
"이제 <strong>절단기</strong>를 배치해 원형 도형을 반으로 잘라보세요!<br><br> 참고:
절단기는 놓는 방향에 상관없이 항상 <strong>위에서 아래로만</strong> 자릅니다." 절단기는 놓는 방향에 상관없이 항상 <strong>위에서 아래로만</strong> 자릅니다."
2_2_place_trash: 절단기가 <strong>막히거나 멈출 수 있습니다</strong>!<br><br> 2_2_place_trash: 절단기가 <strong>막히거나 멈출 수 있습니다</strong>!<br><br>
<strong>휴지통</strong>을 사용하여 현재 필요없는 쓰레기 도형 (!)을 제거하세요. <strong>휴지통</strong>을 사용하여 현재 필요없는 쓰레기 도형 (!)을 제거하세요.
2_3_more_cutters: 2_3_more_cutters: "잘하셨습니다! 느린 처리 속도를 보완하기 위해 <strong>절단기를 두 개</strong> 이상
"잘하셨습니다! 느린 처리 속도를 보완하기 위해 <strong>절단기를 두 개</strong> 이상
배치해보세요!<br><br> 추신: <strong>상단 숫자 단축키 (0~9)</strong>를 사용하여 건물을 배치해보세요!<br><br> 추신: <strong>상단 숫자 단축키 (0~9)</strong>를 사용하여 건물을
빠르게 선택할 수 있습니다!" 빠르게 선택할 수 있습니다!"
3_1_rectangles: "이제 사각형 도형을 추출해 볼까요! <strong>추출기 네 개를 배치</strong>하고 허브와 3_1_rectangles: "이제 사각형 도형을 추출해 볼까요! <strong>추출기 네 개를 배치</strong>하고 허브와
@ -379,12 +383,10 @@ ingame:
누른 채 드래그하세요!" 누른 채 드래그하세요!"
21_1_place_quad_painter: <strong>4단 색칠기</strong>를 배치하여 <strong>흰색</strong>과 21_1_place_quad_painter: <strong>4단 색칠기</strong>를 배치하여 <strong>흰색</strong>과
<strong>빨간색</strong>이 칠해진 <strong>원형 도형</strong>을 만들어보세요! <strong>빨간색</strong>이 칠해진 <strong>원형 도형</strong>을 만들어보세요!
21_2_switch_to_wires: 21_2_switch_to_wires: <strong>E 키</strong>를 눌러 전선 레이어 로 전환하세요!<br><br> 그 후 색칠기의
<strong>E 키</strong>를 눌러 전선 레이어 로 전환하세요!<br><br> 그 후 색칠기의
<strong>네 입력 부분</strong>을 모두 케이블로 연결하세요! <strong>네 입력 부분</strong>을 모두 케이블로 연결하세요!
21_3_place_button: 훌륭해요! 이제 <strong>스위치</strong>를 배치하고 전선으로 연결하세요! 21_3_place_button: 훌륭해요! 이제 <strong>스위치</strong>를 배치하고 전선으로 연결하세요!
21_4_press_button: 21_4_press_button: "스위치를 눌러서 색칠기에 <strong>참 신호를 보내</strong> 활성화해보세요.<br><br> 추신:
"스위치를 눌러서 색칠기에 <strong>참 신호를 보내</strong> 활성화해보세요.<br><br> 추신:
모든 입력을 연결할 필요는 없습니다! 두개만 연결해 보세요." 모든 입력을 연결할 필요는 없습니다! 두개만 연결해 보세요."
1_2_hold_and_drag: 잡고 드래그Przytrzymaj i przeciągnij 1_2_hold_and_drag: 잡고 드래그Przytrzymaj i przeciągnij
colors: colors:
@ -514,13 +516,11 @@ buildings:
cutter: cutter:
default: default:
name: 절단기 name: 절단기
description: description: 도형을 수직으로 잘라 두 가지 도형으로 나눕니다. <strong>한쪽만 사용할 경우라면 다른 부분을 파괴하지 않을 경우
도형을 수직으로 잘라 두 가지 도형으로 나눕니다. <strong>한쪽만 사용할 경우라면 다른 부분을 파괴하지 않을 경우
절단기가 막혀 멈추게 됩니다!</strong> 절단기가 막혀 멈추게 됩니다!</strong>
quad: quad:
name: 4단 절단기 name: 4단 절단기
description: description: 도형을 즉시 네 개로 자릅니다. <strong>한쪽만 사용할 경우라면 다른 부분을 파괴하지 않을 경우 절단기가 막혀
도형을 즉시 네 개로 자릅니다. <strong>한쪽만 사용할 경우라면 다른 부분을 파괴하지 않을 경우 절단기가 막혀
멈추게 됩니다!</strong> 멈추게 됩니다!</strong>
rotater: rotater:
default: default:
@ -535,8 +535,7 @@ buildings:
stacker: stacker:
default: default:
name: 결합기 name: 결합기
description: description: 도형을 서로 결합하고 쌓습니다. 서로 결합할 수 있다면 두 도형을 붙여 하나로 만들고, 그렇지 않으면 오른쪽 도형이 왼쪽
도형을 서로 결합하고 쌓습니다. 서로 결합할 수 있다면 두 도형을 붙여 하나로 만들고, 그렇지 않으면 오른쪽 도형이 왼쪽
도형 위에 쌓이게 됩니다. 도형 위에 쌓이게 됩니다.
mixer: mixer:
default: default:
@ -551,8 +550,7 @@ buildings:
description: 색소를 이용해 도형을 색칠합니다. 위쪽에서 받는 색소로 왼쪽에서 받는 도형 전체를 색칠합니다. description: 색소를 이용해 도형을 색칠합니다. 위쪽에서 받는 색소로 왼쪽에서 받는 도형 전체를 색칠합니다.
quad: quad:
name: 4단 색칠기 name: 4단 색칠기
description: description: 도형의 각 사분면에 개별적으로 색상을 칠할 수 있습니다. 전선 레이어를 통해 <strong>참 신호</strong>가
도형의 각 사분면에 개별적으로 색상을 칠할 수 있습니다. 전선 레이어를 통해 <strong>참 신호</strong>가
있는 슬롯만 칠해집니다! 있는 슬롯만 칠해집니다!
mirrored: mirrored:
name: 색칠기 name: 색칠기
@ -599,8 +597,7 @@ buildings:
lever: lever:
default: default:
name: 스위치 name: 스위치
description: description: 전선 레이어에서 불 값 (1 또는 0)을 방출하도록 전환할 수 있으며, 그 후 아이템 선별같은 구성 요소를 제어하는 데
전선 레이어에서 불 값 (1 또는 0)을 방출하도록 전환할 수 있으며, 그 후 아이템 선별같은 구성 요소를 제어하는 데
사용될 수 있습니다. 사용될 수 있습니다.
logic_gate: logic_gate:
default: default:
@ -611,8 +608,7 @@ buildings:
description: 입력이 거짓일 경우 불 값 "1"을 내보냅니다 (참은 도형, 색상, 불 값 "1"을 의미합니다). description: 입력이 거짓일 경우 불 값 "1"을 내보냅니다 (참은 도형, 색상, 불 값 "1"을 의미합니다).
xor: xor:
name: XOR 회로 name: XOR 회로
description: description: 입력 중 하나만 참이고 둘 다 같지 않을 경우 불 값 "1"을 내보냅니다 (참은 도형, 색상, 불 값 "1"을
입력 중 하나만 참이고 둘 다 같지 않을 경우 불 값 "1"을 내보냅니다 (참은 도형, 색상, 불 값 "1"을
의미합니다). 의미합니다).
or: or:
name: OR 회로 name: OR 회로
@ -679,8 +675,7 @@ buildings:
storyRewards: storyRewards:
reward_cutter_and_trash: reward_cutter_and_trash:
title: 절단기 title: 절단기
desc: desc: <strong>절단기</strong>가 잠금 해제되었습니다! 절단기는 들어오는 도형이 어떤 도형을 하고 있던 수직으로 잘라
<strong>절단기</strong>가 잠금 해제되었습니다! 절단기는 들어오는 도형이 어떤 도형을 하고 있던 수직으로 잘라
<strong>반으로 나눕니다</strong>!<br><br> 쓰지 않는 도형은 쓰레기로 처리하세요, 그렇지 않으면 <strong>반으로 나눕니다</strong>!<br><br> 쓰지 않는 도형은 쓰레기로 처리하세요, 그렇지 않으면
<strong>작동을 멈출 것입니다</strong>! 이러한 목적을 위해 <strong>휴지통</strong>도 함께 <strong>작동을 멈출 것입니다</strong>! 이러한 목적을 위해 <strong>휴지통</strong>도 함께
지급되었습니다. 휴지통에 들어간 것은 모두 파괴됩니다! 지급되었습니다. 휴지통에 들어간 것은 모두 파괴됩니다!
@ -689,8 +684,7 @@ storyRewards:
desc: <strong>회전기</strong>가 잠금 해제되었습니다! 회전기는 들어오는 도형을 시계 방향으로 90도 회전시켜줍니다. desc: <strong>회전기</strong>가 잠금 해제되었습니다! 회전기는 들어오는 도형을 시계 방향으로 90도 회전시켜줍니다.
reward_painter: reward_painter:
title: 색칠기 title: 색칠기
desc: desc: "<strong>색칠기</strong>가 잠금 해제되었습니다! 도형과 마찬가지로 색소를 추출하고 색칠기에 넣거 도형과 결합하여 색칠된
"<strong>색칠기</strong>가 잠금 해제되었습니다! 도형과 마찬가지로 색소를 추출하고 색칠기에 넣거 도형과 결합하여 색칠된
도형을 만들도록 하세요!<br><br>추신: 만약 당신이 색맹이라면, 설정에서 <strong>색맹 모드</strong>를 도형을 만들도록 하세요!<br><br>추신: 만약 당신이 색맹이라면, 설정에서 <strong>색맹 모드</strong>를
활성화하세요!" 활성화하세요!"
reward_mixer: reward_mixer:
@ -699,28 +693,24 @@ storyRewards:
색소</strong>를 얻을 수 있습니다! 색소</strong>를 얻을 수 있습니다!
reward_stacker: reward_stacker:
title: 결합기 title: 결합기
desc: desc: <strong>결합기</strong>가 잠금 해제되었습니다! 이제 결합기를 통해 여러 도형을 붙이고 결합할 수 있습니다! 들어오는 두
<strong>결합기</strong>가 잠금 해제되었습니다! 이제 결합기를 통해 여러 도형을 붙이고 결합할 수 있습니다! 들어오는 두
도형의 도형이 서로 나란히 붙일 수 있다면, 하나의 도형으로 <strong>결합</strong>됩니다. 만약 서로 도형의 도형이 서로 나란히 붙일 수 있다면, 하나의 도형으로 <strong>결합</strong>됩니다. 만약 서로
겹쳐진다면, 오른쪽 도형이 왼쪽 도형의 <strong>위에 쌓이게</strong> 됩니다! 겹쳐진다면, 오른쪽 도형이 왼쪽 도형의 <strong>위에 쌓이게</strong> 됩니다!
reward_splitter: reward_splitter:
title: 압축형 분배기 title: 압축형 분배기
desc: desc: <strong>밸런서</strong>의 새로운 형태인 <strong>분배기</strong>가 잠금 해제되었습니다! 이제 벨트 한 줄을
<strong>밸런서</strong>의 새로운 형태인 <strong>분배기</strong>가 잠금 해제되었습니다! 이제 벨트 한 줄을
즉시 두 줄로 분배합니다! 즉시 두 줄로 분배합니다!
reward_tunnel: reward_tunnel:
title: 터널 title: 터널
desc: <strong>터널</strong>이 잠금 해제되었습니다! 이제 벨트와 건물 아래로 공간을 만들어내 옮길 수 있습니다! desc: <strong>터널</strong>이 잠금 해제되었습니다! 이제 벨트와 건물 아래로 공간을 만들어내 옮길 수 있습니다!
reward_rotater_ccw: reward_rotater_ccw:
title: 반시계 방향 회전기 title: 반시계 방향 회전기
desc: desc: <strong>반시계 방향 회전기</strong>가 잠금 해제되었습니다! 반시계 방향 회전기는 회전기의 다른 형태로, 이름처럼
<strong>반시계 방향 회전기</strong>가 잠금 해제되었습니다! 반시계 방향 회전기는 회전기의 다른 형태로, 이름처럼
들어오는 도형을 반시계 방향으로 90도만큼 회전시킵니다! 제작하려면 회전기를 선택한 후 <strong>'T' 키를 눌러 들어오는 도형을 반시계 방향으로 90도만큼 회전시킵니다! 제작하려면 회전기를 선택한 후 <strong>'T' 키를 눌러
다른 형태로 전환</strong>하세요! 다른 형태로 전환</strong>하세요!
reward_miner_chainable: reward_miner_chainable:
title: 연쇄 추출기 title: 연쇄 추출기
desc: desc: "<strong>연쇄 추출기</strong>가 잠금 해제되었습니다! 자원을 보다 더욱 효율적으로 추출할 수 있도록 <strong>앞에
"<strong>연쇄 추출기</strong>가 잠금 해제되었습니다! 자원을 보다 더욱 효율적으로 추출할 수 있도록 <strong>앞에
있는 추출기로 자원을 보낼 수 있습니다</strong>!<br><br> 추신: 이제 툴바에 있는 기존 추출기는 연쇄 있는 추출기로 자원을 보낼 수 있습니다</strong>!<br><br> 추신: 이제 툴바에 있는 기존 추출기는 연쇄
추출기로 대체되었습니다!" 추출기로 대체되었습니다!"
reward_underground_belt_tier_2: reward_underground_belt_tier_2:
@ -729,18 +719,15 @@ storyRewards:
거리</strong>를 운송할 수 있고 기존 터널과 겹쳐지지 않고도 자원을 보낼 수 있습니다! 거리</strong>를 운송할 수 있고 기존 터널과 겹쳐지지 않고도 자원을 보낼 수 있습니다!
reward_cutter_quad: reward_cutter_quad:
title: 4단 절단기 title: 4단 절단기
desc: desc: 새로운 종류의 <strong>절단기</strong>가 잠금 해제되었습니다! 4단 절단기는 도형을 두 조각이 아닌 <strong>네
새로운 종류의 <strong>절단기</strong>가 잠금 해제되었습니다! 4단 절단기는 도형을 두 조각이 아닌 <strong>네
조각</strong>으로 자를 수 있습니다! 조각</strong>으로 자를 수 있습니다!
reward_painter_double: reward_painter_double:
title: 2단 색칠기 title: 2단 색칠기
desc: desc: 새로운 종류의 <strong>절단기</strong>가 잠금 해제되었습니다! 일반적인 색칠기와 거의 동일하지만, 하나의 색소를 사용하여
새로운 종류의 <strong>절단기</strong>가 잠금 해제되었습니다! 일반적인 색칠기와 거의 동일하지만, 하나의 색소를 사용하여
<strong>동시에 두 개의 도형을 색칠</strong>할 수 있습니다! <strong>동시에 두 개의 도형을 색칠</strong>할 수 있습니다!
reward_storage: reward_storage:
title: 저장고 title: 저장고
desc: desc: <strong>저장고</strong>가 잠금 해제되었습니다! 저장고는 최대 용량까지 도형을 저장할 수 있습니다!<br><br> 왼쪽
<strong>저장고</strong>가 잠금 해제되었습니다! 저장고는 최대 용량까지 도형을 저장할 수 있습니다!<br><br> 왼쪽
출력이 우선되므로 <strong>오버플로 회로</strong>로도 활용될 수 있습니다! 출력이 우선되므로 <strong>오버플로 회로</strong>로도 활용될 수 있습니다!
reward_freeplay: reward_freeplay:
title: 자유플레이 title: 자유플레이
@ -750,38 +737,32 @@ storyRewards:
레이어를 통해 내보내므로 이를 분석하는 구조를 기반으로 하여 공장을 자동으로 구성하기만 하면 됩니다. 레이어를 통해 내보내므로 이를 분석하는 구조를 기반으로 하여 공장을 자동으로 구성하기만 하면 됩니다.
reward_blueprints: reward_blueprints:
title: 청사진 title: 청사진
desc: desc: 이제 공장의 일부를 <strong>복사하고 붙여넣는 기능</strong>을 사용할 수 있습니다! 영역을 선택 (CTRL 키를 누른 채
이제 공장의 일부를 <strong>복사하고 붙여넣는 기능</strong>을 사용할 수 있습니다! 영역을 선택 (CTRL 키를 누른 채
마우스로 드래그)한 뒤 'C' 키를 눌러 복사할 수 있습니다.<br><br>하지만 <strong>공짜는 마우스로 드래그)한 뒤 'C' 키를 눌러 복사할 수 있습니다.<br><br>하지만 <strong>공짜는
아닙니다</strong>, <strong>청사진 도형 도형</strong>을 허브에 저장하고 그것을 일부 사용해 붙여넣기 아닙니다</strong>, <strong>청사진 도형 도형</strong>을 허브에 저장하고 그것을 일부 사용해 붙여넣기
기능을 사용할 수 있습니다! (방금 당신이 만든 것입니다.) 기능을 사용할 수 있습니다! (방금 당신이 만든 것입니다.)
no_reward: no_reward:
title: 다음 레벨 title: 다음 레벨
desc: desc: "이번 레벨의 보상은 없네요. 대신 다음 레벨에서 줄겁니다!<br><br> 추신: 기존 공장을 파괴하지는 마세요. 후에
"이번 레벨의 보상은 없네요. 대신 다음 레벨에서 줄겁니다!<br><br> 추신: 기존 공장을 파괴하지는 마세요. 후에
<strong>업그레이드 잠금 해제</strong>되면 <strong>기존의 모든</strong> 도형이 필요합니다!" <strong>업그레이드 잠금 해제</strong>되면 <strong>기존의 모든</strong> 도형이 필요합니다!"
no_reward_freeplay: no_reward_freeplay:
title: 다음 레벨 title: 다음 레벨
desc: 축하드립니다! desc: 축하드립니다!
reward_balancer: reward_balancer:
title: 밸런서 title: 밸런서
desc: desc: <strong>밸런서</strong>가 잠금 해제되었습니다! 다목적 밸런서를 통해 여러 벨트의 아이템을 서로 <strong>다른
<strong>밸런서</strong>가 잠금 해제되었습니다! 다목적 밸런서를 통해 여러 벨트의 아이템을 서로 <strong>다른
벨트로 분할하거나 합침</strong>으로써 더욱 거대한 공장을 만들 수 있습니다! 벨트로 분할하거나 합침</strong>으로써 더욱 거대한 공장을 만들 수 있습니다!
reward_merger: reward_merger:
title: 압축형 병합기 title: 압축형 병합기
desc: desc: <strong>밸런서</strong>의 새로운 형태인 <strong>병합기</strong>가 잠금 해제되었습니다! 이제 벨트 두 줄을
<strong>밸런서</strong>의 새로운 형태인 <strong>병합기</strong>가 잠금 해제되었습니다! 이제 벨트 두 줄을
즉시 한 줄로 병합합니다! 즉시 한 줄로 병합합니다!
reward_belt_reader: reward_belt_reader:
title: 벨트 판독기 title: 벨트 판독기
desc: desc: <strong>벨트 판독기</strong>가 잠금 해제되었습니다! 이제 벨트의 처리량을 확인할 수 있습니다.<br><br>그리고,
<strong>벨트 판독기</strong>가 잠금 해제되었습니다! 이제 벨트의 처리량을 확인할 수 있습니다.<br><br>그리고,
전선이 잠금 해제될 때 까지 기다리신다면 정말 유용하게 사용할 수 있을 겁니다! 전선이 잠금 해제될 때 까지 기다리신다면 정말 유용하게 사용할 수 있을 겁니다!
reward_rotater_180: reward_rotater_180:
title: 220도 회전기 title: 220도 회전기
desc: desc: <strong>180도 회전기</strong>가 잠금 해제되었습니다! 이제 도형을 바로 180도로 회전시킬 수 있습니다. (짜잔!
<strong>180도 회전기</strong>가 잠금 해제되었습니다! 이제 도형을 바로 180도로 회전시킬 수 있습니다. (짜잔!
:D) :D)
reward_display: reward_display:
title: 디스플레이 title: 디스플레이
@ -789,37 +770,32 @@ storyRewards:
있습니다.<br><br> 추신: 벨트 판독기와 저장고가 마지막으로 읽은 아이템을 출력했나요? 디스플레이로 한번 봐보세요!" 있습니다.<br><br> 추신: 벨트 판독기와 저장고가 마지막으로 읽은 아이템을 출력했나요? 디스플레이로 한번 봐보세요!"
reward_constant_signal: reward_constant_signal:
title: 일정 신호기 title: 일정 신호기
desc: desc: 전선 레이어에서 구축할 수 있는 <strong>일정 신호기</strong>가 잠금 해제되었습니다! 간단한 예시로,
전선 레이어에서 구축할 수 있는 <strong>일정 신호기</strong>가 잠금 해제되었습니다! 간단한 예시로,
<strong>아이템 선별</strong>에 연결하여 사용하는 데 유용합니다.<br><br> 일정 신호기는 <strong>아이템 선별</strong>에 연결하여 사용하는 데 유용합니다.<br><br> 일정 신호기는
<strong>도형</strong>, <strong>색상</strong>, 또는 <strong>불 값</strong> (1 <strong>도형</strong>, <strong>색상</strong>, 또는 <strong>불 값</strong> (1
또는 0)을 출력할 수 있습니다. 또는 0)을 출력할 수 있습니다.
reward_logic_gates: reward_logic_gates:
title: 논리 회로 title: 논리 회로
desc: desc: <strong>논리 회로</strong>가 잠금 해제되었습니다! 굳이 흥분할 필요는 없지만, 진짜 멋진 기술입니다!<br><br>
<strong>논리 회로</strong>가 잠금 해제되었습니다! 굳이 흥분할 필요는 없지만, 진짜 멋진 기술입니다!<br><br>
논리 회로를 통해 이제 AND, OR, XOR, NOT 논리 연산을 할 수 있습니다.<br><br> 보너스로, 논리 회로를 통해 이제 AND, OR, XOR, NOT 논리 연산을 할 수 있습니다.<br><br> 보너스로,
<strong>트랜지스터</strong>도 지급되었습니다! <strong>트랜지스터</strong>도 지급되었습니다!
reward_virtual_processing: reward_virtual_processing:
title: 가상 처리 title: 가상 처리
desc: desc: <strong>도형의 처리를 시뮬레이션</strong>할 수 있는 다양한 새로운 건물이 잠금 해제되었습니다!<br><br> 이제 전선
<strong>도형의 처리를 시뮬레이션</strong>할 수 있는 다양한 새로운 건물이 잠금 해제되었습니다!<br><br> 이제 전선
레이어에서 도형에 대한 절단기, 회전기, 결합기 등을 가상으로 시뮬레이션할 수 있습니다! 이제 게임 진행에 있어 다음 세 레이어에서 도형에 대한 절단기, 회전기, 결합기 등을 가상으로 시뮬레이션할 수 있습니다! 이제 게임 진행에 있어 다음 세
가지의 방법이 존재합니다:<br><br> - <strong>완전 자동화된 기계</strong>를 구축하고 허브에서 요구되는 가지의 방법이 존재합니다:<br><br> - <strong>완전 자동화된 기계</strong>를 구축하고 허브에서 요구되는
도형을 제작합니다. (먼저 시도해볼 것을 권합니다!).<br><br> - 전선을 통해 멋진 것들 만듭니다.<br><br> 도형을 제작합니다. (먼저 시도해볼 것을 권합니다!).<br><br> - 전선을 통해 멋진 것들 만듭니다.<br><br>
- 평소처럼 게임을 진행합니다.<br><br> 어떤 방식으로든, 재미있게 게임을 플레이해주시길 바랍니다! - 평소처럼 게임을 진행합니다.<br><br> 어떤 방식으로든, 재미있게 게임을 플레이해주시길 바랍니다!
reward_wires_painter_and_levers: reward_wires_painter_and_levers:
title: 전선과 4단 색칠기 title: 전선과 4단 색칠기
desc: desc: " 방금 <strong>전선 레이어</strong>를 활성화하셨습니다: 이것은 일반 레이어 위에 존재하는 별개의 레이어로 수많은
" 방금 <strong>전선 레이어</strong>를 활성화하셨습니다: 이것은 일반 레이어 위에 존재하는 별개의 레이어로 수많은
새로운 요소를 사용할 수 있습니다!<br><br> <strong>4단 색칠기</strong>를 활성화해 드리겠습니다 - 새로운 요소를 사용할 수 있습니다!<br><br> <strong>4단 색칠기</strong>를 활성화해 드리겠습니다 -
전선 레이어에서 색을 칠할 부분에 연결해 보세요!<br><br> 전선 레이어로 전환하시려면 전선 레이어에서 색을 칠할 부분에 연결해 보세요!<br><br> 전선 레이어로 전환하시려면
<strong>E</strong>키를 눌러주세요.<br><br> 추신: <strong>힌트를 활성화</strong>해서 <strong>E</strong>키를 눌러주세요.<br><br> 추신: <strong>힌트를 활성화</strong>해서
전선 튜토리얼을 활성화해 보세요!" 전선 튜토리얼을 활성화해 보세요!"
reward_filter: reward_filter:
title: 아이템 선별기 title: 아이템 선별기
desc: desc: <strong>아이템 선별기</strong>가 잠금 해제되었습니다! 전선 레이어의 신호와 일치하는지에 대한 여부로 아이템을 위쪽
<strong>아이템 선별기</strong>가 잠금 해제되었습니다! 전선 레이어의 신호와 일치하는지에 대한 여부로 아이템을 위쪽
출력이나 오른쪽 출력으로 보냅니다.<br><br> 불 값 (1 또는 0)을 전달하여 완전히 활성화과 비활성화를 전환할 수 출력이나 오른쪽 출력으로 보냅니다.<br><br> 불 값 (1 또는 0)을 전달하여 완전히 활성화과 비활성화를 전환할 수
있습니다. 있습니다.
reward_demo_end: reward_demo_end:
@ -840,8 +816,7 @@ settings:
labels: labels:
uiScale: uiScale:
title: UI 크기 title: UI 크기
description: description: 사용자 인터페이스의 크기를 변경합니다. 인터페이스는 당신의 해상도에 따라 확장되는데 이 설정은 그 확장의 정도를
사용자 인터페이스의 크기를 변경합니다. 인터페이스는 당신의 해상도에 따라 확장되는데 이 설정은 그 확장의 정도를
제어합니다. 제어합니다.
scales: scales:
super_small: 매우 작게 super_small: 매우 작게
@ -888,18 +863,15 @@ settings:
light: 라이트 light: 라이트
refreshRate: refreshRate:
title: 틱 빈도 title: 틱 빈도
description: description: 이것은 초당 발생하는 게임 틱 수를 결정합니다. 일반적으로 틱 속도가 높을수록 정밀도는 향상되나 성능은 낮아집니다. 낮은
이것은 초당 발생하는 게임 틱 수를 결정합니다. 일반적으로 틱 속도가 높을수록 정밀도는 향상되나 성능은 낮아집니다. 낮은
틱 빈도에서는 처리량이 정확하지 않을 수 있습니다. 틱 빈도에서는 처리량이 정확하지 않을 수 있습니다.
alwaysMultiplace: alwaysMultiplace:
title: 다수 배치 항시 켜기 title: 다수 배치 항시 켜기
description: description: 활성화할 경우 모든 건물은 배치한 후 취소할 때 까지 커서에 선택된 상태를 유지합니다. 이 기능은 SHIFT 키를 계속
활성화할 경우 모든 건물은 배치한 후 취소할 때 까지 커서에 선택된 상태를 유지합니다. 이 기능은 SHIFT 키를 계속
누르는 것과 같습니다. 누르는 것과 같습니다.
offerHints: offerHints:
title: 힌트와 튜토리얼 title: 힌트와 튜토리얼
description: description: 게임 플레이하는 동안 힌트와 튜토리얼을 보여줄 지를 결정합니다. 또한 게임에 더 쉽게 빠져들 수 있도록 특정 레벨까지
게임 플레이하는 동안 힌트와 튜토리얼을 보여줄 지를 결정합니다. 또한 게임에 더 쉽게 빠져들 수 있도록 특정 레벨까지
특정한 UI 요소를 숨깁니다. 특정한 UI 요소를 숨깁니다.
enableTunnelSmartplace: enableTunnelSmartplace:
title: 지능적인 터널 배치 title: 지능적인 터널 배치
@ -928,8 +900,7 @@ settings:
description: 색맹 사용자를 위해 게임을 플레이하는 데 도움을 주는 다양한 도구를 활성화합니다. description: 색맹 사용자를 위해 게임을 플레이하는 데 도움을 주는 다양한 도구를 활성화합니다.
rotationByBuilding: rotationByBuilding:
title: 건물 유형에 따른 방향 title: 건물 유형에 따른 방향
description: description: 각 건물 유형마다 개별적으로 마지막으로 설정했던 방향을 기억하도록 합니다. 다른 건물 변형을 자주 전환하는 경우 이
각 건물 유형마다 개별적으로 마지막으로 설정했던 방향을 기억하도록 합니다. 다른 건물 변형을 자주 전환하는 경우 이
방법이 더욱 편할 수 있습니다. 방법이 더욱 편할 수 있습니다.
soundVolume: soundVolume:
title: 효과음 볼륨 title: 효과음 볼륨
@ -945,8 +916,7 @@ settings:
description: 성능 향상을 위해 타일 그리드를 비활성화할 수 있습니다. 이 역시 게임을 더욱 깨끗하게 보여줍니다! description: 성능 향상을 위해 타일 그리드를 비활성화할 수 있습니다. 이 역시 게임을 더욱 깨끗하게 보여줍니다!
clearCursorOnDeleteWhilePlacing: clearCursorOnDeleteWhilePlacing:
title: 우클릭 시 커서 지우기 title: 우클릭 시 커서 지우기
description: description: 기본적으로 활성화되어 있으며, 배치할 건물을 선택한 상태에서 마우스 우클릭 시 커서를 지웁니다. 비활성화할 경우, 건물을
기본적으로 활성화되어 있으며, 배치할 건물을 선택한 상태에서 마우스 우클릭 시 커서를 지웁니다. 비활성화할 경우, 건물을
커서에 선택한 채로 우클릭하면 바로 건물을 삭제할 수 있습니다. 커서에 선택한 채로 우클릭하면 바로 건물을 삭제할 수 있습니다.
lowQualityTextures: lowQualityTextures:
title: 저품질 텍스처 (못생김) title: 저품질 텍스처 (못생김)
@ -959,8 +929,7 @@ settings:
description: 기본적으로 활성화되어 있으며, 자원 패치에서 피펫 기능을 사용 시 즉시 추출기를 선택합니다. description: 기본적으로 활성화되어 있으며, 자원 패치에서 피펫 기능을 사용 시 즉시 추출기를 선택합니다.
simplifiedBelts: simplifiedBelts:
title: 벨트 단순화 (못생김) title: 벨트 단순화 (못생김)
description: description: 성능 향상을 위해 벨트를 가리킬 때를 제외한 모든 상황에서 벨트 아이템을 렌더링하지 않습니다. 이 기능을 사용할 정도로
성능 향상을 위해 벨트를 가리킬 때를 제외한 모든 상황에서 벨트 아이템을 렌더링하지 않습니다. 이 기능을 사용할 정도로
심각한 성능 문제가 일어나지 않는 한, 이 설정을 사용할 필요는 없습니다. 심각한 성능 문제가 일어나지 않는 한, 이 설정을 사용할 필요는 없습니다.
enableMousePan: enableMousePan:
title: 화면 가장자리 패닝 title: 화면 가장자리 패닝
@ -1178,8 +1147,7 @@ puzzleMenu:
medium: 중간 medium: 중간
hard: 어려움 hard: 어려움
unknown: Unrated unknown: Unrated
dlcHint: dlcHint: DLC를 이미 구입하셨나요? 라이브러리에서 shapez.io를 오른쪽 클릭한 다음 속성… > DLC 메뉴를 선택해서
DLC를 이미 구입하셨나요? 라이브러리에서 shapez.io를 오른쪽 클릭한 다음 속성… > DLC 메뉴를 선택해서
활성화되었는지 확인해주세요. 활성화되었는지 확인해주세요.
search: search:
action: Search action: Search
@ -1229,7 +1197,8 @@ mods:
noModSupport: 모드를 사용하기 위해 정식버전이 필요합니다. noModSupport: 모드를 사용하기 위해 정식버전이 필요합니다.
togglingComingSoon: togglingComingSoon:
title: 곧 업데이트 됩니다! title: 곧 업데이트 됩니다!
description: description: 지금은 mods/ 폴더에 모드 파일을 넣고 빼는 방식으로만 모드를 활성화/비활성화할 수 있습니다. 모드를 이곳에서 켜고
지금은 mods/ 폴더에 모드 파일을 넣고 빼는 방식으로만 모드를 활성화/비활성화할 수 있습니다. 모드를 이곳에서 켜고
끌수 있는 기능은 추후 업데이트될 예정입니다. 모드폴더에 넣고/빼는것으로 할수있습니다. 모드를 토글하는 기능은 곧 업데이트 끌수 있는 기능은 추후 업데이트될 예정입니다. 모드폴더에 넣고/빼는것으로 할수있습니다. 모드를 토글하는 기능은 곧 업데이트
됩니다! 됩니다!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -292,6 +295,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Move moveMap: Move
@ -1322,3 +1338,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Actieve Mods title: Actieve Mods
warningPuzzleDLC: Het spelen van de Puzzle DLC is niet mogelijk met mods. warningPuzzleDLC: Het spelen van de Puzzle DLC is niet mogelijk met mods.
Schakel alsjeblieft alle mods uit om de DLC te spelen. Schakel alsjeblieft alle mods uit om de DLC te spelen.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -302,6 +305,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Beweeg rond de wereld moveMap: Beweeg rond de wereld
@ -1367,3 +1383,5 @@ mods:
mod-bestand van of naar de mods map te kopiëren. Echter, in staat mod-bestand van of naar de mods map te kopiëren. Echter, in staat
zijn om ze hier in- of uitteschakelen is gepland voor een zijn om ze hier in- of uitteschakelen is gepland voor een
toekomstige update! toekomstige update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -297,6 +300,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Beveg moveMap: Beveg
@ -1345,3 +1361,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Aktywne Mody title: Aktywne Mody
warningPuzzleDLC: Granie w DLC Układanek nie jest możliwe z modami. Proszę warningPuzzleDLC: Granie w DLC Układanek nie jest możliwe z modami. Proszę
wyłącz wszystkie mody, aby otworzyć DLC. wyłącz wszystkie mody, aby otworzyć DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: Ok ok: Ok
@ -299,6 +302,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Ruch moveMap: Ruch
@ -1364,3 +1380,5 @@ mods:
description: Włączanie lub wyłączanie modów jest obecnie możliwe tylko przez description: Włączanie lub wyłączanie modów jest obecnie możliwe tylko przez
kopiowanie pliku modów do folderu "mods/". Jednak w przyszłej kopiowanie pliku modów do folderu "mods/". Jednak w przyszłej
aktualizacji będziesz/asz mógł zmieniać ich status tutaj! aktualizacji będziesz/asz mógł zmieniać ich status tutaj!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -295,6 +298,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mover moveMap: Mover
@ -1367,3 +1383,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -304,6 +307,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mover moveMap: Mover
@ -1377,3 +1393,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -100,6 +100,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -302,6 +305,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mișcă-te moveMap: Mișcă-te
@ -1363,3 +1379,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Активные моды title: Активные моды
warningPuzzleDLC: Обновление «Головоломка» несовместима с модами. Пожалуйста, warningPuzzleDLC: Обновление «Головоломка» несовместима с модами. Пожалуйста,
отключите все моды, чтобы играть в DLC. отключите все моды, чтобы играть в DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -299,6 +302,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Передвижение moveMap: Передвижение
@ -1359,3 +1375,5 @@ mods:
description: Включение или отключение модов в настоящее время возможно только description: Включение или отключение модов в настоящее время возможно только
путем копирования файла мода из/в папку mods/. Однако, возможность путем копирования файла мода из/в папку mods/. Однако, возможность
управлять ими здесь планируется в будущем обновлении! управлять ими здесь планируется в будущем обновлении!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -293,6 +296,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Move moveMap: Move
@ -1324,3 +1340,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -97,6 +97,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -293,6 +296,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Kretanje moveMap: Kretanje
@ -1337,3 +1353,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -99,6 +99,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -298,6 +301,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Flytta moveMap: Flytta
@ -1333,3 +1349,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -97,6 +97,9 @@ mainMenu:
title: Aktif Modlar title: Aktif Modlar
warningPuzzleDLC: Modlarla Yapboz DLC'sini oynamak mümkün değil. Lütfen Yapboz warningPuzzleDLC: Modlarla Yapboz DLC'sini oynamak mümkün değil. Lütfen Yapboz
DLC'sini oynayabilmek için bütün modları devre dışı bırakınız. DLC'sini oynayabilmek için bütün modları devre dışı bırakınız.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -296,6 +299,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Hareket Et moveMap: Hareket Et
@ -1353,3 +1369,5 @@ mods:
description: Modları etkinleştirmek veya devre dışı bırakmak şu anda yalnızca description: Modları etkinleştirmek veya devre dışı bırakmak şu anda yalnızca
dosyaları Mod klasörüne kopyalayarak mümkündür. Ancak modları burada dosyaları Mod klasörüne kopyalayarak mümkündür. Ancak modları burada
değiştirmek gelecekteki bir güncelleme için planlanmıştır! değiştirmek gelecekteki bir güncelleme için planlanmıştır!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -98,6 +98,9 @@ mainMenu:
title: Активні моди title: Активні моди
warningPuzzleDLC: Гра з модами у Puzzle DLC не є можливою. Будь-ласка відключіть warningPuzzleDLC: Гра з модами у Puzzle DLC не є можливою. Будь-ласка відключіть
усі моди щоб грати у цей режим. усі моди щоб грати у цей режим.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: Гаразд ok: Гаразд
@ -298,6 +301,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Рухатися moveMap: Рухатися
@ -431,10 +447,10 @@ ingame:
вводи</strong> фарбувальника за допомогою проводу! вводи</strong> фарбувальника за допомогою проводу!
21_3_place_button: Неймовірно! Тепер розмістіть <strong>Вимикач</strong> Та 21_3_place_button: Неймовірно! Тепер розмістіть <strong>Вимикач</strong> Та
з'єднайте їх дротом! з'єднайте їх дротом!
21_4_press_button: 'Натисніть вимикач, аби він почав <strong>видавати сигнал 21_4_press_button: "Натисніть вимикач, аби він почав <strong>видавати сигнал
"Істина" </strong> активувавши таким чином \"Істина\" </strong> активувавши таким чином
фарбувальник.<br><br> PS: Не обов''язково підключати всі входи! фарбувальник.<br><br> PS: Не обов'язково підключати всі входи!
Спробуйте підключити лише два.' Спробуйте підключити лише два."
1_2_hold_and_drag: Утримуйте і перетягніть 1_2_hold_and_drag: Утримуйте і перетягніть
connectedMiners: connectedMiners:
one_miner: 1 Екстрактор one_miner: 1 Екстрактор
@ -1368,3 +1384,5 @@ mods:
description: Увімкнення або вимкнення модів наразі можливе лише шляхом description: Увімкнення або вимкнення модів наразі можливе лише шляхом
копіювання файлу моду з папки mods/ або до неї. Однак можливість їх копіювання файлу моду з папки mods/ або до неї. Однак можливість їх
вимкнення та увімкнення тут запланована на майбутні оновлення! вимкнення та увімкнення тут запланована на майбутні оновлення!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -84,6 +84,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: 确认 ok: 确认
@ -253,6 +256,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: 移动地图 moveMap: 移动地图
@ -1132,3 +1148,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -66,7 +66,7 @@ demoBanners:
playerCount: <playerCount> 个像你一样的玩家目前正在 Steam 上玩 shapez playerCount: <playerCount> 个像你一样的玩家目前正在 Steam 上玩 shapez
untilEndOfDemo: 直到演示结束 untilEndOfDemo: 直到演示结束
playtimeDisclaimerDownload: 您可以在完整版中继续您的存档游戏! 点击<strong>此处</strong>下载您的存档游戏。 playtimeDisclaimerDownload: 您可以在完整版中继续您的存档游戏! 点击<strong>此处</strong>下载您的存档游戏。
titleV2: "现在就玩完整版的。" titleV2: 现在就玩完整版的。
mainMenu: mainMenu:
play: 开始游戏 play: 开始游戏
changelog: 更新日志 changelog: 更新日志
@ -84,14 +84,16 @@ mainMenu:
savegameUnnamed: 存档未命名 savegameUnnamed: 存档未命名
puzzleMode: 谜题模式 puzzleMode: 谜题模式
back: 返回 back: 返回
puzzleDlcText: puzzleDlcText: 持续优化追求极致效率。在限定空间内使用有限的设施来创造图形《异形工厂》Shapez的首个 DLC
持续优化追求极致效率。在限定空间内使用有限的设施来创造图形《异形工厂》Shapez的首个 DLC
“谜题挑战者”将会给大家带来更烧脑、更自由的全新挑战! “谜题挑战者”将会给大家带来更烧脑、更自由的全新挑战!
puzzleDlcWishlist: 添加愿望单! puzzleDlcWishlist: 添加愿望单!
puzzleDlcViewNow: 查看 DLC puzzleDlcViewNow: 查看 DLC
mods: mods:
title: 激活游戏模组Mods title: 激活游戏模组Mods
warningPuzzleDLC: 无法在任何游戏模组Mods下进行“谜题挑战者” DLC请关闭所有游戏模组Mods warningPuzzleDLC: 无法在任何游戏模组Mods下进行“谜题挑战者” DLC请关闭所有游戏模组Mods
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: 确认 ok: 确认
@ -155,8 +157,7 @@ dialogs:
desc: 您还没有解锁蓝图功能!通过第 12 关的挑战后可解锁蓝图。 desc: 您还没有解锁蓝图功能!通过第 12 关的挑战后可解锁蓝图。
keybindingsIntroduction: keybindingsIntroduction:
title: 实用快捷键 title: 实用快捷键
desc: desc: 这个游戏有很多有用的快捷键设定。以下是其中的一些介绍,记得在<strong>按键设置</strong>中查看其他按键设定!<br><br>
这个游戏有很多有用的快捷键设定。以下是其中的一些介绍,记得在<strong>按键设置</strong>中查看其他按键设定!<br><br>
<code class='keybinding'>CTRL 键</code> + 拖动:选择区域以复制或删除。<br> <code <code class='keybinding'>CTRL 键</code> + 拖动:选择区域以复制或删除。<br> <code
class='keybinding'>SHIFT 键</code> 按住以放置多个同一种设施。<br> <code class='keybinding'>SHIFT 键</code> 按住以放置多个同一种设施。<br> <code
class='keybinding'>ALT 键</code>:反向放置传送带。<br> class='keybinding'>ALT 键</code>:反向放置传送带。<br>
@ -260,6 +261,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: 移动地图 moveMap: 移动地图
@ -345,13 +359,11 @@ ingame:
hints: hints:
1_1_extractor: 在<strong>圆形</strong>上放置一个<strong>开采器</strong>来获取圆形!<br><br>提示:<strong>按下鼠标左键</strong>选中<strong>开采器</strong> 1_1_extractor: 在<strong>圆形</strong>上放置一个<strong>开采器</strong>来获取圆形!<br><br>提示:<strong>按下鼠标左键</strong>选中<strong>开采器</strong>
1_2_conveyor: 用<strong>传送带</strong>将您的开采器连接到中心基地上!<br><br>提示:选中<strong>传送带</strong>后<strong>按下鼠标左键可拖动</strong>布置传送带! 1_2_conveyor: 用<strong>传送带</strong>将您的开采器连接到中心基地上!<br><br>提示:选中<strong>传送带</strong>后<strong>按下鼠标左键可拖动</strong>布置传送带!
1_3_expand: 1_3_expand: 您可以放置更多的<strong>开采器</strong>和<strong>传送带</strong>来更有效率地完成关卡目标。<br><br>
您可以放置更多的<strong>开采器</strong>和<strong>传送带</strong>来更有效率地完成关卡目标。<br><br>
提示:按住 <strong>SHIFT</strong> 键可放置多个<strong>开采器</strong>,注意用 提示:按住 <strong>SHIFT</strong> 键可放置多个<strong>开采器</strong>,注意用
<strong>R</strong> 键可旋转<strong>开采器</strong>的出口方向,确保开采的图形可以顺利传送。 <strong>R</strong> 键可旋转<strong>开采器</strong>的出口方向,确保开采的图形可以顺利传送。
2_1_place_cutter: 现在放置一个<strong>切割器</strong>,这个设施可把<strong>圆形</strong>切成两半!<br><br>注意:无论如何放置,切割机总是<strong>从上到下</strong>切割。 2_1_place_cutter: 现在放置一个<strong>切割器</strong>,这个设施可把<strong>圆形</strong>切成两半!<br><br>注意:无论如何放置,切割机总是<strong>从上到下</strong>切割。
2_2_place_trash: 2_2_place_trash: 使用切割机后产生的废弃图形会导致<strong>堵塞</strong>。<br><br>注意使用<strong>垃圾桶</strong>清除当前
使用切割机后产生的废弃图形会导致<strong>堵塞</strong>。<br><br>注意使用<strong>垃圾桶</strong>清除当前
(!) 不需要的废物。 (!) 不需要的废物。
2_3_more_cutters: 干的好!现在放置 <strong>2 2_3_more_cutters: 干的好!现在放置 <strong>2
个以上的切割机</strong>来加快当前缓慢的过程!<br><br>提示:用<strong>快捷键 0 - 9 个以上的切割机</strong>来加快当前缓慢的过程!<br><br>提示:用<strong>快捷键 0 - 9
@ -657,8 +669,7 @@ storyRewards:
desc: 恭喜!您解锁了<strong>旋转机</strong>。它会顺时针将输入的<strong>图形旋转90度</strong>。 desc: 恭喜!您解锁了<strong>旋转机</strong>。它会顺时针将输入的<strong>图形旋转90度</strong>。
reward_painter: reward_painter:
title: 上色 title: 上色
desc: desc: 恭喜!您解锁了<strong>上色器</strong>。开采一些颜色(就像您开采图形一样),将其在上色器中与图形结合来将图形上色!
恭喜!您解锁了<strong>上色器</strong>。开采一些颜色(就像您开采图形一样),将其在上色器中与图形结合来将图形上色!
<br>注意:如果您不幸患有色盲,可以在设置中启用<strong>色盲模式</strong> <br>注意:如果您不幸患有色盲,可以在设置中启用<strong>色盲模式</strong>
reward_mixer: reward_mixer:
title: 混合颜色 title: 混合颜色
@ -675,13 +686,11 @@ storyRewards:
desc: 恭喜!您解锁了<strong>隧道</strong>。它可放置在<strong>传送带</strong>或<strong>设施</strong>下方以运送物品。 desc: 恭喜!您解锁了<strong>隧道</strong>。它可放置在<strong>传送带</strong>或<strong>设施</strong>下方以运送物品。
reward_rotater_ccw: reward_rotater_ccw:
title: 逆时针旋转 title: 逆时针旋转
desc: desc: 恭喜!您解锁了<strong>旋转机</strong>的<strong>逆时针</strong>变体。它可以逆时针旋转<strong>图形</strong>。
恭喜!您解锁了<strong>旋转机</strong>的<strong>逆时针</strong>变体。它可以逆时针旋转<strong>图形</strong>。
<br>选择<strong>旋转机</strong>然后按 "T" 键来选取这个变体。 <br>选择<strong>旋转机</strong>然后按 "T" 键来选取这个变体。
reward_miner_chainable: reward_miner_chainable:
title: 链式开采器 title: 链式开采器
desc: desc: 您已经解锁了<strong>链式开采器</strong>!它能<strong>转发资源</strong>给其他的开采器,这样您就能更有效率的开采各类资源了!<br><br>
您已经解锁了<strong>链式开采器</strong>!它能<strong>转发资源</strong>给其他的开采器,这样您就能更有效率的开采各类资源了!<br><br>
注意:新的开采器已替换了工具栏里旧的开采器! 注意:新的开采器已替换了工具栏里旧的开采器!
reward_underground_belt_tier_2: reward_underground_belt_tier_2:
title: 二级隧道 title: 二级隧道
@ -698,14 +707,12 @@ storyRewards:
<br>它<strong>优先从左边</strong>输出,这样您就可以用它做一个<strong>溢流门</strong>了! <br>它<strong>优先从左边</strong>输出,这样您就可以用它做一个<strong>溢流门</strong>了!
reward_freeplay: reward_freeplay:
title: 自由模式 title: 自由模式
desc: desc: 成功了!您解锁了<strong>自由模式</strong>!挑战升级!这意味着现在将<strong>随机</strong>生成图形!
成功了!您解锁了<strong>自由模式</strong>!挑战升级!这意味着现在将<strong>随机</strong>生成图形!
从现在起,中心基地最为需要的是<strong>产量</strong>,强烈建议您去制造一台能够自动交付所需图形的机器!<br><br> 从现在起,中心基地最为需要的是<strong>产量</strong>,强烈建议您去制造一台能够自动交付所需图形的机器!<br><br>
基地会在<strong>电线层</strong>输出需要的图形,您需要去分析图形并在此基础上自动配置您的工厂。 基地会在<strong>电线层</strong>输出需要的图形,您需要去分析图形并在此基础上自动配置您的工厂。
reward_blueprints: reward_blueprints:
title: 蓝图 title: 蓝图
desc: desc: 您现在可以<strong>复制粘贴</strong>您的工厂的一部分了!按住 CTRL 键并拖动鼠标来选择一块区域,然后按 C 键复制。
您现在可以<strong>复制粘贴</strong>您的工厂的一部分了!按住 CTRL 键并拖动鼠标来选择一块区域,然后按 C 键复制。
<br><br>粘贴并<strong>不是免费的</strong>,您需要制造<strong>蓝图图形</strong>来负担。蓝图图形是您刚刚交付的图形。 <br><br>粘贴并<strong>不是免费的</strong>,您需要制造<strong>蓝图图形</strong>来负担。蓝图图形是您刚刚交付的图形。
no_reward: no_reward:
title: 下一关 title: 下一关
@ -733,8 +740,7 @@ storyRewards:
<br>注意:您注意到<strong>传送读取器</strong>和<strong>存储器</strong>输出的他们最后读取的物品了吗?试着在显示屏上展示一下! <br>注意:您注意到<strong>传送读取器</strong>和<strong>存储器</strong>输出的他们最后读取的物品了吗?试着在显示屏上展示一下!
reward_constant_signal: reward_constant_signal:
title: 恒定信号 title: 恒定信号
desc: desc: 恭喜!您解锁了生成于电线层之上的<strong>恒定信号</strong>,把它连接到<strong>过滤器</strong>时非常有用。
恭喜!您解锁了生成于电线层之上的<strong>恒定信号</strong>,把它连接到<strong>过滤器</strong>时非常有用。
<br>比如它能发出图形、颜色、开关值1 / 0的固定信号。 <br>比如它能发出图形、颜色、开关值1 / 0的固定信号。
reward_logic_gates: reward_logic_gates:
title: 逻辑门 title: 逻辑门
@ -753,8 +759,7 @@ storyRewards:
<strong>提示</strong>:可在设置中打开电线层教程! <strong>提示</strong>:可在设置中打开电线层教程!
reward_filter: reward_filter:
title: 物品过滤器 title: 物品过滤器
desc: desc: 恭喜!您解锁了<strong>物品过滤器</strong>!它会根据在电线层上输入的信号决定是从上面还是右边输出物品。<br><br>
恭喜!您解锁了<strong>物品过滤器</strong>!它会根据在电线层上输入的信号决定是从上面还是右边输出物品。<br><br>
您也可以输入开关值1 / 0信号来激活或者禁用它。 您也可以输入开关值1 / 0信号来激活或者禁用它。
reward_demo_end: reward_demo_end:
title: 试玩结束 title: 试玩结束
@ -810,8 +815,7 @@ settings:
light: 浅色 light: 浅色
refreshRate: refreshRate:
title: 模拟频率、刷新频率 title: 模拟频率、刷新频率
description: description: 在这里更改刷新频率这样游戏可以正确地根据您的屏幕进行模拟。但是如果您的电脑性能不佳提高刷新频率可能降低帧数。注意60Hz
在这里更改刷新频率这样游戏可以正确地根据您的屏幕进行模拟。但是如果您的电脑性能不佳提高刷新频率可能降低帧数。注意60Hz
以上的任何频率都会导致游戏卡顿! 以上的任何频率都会导致游戏卡顿!
alwaysMultiplace: alwaysMultiplace:
title: 多重放置 title: 多重放置
@ -1148,7 +1152,8 @@ mods:
noModSupport: 您需要在 Steam 平台获得完整版才可以安装游戏模组Mods noModSupport: 您需要在 Steam 平台获得完整版才可以安装游戏模组Mods
togglingComingSoon: togglingComingSoon:
title: 即将开放 title: 即将开放
description: description: 当前只能通过将游戏模组Mods文件复制到 mods 文件夹或从 mods 文件夹移除来启用或禁用游戏模组Mods
当前只能通过将游戏模组Mods文件复制到 mods 文件夹或从 mods 文件夹移除来启用或禁用游戏模组Mods
但是可以切换游戏模组Mods已经计划在之后的更新中实现 但是可以切换游戏模组Mods已经计划在之后的更新中实现
modWebsite: 模组网站 modWebsite: 模组网站
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!

View File

@ -64,7 +64,7 @@ demoBanners:
playerCount: <playerCount> 個像你一樣的玩家目前正在 Steam 上玩 shapez playerCount: <playerCount> 個像你一樣的玩家目前正在 Steam 上玩 shapez
untilEndOfDemo: 直到演示結束 untilEndOfDemo: 直到演示結束
playtimeDisclaimerDownload: 您可以在完整版中繼續您的存檔遊戲! 點擊<strong>此處</strong>下載您的存檔遊戲。 playtimeDisclaimerDownload: 您可以在完整版中繼續您的存檔遊戲! 點擊<strong>此處</strong>下載您的存檔遊戲。
titleV2: "立即播放完整版:" titleV2: 立即播放完整版:
mainMenu: mainMenu:
play: 開始遊戲 play: 開始遊戲
changelog: 更新日誌 changelog: 更新日誌
@ -90,6 +90,9 @@ mainMenu:
title: Active Mods title: Active Mods
warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please warningPuzzleDLC: Playing the Puzzle DLC is not possible with mods. Please
disable all mods to play the DLC. disable all mods to play the DLC.
playFullVersion: Play the full version in your Browser!
playingFullVersion: You are now playing the full version!
logout: Logout
dialogs: dialogs:
buttons: buttons:
ok: 確認 ok: 確認
@ -153,15 +156,13 @@ dialogs:
desc: 你還沒有解鎖藍圖功能!完成更多的關卡來解鎖藍圖。 desc: 你還沒有解鎖藍圖功能!完成更多的關卡來解鎖藍圖。
keybindingsIntroduction: keybindingsIntroduction:
title: 實用按鍵 title: 實用按鍵
desc: desc: "這個遊戲有很多能幫助搭建工廠的使用按鍵。 以下是其中的一些,記得在<strong>按鍵設定</strong>中查看其他的! <br><br>
"這個遊戲有很多能幫助搭建工廠的使用按鍵。 以下是其中的一些,記得在<strong>按鍵設定</strong>中查看其他的! <br><br>
<code class='keybinding'>CTRL</code> + 拖曳:選擇區域以複製或刪除。 <br> <code <code class='keybinding'>CTRL</code> + 拖曳:選擇區域以複製或刪除。 <br> <code
class='keybinding'>SHIFT</code>: 按住以放置多個。 <br> <code class='keybinding'>SHIFT</code>: 按住以放置多個。 <br> <code
class='keybinding'>ALT</code>: 反向放置輸送帶。 <br>" class='keybinding'>ALT</code>: 反向放置輸送帶。 <br>"
createMarker: createMarker:
title: 建立標記 title: 建立標記
desc: desc: 給地圖標記取一個名字。你可以在名字中加入一個<strong>簡短代碼</strong>以加入圖形。(你可以在<link>這裡</link>
給地圖標記取一個名字。你可以在名字中加入一個<strong>簡短代碼</strong>以加入圖形。(你可以在<link>這裡</link>
建立簡短代碼。) 建立簡短代碼。)
titleEdit: 修改標記 titleEdit: 修改標記
markerDemoLimit: markerDemoLimit:
@ -270,6 +271,19 @@ dialogs:
descSteamDemo: "One ore more resources could not be loaded. Try restarting the descSteamDemo: "One ore more resources could not be loaded. Try restarting the
game - If that does not help, try reinstalling and verifying the game - If that does not help, try reinstalling and verifying the
game files via Steam. <br><br> Error Message:" game files via Steam. <br><br> Error Message:"
steamSsoError:
title: Full Version Logout
desc: You have been logged out from the Full Browser Version since either your
network connection is unstable or you are playing on another
device.<br><br> Please make sure you don't have shapez open in any
other browser tab or another computer with the same Steam
account.<br><br> You can login again in the main menu.
steamSsoNoOwnership:
title: Full Edition not owned
desc: In order to play the Full Edition in your Browser, you need to own both
the base game and the Puzzle DLC on your Steam account.<br><br>
Please make sure you own both, signed in with the correct Steam
account and then try again.
ingame: ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: 移動 moveMap: 移動
@ -356,18 +370,15 @@ ingame:
1_1_extractor: 在<strong>圓形礦脈</strong>上放一個<strong>開採機</strong>來採集圓形! 1_1_extractor: 在<strong>圓形礦脈</strong>上放一個<strong>開採機</strong>來採集圓形!
1_2_conveyor: 用<strong>輸送帶</strong>將你的開採機連接到基地上! 1_2_conveyor: 用<strong>輸送帶</strong>將你的開採機連接到基地上!
<br><br>提示:用你的游標<strong>按下並拖曳</strong>輸送帶! <br><br>提示:用你的游標<strong>按下並拖曳</strong>輸送帶!
1_3_expand: 1_3_expand: 這<strong>不是</strong>一個放置型遊戲!建造更多的開採機和輸送帶來更快地完成目標。 <br><br>
這<strong>不是</strong>一個放置型遊戲!建造更多的開採機和輸送帶來更快地完成目標。 <br><br>
提示:按住<strong>SHIFT</strong>鍵來放置多個開採機,用<strong>R</strong>鍵旋轉它們。 提示:按住<strong>SHIFT</strong>鍵來放置多個開採機,用<strong>R</strong>鍵旋轉它們。
2_1_place_cutter: "現在放置一個<strong>切割機</strong>並利用它把圓圈切成兩半!<br><br> PS: 2_1_place_cutter: "現在放置一個<strong>切割機</strong>並利用它把圓圈切成兩半!<br><br> PS:
不論切割機的方向,它都會把圖形<strong>垂直地</strong>切成兩半。" 不論切割機的方向,它都會把圖形<strong>垂直地</strong>切成兩半。"
2_2_place_trash: 切割機可能會<strong>堵塞並停止運作</strong><br><br> 2_2_place_trash: 切割機可能會<strong>堵塞並停止運作</strong><br><br>
用<strong>垃圾桶</strong>把「目前」不需要的部分處理掉。 用<strong>垃圾桶</strong>把「目前」不需要的部分處理掉。
2_3_more_cutters: 2_3_more_cutters: "做得好! 現在,再放<strong>2個切割機</strong>來加速這個緩慢的生產線!<br><br> PS:
"做得好! 現在,再放<strong>2個切割機</strong>來加速這個緩慢的生產線!<br><br> PS:
使用<strong>0-9快捷鍵</strong>可以更快選取建築 " 使用<strong>0-9快捷鍵</strong>可以更快選取建築 "
3_1_rectangles: 3_1_rectangles: "現在來開採一些方形吧!<strong>蓋4座開採機</strong>,把形狀收集到基地。<br><br> PS:
"現在來開採一些方形吧!<strong>蓋4座開採機</strong>,把形狀收集到基地。<br><br> PS:
選擇輸送帶,按住<strong>SHIFT</strong>並拖曳滑鼠可以計畫輸送帶位置!" 選擇輸送帶,按住<strong>SHIFT</strong>並拖曳滑鼠可以計畫輸送帶位置!"
21_1_place_quad_painter: 放置一個<strong>上色機(四向)</strong>並取得一些 21_1_place_quad_painter: 放置一個<strong>上色機(四向)</strong>並取得一些
<strong>圓形</strong>、<strong>白色</strong>和<strong>紅色</strong> <strong>圓形</strong>、<strong>白色</strong>和<strong>紅色</strong>
@ -606,19 +617,16 @@ buildings:
transistor: transistor:
default: default:
name: 電晶體 name: 電晶體
description: description: 如果基極(側面)的輸入訊號為「真」,則把射極(底部)輸入的真假值複製到集極(頂部)的輸出。
如果基極(側面)的輸入訊號為「真」,則把射極(底部)輸入的真假值複製到集極(頂部)的輸出。
「真」訊號代表形狀訊號、顏色訊號或布林值為1 「真」訊號代表形狀訊號、顏色訊號或布林值為1
mirrored: mirrored:
name: 電晶體 name: 電晶體
description: description: 如果基極(側面)的輸入訊號為「真」,則把射極(底部)輸入的真假值複製到集極(頂部)的輸出。
如果基極(側面)的輸入訊號為「真」,則把射極(底部)輸入的真假值複製到集極(頂部)的輸出。
「真」訊號代表形狀訊號、顏色訊號或布林值為1 「真」訊號代表形狀訊號、顏色訊號或布林值為1
filter: filter:
default: default:
name: 物件分類器 name: 物件分類器
description: description: 它會依據電路層收到的訊號,從分類器底部輸入的物件如符合輸入信號的會輸出到頂部,不符合的會從右方(交叉標記)排出。
它會依據電路層收到的訊號,從分類器底部輸入的物件如符合輸入信號的會輸出到頂部,不符合的會從右方(交叉標記)排出。
它也可以被布林值訊號控制。 它也可以被布林值訊號控制。
display: display:
default: default:
@ -671,8 +679,7 @@ buildings:
storyRewards: storyRewards:
reward_cutter_and_trash: reward_cutter_and_trash:
title: 切割圖形 title: 切割圖形
desc: desc: <strong>切割機</strong>已解鎖!不論切割機的方向,它都會把圖形<strong>垂直地</strong>切成兩半。<br><br>
<strong>切割機</strong>已解鎖!不論切割機的方向,它都會把圖形<strong>垂直地</strong>切成兩半。<br><br>
記得把不需要的部分處理掉,否則切割機會<strong>因為堵塞而停止運作</strong>。 記得把不需要的部分處理掉,否則切割機會<strong>因為堵塞而停止運作</strong>。
為此我給你準備了<strong>垃圾桶</strong>,它會把所有放進去的物品銷毀掉。 為此我給你準備了<strong>垃圾桶</strong>,它會把所有放進去的物品銷毀掉。
reward_rotater: reward_rotater:
@ -764,8 +771,7 @@ storyRewards:
<strong>布林值</strong>1或0 <strong>布林值</strong>1或0
reward_logic_gates: reward_logic_gates:
title: 邏輯閘 title: 邏輯閘
desc: desc: <strong>邏輯閘</strong>已解鎖!你可能覺得無所謂,但其實邏輯閘其實超酷的!<br><br> 有了這些邏輯閘,你可以運算 AND,
<strong>邏輯閘</strong>已解鎖!你可能覺得無所謂,但其實邏輯閘其實超酷的!<br><br> 有了這些邏輯閘,你可以運算 AND,
OR, XOR 與 NOT 邏輯。<br><br> 錦上添花,我再送你<strong>電晶體</strong> OR, XOR 與 NOT 邏輯。<br><br> 錦上添花,我再送你<strong>電晶體</strong>
reward_virtual_processing: reward_virtual_processing:
title: 虛擬操作 title: 虛擬操作
@ -1195,3 +1201,5 @@ mods:
description: Enabling or disabling mods is currently only possible by copying description: Enabling or disabling mods is currently only possible by copying
the mod file from or to the mods/ folder. However, being able to the mod file from or to the mods/ folder. However, being able to
toggle them here is planned for a future update! toggle them here is planned for a future update!
browserNoSupport: Due to browser restrictions it is currently only possible to
install mods in the Steam version - Sorry!