Merge branch 'master' into master

This commit is contained in:
sergiocuemont 2020-07-07 14:29:46 +02:00 committed by GitHub
commit f480bf34d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
58 changed files with 3619 additions and 2052 deletions

View File

@ -17,8 +17,9 @@ Your goal is to produce shapes by cutting, rotating, merging and painting parts
- Run `git lfs pull` to download sound assets - Run `git lfs pull` to download sound assets
- Make sure `ffmpeg` is on your path - Make sure `ffmpeg` is on your path
- Install Node.js and Yarn - Install Node.js and Yarn
- Run `yarn` in the root folder, then run `yarn` in the `gulp/` folder - Run `yarn` in the root folder
- Cd into `gulp` and run `yarn gulp` - it should now open in your browser - Cd into `gulp` folder
- Run `yarn` and then `yarn gulp` - it should now open in your browser
**Notice**: This will produce a debug build with several debugging flags enabled. If you want to disable them, modify `config.js`. **Notice**: This will produce a debug build with several debugging flags enabled. If you want to disable them, modify `config.js`.

View File

@ -1383,6 +1383,6 @@
"format": "RGBA8888", "format": "RGBA8888",
"size": {"w":690,"h":127}, "size": {"w":690,"h":127},
"scale": "0.1", "scale": "0.1",
"smartupdate": "$TexturePacker:SmartUpdate:402faa0126e6dcd814be979d8e838c46:68488838c03e95969cf7c09daf42f69a:f159918d23e5952766c6d23ab52278c6$" "smartupdate": "$TexturePacker:SmartUpdate:4e5fb3bd7f1e5423e4fcea2215debe11:0c5d091d0b928944c68553dcc592c801:f159918d23e5952766c6d23ab52278c6$"
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

After

Width:  |  Height:  |  Size: 216 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 KiB

After

Width:  |  Height:  |  Size: 515 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 976 KiB

View File

@ -358,12 +358,16 @@
<key type="filename">sprites/blueprints/belt_left.png</key> <key type="filename">sprites/blueprints/belt_left.png</key>
<key type="filename">sprites/blueprints/belt_right.png</key> <key type="filename">sprites/blueprints/belt_right.png</key>
<key type="filename">sprites/blueprints/belt_top.png</key> <key type="filename">sprites/blueprints/belt_top.png</key>
<key type="filename">sprites/blueprints/wire_crossings-merger.png</key>
<key type="filename">sprites/blueprints/wire_crossings.png</key>
<key type="filename">sprites/blueprints/wire_left.png</key> <key type="filename">sprites/blueprints/wire_left.png</key>
<key type="filename">sprites/blueprints/wire_right.png</key> <key type="filename">sprites/blueprints/wire_right.png</key>
<key type="filename">sprites/blueprints/wire_top.png</key> <key type="filename">sprites/blueprints/wire_top.png</key>
<key type="filename">sprites/buildings/belt_left.png</key> <key type="filename">sprites/buildings/belt_left.png</key>
<key type="filename">sprites/buildings/belt_right.png</key> <key type="filename">sprites/buildings/belt_right.png</key>
<key type="filename">sprites/buildings/belt_top.png</key> <key type="filename">sprites/buildings/belt_top.png</key>
<key type="filename">sprites/buildings/wire_crossings-merger.png</key>
<key type="filename">sprites/buildings/wire_crossings.png</key>
<key type="filename">sprites/buildings/wire_left.png</key> <key type="filename">sprites/buildings/wire_left.png</key>
<key type="filename">sprites/buildings/wire_right.png</key> <key type="filename">sprites/buildings/wire_right.png</key>
<key type="filename">sprites/buildings/wire_top.png</key> <key type="filename">sprites/buildings/wire_top.png</key>
@ -388,6 +392,7 @@
<key type="filename">sprites/buildings/advanced_processor.png</key> <key type="filename">sprites/buildings/advanced_processor.png</key>
<key type="filename">sprites/buildings/energy_generator.png</key> <key type="filename">sprites/buildings/energy_generator.png</key>
<key type="filename">sprites/buildings/painter-double.png</key> <key type="filename">sprites/buildings/painter-double.png</key>
<key type="filename">sprites/misc/energy_generator_overlay.png</key>
<struct type="IndividualSpriteSettings"> <struct type="IndividualSpriteSettings">
<key>pivotPoint</key> <key>pivotPoint</key>
<point_f>0.5,0.5</point_f> <point_f>0.5,0.5</point_f>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -49,16 +49,19 @@
font-weight: bold; font-weight: bold;
&:hover { &:hover {
opacity: 1; opacity: 0.8;
} }
.deleteButton { .editButton {
@include S(width, 10px); @include S(width, 10px);
@include S(height, 10px); @include S(height, 10px);
@include S(margin-left, 4px); @include S(margin-left, 4px);
background: uiResource("icons/close.png") center center / 60% no-repeat; background: uiResource("icons/edit_key.png") center center / 70% no-repeat;
pointer-events: all; pointer-events: all;
cursor: pointer; cursor: pointer;
position: relative;
@include IncreasedClickArea(2px);
transition: transform 0.04s ease-in-out;
&:hover { &:hover {
transform: scale(1.5); transform: scale(1.5);

View File

@ -13,10 +13,12 @@ export const CHANGELOG = [
"Zoom towards mouse cursor (by Dimava)", "Zoom towards mouse cursor (by Dimava)",
"Updated the soundtrack again, it is now 20 minutes in total!", "Updated the soundtrack again, it is now 20 minutes in total!",
"Updated and added new translations (Thanks to all contributors!)", "Updated and added new translations (Thanks to all contributors!)",
"Allow editing waypoints (by isaisstillalive)",
"Show confirmation when cutting area which is too expensive to get pasted again (by isaisstillalive)", "Show confirmation when cutting area which is too expensive to get pasted again (by isaisstillalive)",
"Show mouse and camera tile on debug overlay (F4) (by dengr)", "Show mouse and camera tile on debug overlay (F4) (by dengr)",
"Fix tunnels entrances connecting to exits sometimes when they shouldn't", "Fix tunnels entrances connecting to exits sometimes when they shouldn't",
"The initial belt planner direction is now based on the cursor movement (by MizardX)", "The initial belt planner direction is now based on the cursor movement (by MizardX)",
"Fix preferred variant not getting saved when clicking on the hud (by Danacus)",
], ],
}, },
{ {

View File

@ -3,7 +3,7 @@ export default {
/* dev:start */ /* dev:start */
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Quickly enters the game and skips the main menu - good for fast iterating // Quickly enters the game and skips the main menu - good for fast iterating
// fastGameEnter: true, fastGameEnter: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Skips any delays like transitions between states and such // Skips any delays like transitions between states and such
// noArtificialDelays: true, // noArtificialDelays: true,
@ -33,13 +33,13 @@ export default {
// rewardsInstant: true, // rewardsInstant: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Unlocks all buildings // Unlocks all buildings
// allBuildingsUnlocked: true, allBuildingsUnlocked: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Disables cost of blueprints // Disables cost of blueprints
// blueprintsNoCost: true, blueprintsNoCost: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Disables cost of upgrades // Disables cost of upgrades
// upgradesNoCost: true, upgradesNoCost: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Disables the dialog when completing a level // Disables the dialog when completing a level
// disableUnlockDialog: true, // disableUnlockDialog: true,
@ -78,7 +78,7 @@ export default {
// instantMiners: true, // instantMiners: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// When using fastGameEnter, controls whether a new game is started or the last one is resumed // When using fastGameEnter, controls whether a new game is started or the last one is resumed
// resumeGameOnFastEnter: true, resumeGameOnFastEnter: true,
// ----------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------
// Special option used to render the trailer // Special option used to render the trailer
// renderForTrailer: true, // renderForTrailer: true,

View File

@ -365,10 +365,12 @@ export class DialogWithForm extends Dialog {
* @param {Application} param0.app * @param {Application} param0.app
* @param {string} param0.title * @param {string} param0.title
* @param {string} param0.desc * @param {string} param0.desc
* @param {string=} param0.confirmButton * @param {array=} param0.buttons
* @param {string=} param0.confirmButtonId
* @param {string=} param0.extraButton
* @param {Array<FormElement>} param0.formElements * @param {Array<FormElement>} param0.formElements
*/ */
constructor({ app, title, desc, formElements, confirmButton = "ok:good" }) { constructor({ app, title, desc, formElements, buttons = ["cancel", "ok:good"], confirmButtonId = "ok" }) {
let html = ""; let html = "";
html += desc + "<br>"; html += desc + "<br>";
for (let i = 0; i < formElements.length; ++i) { for (let i = 0; i < formElements.length; ++i) {
@ -379,14 +381,14 @@ export class DialogWithForm extends Dialog {
app, app,
title: title, title: title,
contentHTML: html, contentHTML: html,
buttons: ["cancel:bad", confirmButton], buttons: buttons,
type: "info", type: "info",
closeButton: true, closeButton: true,
}); });
this.confirmButtonId = confirmButton.split(":")[0]; this.confirmButtonId = confirmButtonId;
this.formElements = formElements; this.formElements = formElements;
this.enterHandler = "ok"; this.enterHandler = confirmButtonId;
} }
internalButtonHandler(id, ...payload) { internalButtonHandler(id, ...payload) {

View File

@ -94,9 +94,7 @@ export class MetaAdvancedProcessorBuilding extends MetaBuilding {
{ {
pos: new Vector(0, 1), pos: new Vector(0, 1),
directions: [enumDirection.left], directions: [enumDirection.left],
filter: enumItemType.shape,
}, },
{ {
pos: new Vector(0, 0), pos: new Vector(0, 0),
directions: [enumDirection.top], directions: [enumDirection.top],

View File

@ -143,7 +143,7 @@ export const enumColorMixingResults = {
[c.black]: { [c.black]: {
// auto // auto
[c.white]: c.white, [c.white]: c.uncolored,
[c.cyan]: c.cyan, [c.cyan]: c.cyan,
[c.uncolored]: c.uncolored, [c.uncolored]: c.uncolored,
}, },
@ -153,8 +153,10 @@ export const enumColorMixingResults = {
for (const color in enumColors) { for (const color in enumColors) {
enumColorMixingResults[color][color] = color; enumColorMixingResults[color][color] = color;
// Anything with white is white again // Anything with white is white again, except for black which creates gray
enumColorMixingResults[color][c.white] = c.white; if (color !== enumColors.black) {
enumColorMixingResults[color][c.white] = c.white;
}
// Anything with uncolored is the same color // Anything with uncolored is the same color
enumColorMixingResults[color][c.uncolored] = color; enumColorMixingResults[color][c.uncolored] = color;

View File

@ -216,7 +216,7 @@ export class HUDBuildingPlacer extends HUDBuildingPlacerLogic {
consumeEvents: true, consumeEvents: true,
targetOnly: true, targetOnly: true,
}); });
detector.click.add(() => this.currentVariant.set(variant)); detector.click.add(() => this.setVariant(variant));
} }
} }

View File

@ -523,12 +523,21 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
); );
const newIndex = (index + 1) % availableVariants.length; const newIndex = (index + 1) % availableVariants.length;
const newVariant = availableVariants[newIndex]; const newVariant = availableVariants[newIndex];
this.currentVariant.set(newVariant); this.setVariant(newVariant);
this.preferredVariants[metaBuilding.getId()] = newVariant;
} }
} }
/**
* Sets the current variant to the given variant
* @param {string} variant
*/
setVariant(variant) {
const metaBuilding = this.currentMetaBuilding.get();
this.currentVariant.set(variant);
this.preferredVariants[metaBuilding.getId()] = variant;
}
/** /**
* Performs the direction locked placement between two points after * Performs the direction locked placement between two points after
* releasing the mouse * releasing the mouse

View File

@ -111,7 +111,7 @@ export class HUDWaypoints extends BaseHUDPart {
this.root.camera.downPreHandler.add(this.onMouseDown, this); this.root.camera.downPreHandler.add(this.onMouseDown, this);
this.root.keyMapper this.root.keyMapper
.getBinding(KEYMAPPINGS.navigation.createMarker) .getBinding(KEYMAPPINGS.navigation.createMarker)
.add(this.requestCreateMarker, this); .add(() => this.requestSaveMarker({}));
/** /**
* Stores at how much opacity the markers should be rendered on the map. * Stores at how much opacity the markers should be rendered on the map.
@ -168,8 +168,8 @@ export class HUDWaypoints extends BaseHUDPart {
} }
if (this.isWaypointDeletable(waypoint)) { if (this.isWaypointDeletable(waypoint)) {
const deleteButton = makeDiv(element, null, ["deleteButton"]); const editButton = makeDiv(element, null, ["editButton"]);
this.trackClicks(deleteButton, () => this.deleteWaypoint(waypoint)); this.trackClicks(editButton, () => this.requestSaveMarker({ waypoint }));
} }
if (!waypoint.label) { if (!waypoint.label) {
@ -220,42 +220,61 @@ export class HUDWaypoints extends BaseHUDPart {
} }
/** /**
* Requests to create a marker at the current camera position. If worldPos is set, * Requests to save a marker at the current camera position. If worldPos is set,
* uses that position instead. * uses that position instead.
* @param {Vector=} worldPos Override the world pos, otherwise it is the camera position * @param {object} param0
* @param {Vector=} param0.worldPos Override the world pos, otherwise it is the camera position
* @param {Waypoint=} param0.waypoint Waypoint to be edited. If omitted, create new
*/ */
requestCreateMarker(worldPos = null) { requestSaveMarker({ worldPos = null, waypoint = null }) {
// Construct dialog with input field // Construct dialog with input field
const markerNameInput = new FormElementInput({ const markerNameInput = new FormElementInput({
id: "markerName", id: "markerName",
label: null, label: null,
placeholder: "", placeholder: "",
defaultValue: waypoint ? waypoint.label : "",
validator: val => validator: val =>
val.length > 0 && (val.length < MAX_LABEL_LENGTH || ShapeDefinition.isValidShortKey(val)), val.length > 0 && (val.length < MAX_LABEL_LENGTH || ShapeDefinition.isValidShortKey(val)),
}); });
const dialog = new DialogWithForm({ const dialog = new DialogWithForm({
app: this.root.app, app: this.root.app,
title: T.dialogs.createMarker.title, title: waypoint ? T.dialogs.createMarker.titleEdit : T.dialogs.createMarker.title,
desc: T.dialogs.createMarker.desc, desc: T.dialogs.createMarker.desc,
formElements: [markerNameInput], formElements: [markerNameInput],
buttons: waypoint ? ["delete:bad", "cancel", "ok:good"] : ["cancel", "ok:good"],
}); });
this.root.hud.parts.dialogs.internalShowDialog(dialog); this.root.hud.parts.dialogs.internalShowDialog(dialog);
// Compute where to create the marker // Edit marker
const center = worldPos || this.root.camera.center; if (waypoint) {
dialog.buttonSignals.ok.add(() => {
// Actually rename the waypoint
this.renameWaypoint(waypoint, markerNameInput.getValue());
});
dialog.buttonSignals.delete.add(() => {
// Actually delete the waypoint
this.deleteWaypoint(waypoint);
});
} else {
// Compute where to create the marker
const center = worldPos || this.root.camera.center;
dialog.buttonSignals.ok.add(() => { dialog.buttonSignals.ok.add(() => {
// Show info that you can have only N markers in the demo, // Show info that you can have only N markers in the demo,
// actually show this *after* entering the name so you want the // actually show this *after* entering the name so you want the
// standalone even more (I'm evil :P) // standalone even more (I'm evil :P)
if (IS_DEMO && this.waypoints.length > 2) { if (IS_DEMO && this.waypoints.length > 2) {
this.root.hud.parts.dialogs.showFeatureRestrictionInfo("", T.dialogs.markerDemoLimit.desc); this.root.hud.parts.dialogs.showFeatureRestrictionInfo(
return; "",
} T.dialogs.markerDemoLimit.desc
);
return;
}
// Actually create the waypoint // Actually create the waypoint
this.addWaypoint(markerNameInput.getValue(), center); this.addWaypoint(markerNameInput.getValue(), center);
}); });
}
} }
/** /**
@ -272,18 +291,7 @@ export class HUDWaypoints extends BaseHUDPart {
zoomLevel: Math.max(this.root.camera.zoomLevel, globalConfig.mapChunkOverviewMinZoom + 0.05), zoomLevel: Math.max(this.root.camera.zoomLevel, globalConfig.mapChunkOverviewMinZoom + 0.05),
}); });
// Sort waypoints by name this.sortWaypoints();
this.waypoints.sort((a, b) => {
if (!a.label) {
return -1;
}
if (!b.label) {
return 1;
}
return this.getWaypointLabel(a)
.padEnd(MAX_LABEL_LENGTH, "0")
.localeCompare(this.getWaypointLabel(b).padEnd(MAX_LABEL_LENGTH, "0"));
});
// Show notification about creation // Show notification about creation
this.root.hud.signals.notification.dispatch( this.root.hud.signals.notification.dispatch(
@ -295,6 +303,26 @@ export class HUDWaypoints extends BaseHUDPart {
this.rerenderWaypointList(); this.rerenderWaypointList();
} }
/**
* Renames a waypoint with the given label
* @param {Waypoint} waypoint
* @param {string} label
*/
renameWaypoint(waypoint, label) {
waypoint.label = label;
this.sortWaypoints();
// Show notification about renamed
this.root.hud.signals.notification.dispatch(
T.ingame.waypoints.creationSuccessNotification,
enumNotificationType.success
);
// Re-render the list and thus add it
this.rerenderWaypointList();
}
/** /**
* Called every frame to update stuff * Called every frame to update stuff
*/ */
@ -304,6 +332,23 @@ export class HUDWaypoints extends BaseHUDPart {
} }
} }
/**
* Sort waypoints by name
*/
sortWaypoints() {
this.waypoints.sort((a, b) => {
if (!a.label) {
return -1;
}
if (!b.label) {
return 1;
}
return this.getWaypointLabel(a)
.padEnd(MAX_LABEL_LENGTH, "0")
.localeCompare(this.getWaypointLabel(b).padEnd(MAX_LABEL_LENGTH, "0"));
});
}
/** /**
* Returns the label for a given waypoint * Returns the label for a given waypoint
* @param {Waypoint} waypoint * @param {Waypoint} waypoint
@ -381,7 +426,7 @@ export class HUDWaypoints extends BaseHUDPart {
} else if (button === enumMouseButton.right) { } else if (button === enumMouseButton.right) {
if (this.isWaypointDeletable(waypoint)) { if (this.isWaypointDeletable(waypoint)) {
this.root.soundProxy.playUiClick(); this.root.soundProxy.playUiClick();
this.deleteWaypoint(waypoint); this.requestSaveMarker({ waypoint });
} else { } else {
this.root.soundProxy.playUiError(); this.root.soundProxy.playUiError();
} }
@ -393,7 +438,7 @@ export class HUDWaypoints extends BaseHUDPart {
if (button === enumMouseButton.right) { if (button === enumMouseButton.right) {
if (this.root.camera.getIsMapOverlayActive()) { if (this.root.camera.getIsMapOverlayActive()) {
const worldPos = this.root.camera.screenToWorld(pos); const worldPos = this.root.camera.screenToWorld(pos);
this.requestCreateMarker(worldPos); this.requestSaveMarker({ worldPos });
return STOP_PROPAGATION; return STOP_PROPAGATION;
} }
} }

View File

@ -1,13 +1,11 @@
import { globalConfig } from "../../core/config"; import { globalConfig } from "../../core/config";
import { BaseItem } from "../base_item"; import { BaseItem, enumItemType } from "../base_item";
import { enumColorMixingResults } from "../colors"; import { enumColorMixingResults, enumInvertedColors } from "../colors";
import { enumItemProcessorTypes, ItemProcessorComponent } from "../components/item_processor"; import { enumItemProcessorTypes, ItemProcessorComponent } from "../components/item_processor";
import { Entity } from "../entity"; import { Entity } from "../entity";
import { GameSystemWithFilter } from "../game_system_with_filter"; import { GameSystemWithFilter } from "../game_system_with_filter";
import { ColorItem } from "../items/color_item"; import { ColorItem } from "../items/color_item";
import { ShapeItem } from "../items/shape_item"; import { ShapeItem } from "../items/shape_item";
import { enumLayer } from "../root";
import { NEGATIVE_ENERGY_ITEM_SINGLETON } from "../items/negative_energy_item";
export class ItemProcessorSystem extends GameSystemWithFilter { export class ItemProcessorSystem extends GameSystemWithFilter {
constructor(root) { constructor(root) {
@ -346,13 +344,29 @@ export class ItemProcessorSystem extends GameSystemWithFilter {
// ADVANCED PROCESSING // ADVANCED PROCESSING
case enumItemProcessorTypes.advancedProcessor: { case enumItemProcessorTypes.advancedProcessor: {
const shapeItem = /** @type {ShapeItem} */ (items[0].item); const item = items[0].item;
const newItem = this.root.shapeDefinitionMgr.shapeActionInvertColors(shapeItem.definition);
if (item.getItemType() === enumItemType.color) {
const colorItem = /** @type {ColorItem} */ (items[0].item);
const newColor = enumInvertedColors[colorItem.color];
outItems.push({
item: new ColorItem(newColor),
requiredSlot: 0,
});
} else if (item.getItemType() === enumItemType.shape) {
const shapeItem = /** @type {ShapeItem} */ (items[0].item);
const newItem = this.root.shapeDefinitionMgr.shapeActionInvertColors(
shapeItem.definition
);
outItems.push({
item: new ShapeItem(newItem),
requiredSlot: 0,
});
} else {
assertAlways(false, "Bad item type: " + item.getItemType() + " for advanced processor.");
}
outItems.push({
item: new ShapeItem(newItem),
requiredSlot: 0,
});
break; break;
} }

View File

@ -15,8 +15,8 @@
"background": "rgba(74, 237, 134, 0.2)" "background": "rgba(74, 237, 134, 0.2)"
}, },
"wires": { "wires": {
"color": "rgb(144, 24, 255)", "color": "rgb(209, 107, 203)",
"background": "rgba(144, 24, 255, 0.2)" "background": "rgba(209, 107, 203, 0.2)"
} }
}, },

View File

@ -15,8 +15,8 @@
"background": "rgba(74, 237, 134, 0.2)" "background": "rgba(74, 237, 134, 0.2)"
}, },
"wires": { "wires": {
"color": "rgb(74, 237, 134)", "color": "rgb(209, 107, 203)",
"background": "rgba(74, 237, 134, 0.5)" "background": "rgba(209, 107, 203, 0.2)"
} }
}, },

View File

@ -23,8 +23,6 @@ export const enumHubGoalRewards = {
reward_painter_quad: "reward_painter_quad", reward_painter_quad: "reward_painter_quad",
reward_storage: "reward_storage", reward_storage: "reward_storage",
reward_wires: "reward_wires",
reward_blueprints: "reward_blueprints", reward_blueprints: "reward_blueprints",
reward_freeplay: "reward_freeplay", reward_freeplay: "reward_freeplay",

View File

@ -17,7 +17,7 @@ const originalContents = fs
const original = YAML.parse(originalContents); const original = YAML.parse(originalContents);
const placeholderRegexp = /<([a-zA-Z_0-9]+)>/gi; const placeholderRegexp = /[[<]([a-zA-Z_0-9]+)[\]<]/gi;
function match(originalObj, translatedObj, path = "/") { function match(originalObj, translatedObj, path = "/") {
for (const key in originalObj) { for (const key in originalObj) {

View File

@ -1,10 +1,9 @@
# Translations # Translations
The base translation is `base-en.yaml`. It will always contain the latest phrases and structure. The base language is English and can be found [here](base-en.yaml).
## Languages ## Languages
- [English (Base Language, Source of Truth)](base-en.yaml)
- [German](base-de.yaml) - [German](base-de.yaml)
- [French](base-fr.yaml) - [French](base-fr.yaml)
- [Korean](base-kor.yaml) - [Korean](base-kor.yaml)
@ -31,6 +30,7 @@ The base translation is `base-en.yaml`. It will always contain the latest phrase
- [Finnish](base-fi.yaml) - [Finnish](base-fi.yaml)
- [Catalan](base-cat.yaml) - [Catalan](base-cat.yaml)
- [Slovenian](base-sl.yaml) - [Slovenian](base-sl.yaml)
- [Ukrainian](base-uk.yaml)
(If you want to translate into a new language, see below!) (If you want to translate into a new language, see below!)
@ -38,15 +38,39 @@ The base translation is `base-en.yaml`. It will always contain the latest phrase
If you want to edit an existing translation (Fixing typos, Updating it to a newer version, etc), you can just use the github file editor to edit the file. If you want to edit an existing translation (Fixing typos, Updating it to a newer version, etc), you can just use the github file editor to edit the file.
- Find the file you want to edit (For example, `base-de.yaml` if you want to change the german translation) - Click the language you want to edit from the list above
- Click on the file name on, there will be a small "edit" symbol on the top right - Click the small "edit" symbol on the top right
- Do the changes you wish to do (Be sure **not** to translate placeholders!)
<img src="https://i.imgur.com/gZnUQoe.png" alt="edit symbol" width="200">
- Do the changes you wish to do (Be sure **not** to translate placeholders! For example, `<amount> minutes` should get `<amount> Minuten` and **not** `<anzahl> Minuten`!)
- Click "Propose Changes" - Click "Propose Changes"
- I will review your changes and make comments, and eventually merge them so they will be in the next release!
<img src="https://i.imgur.com/KT9ZFp6.png" alt="propose changes" width="200">
- Click "Create pull request"
<img src="https://i.imgur.com/oVljvRE.png" alt="create pull request" width="200">
- I will review your changes and make comments, and eventually merge them so they will be in the next release! Be sure to regulary check the created pull request for comments.
## Adding a new language ## Adding a new language
Please DM me on discord (tobspr#5407), so I can add the language template for you. It is not as simple as creating a new file. Please DM me on discord (tobspr#5407), so I can add the language template for you.
Please use the following template:
```
Hey, could you add a new translation?
Language: <Language, e.g. 'German'>
Short code: <Short code, e.g. 'de', see below>
Local Name: <Name of your Language, e.g. 'Deutsch'>
```
You can find the short code [here](https://www.science.co.il/language/Codes.php) (In column `Code 2`).
PS: I'm super busy, but I'll give my best to do it quickly! PS: I'm super busy, but I'll give my best to do it quickly!
## Updating a language to the latest version ## Updating a language to the latest version

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Loading loading: Loading
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: Continue continue: Continue
newGame: New Game newGame: New Game
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -270,6 +267,10 @@ dialogs:
You requested to export your base as a screenshot. Please note that this can You requested to export your base as a screenshot. Please note that this can
be quite slow for a big base and even crash your game! be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Empty empty: Empty
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +521,27 @@ buildings:
storage: storage:
name: Storage name: Storage
description: Stores excess items, up to a given capacity. Can be used as an overflow gate. description: Stores excess items, up to a given capacity. Can be used as an overflow gate.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -729,11 +754,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -801,6 +826,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: About this Game title: About this Game

View File

@ -29,41 +29,61 @@ steamPage:
# - Please keep the markup (Stuff like [b], [list] etc) in the same format # - Please keep the markup (Stuff like [b], [list] etc) in the same format
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io és un joc que té com a objectiu construir i automatitzar fàbriques per tal de produir i combinar figures. Al entregar-les, es progressa en el joc desbloquejant millores per les línies de producció.
En augmentar la demanda serà necessari redissenyar les línies de producció per tal de saciar les demandes - Sense oblidar-se dels recursos bàsics, serà necessari expandir-se en el [b]mapa infinit[/b]! shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Ja que les figures simples poden ser avorrides serà necessari mesclar colors i pintar-les - Combina roig, verd i blau per produir diferents colors i així pintar les figures per assolir el nivell de demanda adequat. As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
El joc compta amb 18 nivells (Que et mantindran ocupat durant hores!) però estic afegint constantment nou contingut - Tinc moltes coses planejades! Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
[b]Avantatges del joc complet[/b] This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b]
[list] [list]
[*] Balises o marcadors, punts de referència en el mapa [*] Dark Mode
[*] Guardar partides de forma il·limitada [*] Unlimited Waypoints
[*] Mode fosc/nocturn [*] Unlimited Savegames
[*] Més opcions [*] Additional settings
[*] Em permet seguir desenvolupant shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Més característiques en el futur! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Característiques planejades i suggerències de la comunitat[/b] [b]Future Updates[/b]
Aquest joc és de codi obert - Qualsevol pot contribuir! A més, tinc [b]molt present[/b] a la comunitat! Intento/e llegir tots els suggeriments i proporcionar tot el feedback que m'és possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Cables! [*] Different maps and challenges (e.g. maps with obstacles)
[*] Mode història on els edificis tenen un cost en figures [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Més nivells i edificis (exclusiu de la versió completa) [*] A story mode where buildings have a cost
[*] Mapes diferents i potser obstacles dins d'aquest [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Configurar la generació del mapa (número i mida dels recursos, la seed i més) [*] Additional types of shapes
[*] Més tipus de figures [*] Performance improvements (The game already runs pretty well!)
[*] Millorar el rendiment (Tot i que el joc ja funciona molt bé!) [*] And much more!
[*] I molt més!
[/list] [/list]
Assegurat de revisar el taulell de Trello per veure el full de ruta! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Carregant loading: Carregant
error: Error error: Error
@ -131,27 +151,7 @@ mainMenu:
savegameLevel: Nivell <x> savegameLevel: Nivell <x>
savegameLevelUnknown: Nivell desconegut savegameLevelUnknown: Nivell desconegut
contests:
contest_01_03062020:
title: "Concurs #01"
desc: Guanya <strong>$25</strong> per la base més impresionant!
longDesc: >-
Per tal de mantenir el feedback he pensat que molaria fer concursos setmanals!
<br><br>
<strong>El tema d'aquesta setmana:</strong> Construeix la base més impresionant!
<br><br>
Aquest és el procés:<br>
<ul class="bucketList">
<li>Envia una captura de pantalla de la teva/teua base <strong>contest@shapez.io</strong></li>
<li>Punts extra si ho comparteixes en xarxes socials!</li>
<li>Seleccionaré a 5 captures i les proposaré a la comunitat de <strong>discord</strong> per que votin/en.</li>
<li>El premi és <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Estic esperant les vostres increïbles creacions!
showInfo: Veure
contestOver: Aquest concurs ha conclòs- Entra a discord per assabentar-te de nous concursos!
dialogs: dialogs:
buttons: buttons:
@ -254,6 +254,7 @@ dialogs:
createMarker: createMarker:
title: Nou Marcador title: Nou Marcador
titleEdit: Edit Marker
desc: >- desc: >-
Dona-li un nom significatiu, també pots usar <strong>claus</strong> de les figures (Pots generarles a: <a href="https://viewer.shapez.io" target="_blank">aquí</a>) Dona-li un nom significatiu, també pots usar <strong>claus</strong> de les figures (Pots generarles a: <a href="https://viewer.shapez.io" target="_blank">aquí</a>)
@ -263,6 +264,9 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Export screenshot title: Export screenshot
desc: Has demanat exportar la teva/teua base com una captura de pantalla. Tin en conte que aquest procés pot ser molt lent i inclús crashear el teu joc! desc: Has demanat exportar la teva/teua base com una captura de pantalla. Tin en conte que aquest procés pot ser molt lent i inclús crashear el teu joc!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -298,6 +302,7 @@ ingame:
cyan: Cian cyan: Cian
white: Blanc white: Blanc
uncolored: Sense color uncolored: Sense color
black: Black
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -535,6 +540,13 @@ buildings:
default: default:
name: &energy_generator Generador d'energia name: &energy_generator Generador d'energia
description: Genera energia consumint figures. Cada generador requereix una figura diferent. description: Genera energia consumint figures. Cada generador requereix una figura diferent.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -613,10 +625,6 @@ storyRewards:
desc: >- desc: >-
Aquest nivell no t'ha donat res, però el següent ho farà! <br><br> PD: És millor que no destrueixes la part de la fàbrica existent - Necessitaràs <strong>totes</strong> aquestes figures més tard per a <strong>desbloquejar millores</strong>! Aquest nivell no t'ha donat res, però el següent ho farà! <br><br> PD: És millor que no destrueixes la part de la fàbrica existent - Necessitaràs <strong>totes</strong> aquestes figures més tard per a <strong>desbloquejar millores</strong>!
reward_wires:
title: Cables
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Següent nivell title: Següent nivell
desc: >- desc: >-
@ -810,6 +818,7 @@ keybindings:
placementDisableAutoOrientation: Disable automatic orientation placementDisableAutoOrientation: Disable automatic orientation
placeMultiple: Stay in placement mode placeMultiple: Stay in placement mode
placeInverse: Invert automatic belt orientation placeInverse: Invert automatic belt orientation
menuClose: Close Menu
about: about:
title: About this Game title: About this Game

View File

@ -11,42 +11,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io je hra o stavbě továren pro automatizaci výroby a kombinování tvarů. Poskytněte vyžadované, stále složitější tvary, aby jste postoupili ve hře dále, a odemkněte vylepšení pro zrychlení vaší továrny. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Protože poptávka postupně roste, musíte svou továrnu rozšiřovat tak, aby vyhověla potřebám - Nové zdroje, najdete na [b]nekonečné mapě[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Jen tvary by byly nuda, proto máme pigmenty kterými musíte dílky obarvit - zkombinujte červené, zelené a modré barvivo pro vytvoření dalších odstínů a obarvěte s nimi tvary pro uspokojení poptávky. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Hra obsahuje 18 úrovní (což by vás mělo zaměstnat na spoustu hodin!), ale nový obsah je neustále přidáván - je toho hodně naplánováno! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Výhody plné hry[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Označování pozic na mapě [*] Dark Mode
[*] Neomezený počet uložených her [*] Unlimited Waypoints
[*] Tmavý motiv [*] Unlimited Savegames
[*] Více nastavení [*] Additional settings
[*] Pomůžete mi dále vyvíjet shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Více funkcí v budoucnu! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Plánované funkce a komunitní návrhy[/b] [b]Future Updates[/b]
Tato hra je open source - kdokoli může přispět! Kromě toho [b]hodně[/b] poslouchám komunitu! Snažím se přečíst si všechny návrhy a vzít v úvahu zpětnou vazbu. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Mód s příběhem, kde stavba budov stojí tvary [*] Different maps and challenges (e.g. maps with obstacles)
[*] Více úrovní a budov (exkluzivní pro plnou verzi) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Různé mapy a zábrany na mapě [*] A story mode where buildings have a cost
[*] Konfigurace generátoru map (úprava počtu a velikosti nálezišť, seed map, a další) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Více tvarů [*] Additional types of shapes
[*] Další zlepšení výkonu (I když hra již běží docela dobře!) [*] Performance improvements (The game already runs pretty well!)
[*] Režim pro barvoslepé [*] And much more!
[*] A mnohem více!
[/list] [/list]
Nezapomeňte se podívat na moji Trello nástěnku pro úplný plán! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Načítám loading: Načítám
@ -112,28 +129,7 @@ mainMenu:
savegameLevel: Úroveň <x> savegameLevel: Úroveň <x>
savegameLevelUnknown: Neznámá úroveň savegameLevelUnknown: Neznámá úroveň
contests:
contest_01_03062020:
title: "Soutěž #01"
desc: Vyhraj <strong>$25</strong> za nejvíc cool základnu!
longDesc: >-
Abych vám poděkoval, myslel jsem, že by bylo skvělé dělat týdenní soutěže!
<br><br>
<strong>Téma tohoto týdne:</strong> Postavte nejvíc cool základnu!
<br><br>
Zde je zadání:<br>
<ul class="bucketList">
<li>Zašlete screenshot své základny na <strong>contest@shapez.io</strong></li>
<li>Bonusové body za sdílení na sociálních médiích!</li>
<li>Vyberu 5 screenshotů a <strong>Discord</strong> komunita bude hlasovat o vítězi.</li>
<li>Vítěz dostane <strong>$25</strong> (Paypal, Amazon Dárkový Poukaz, co preferujete)</li>
<li>Uzávěrka: 07.06.2020 12:00 CEST</li>
</ul>
<br>
Těším se na vaše úžasné výtvory!
showInfo: Zobrazit
contestOver: Tato soutěž skončila - Připojte se na Discord a získejte informace o nových soutěžích!
continue: Pokračovat continue: Pokračovat
newGame: Nová hra newGame: Nová hra
madeBy: Vytvořil <author-link> madeBy: Vytvořil <author-link>
@ -236,6 +232,7 @@ dialogs:
createMarker: createMarker:
title: Nová značka title: Nová značka
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: V ukázce můžete vytvořit pouze dvě značky. Získejte plnou verzi pro neomezený počet značek! desc: V ukázce můžete vytvořit pouze dvě značky. Získejte plnou verzi pro neomezený počet značek!
@ -251,6 +248,10 @@ dialogs:
Zažádal jsi o exportování své základny jako obrázek. Měj prosím na paměti, že to Zažádal jsi o exportování své základny jako obrázek. Měj prosím na paměti, že to
může zejména u větších základen dlouho trvat, nebo dokonce shodit hru! může zejména u větších základen dlouho trvat, nebo dokonce shodit hru!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -273,6 +274,7 @@ ingame:
copySelection: Kopířovat copySelection: Kopířovat
clearSelection: Zrušit výběr clearSelection: Zrušit výběr
pipette: Kapátko pipette: Kapátko
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -388,9 +390,11 @@ ingame:
cyan: Tyrkysová cyan: Tyrkysová
white: Bílá white: Bílá
uncolored: Bez barvy uncolored: Bez barvy
black: Black
shapeViewer: shapeViewer:
title: Vrstvy title: Vrstvy
empty: Prázdné empty: Prázdné
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -498,6 +502,27 @@ buildings:
storage: storage:
name: Sklad name: Sklad
description: Skladuje věci navíc až do naplnění kapacity. Může být použit na skladování surovin navíc. description: Skladuje věci navíc až do naplnění kapacity. Může být použit na skladování surovin navíc.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -709,11 +734,11 @@ settings:
title: Režim pro barvoslepé title: Režim pro barvoslepé
description: Zapné různé nástroje, které vám umožní hrát hru i pokud jste barvoslepí. description: Zapné různé nástroje, které vám umožní hrát hru i pokud jste barvoslepí.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Klávesové zkratky title: Klávesové zkratky
@ -781,6 +806,11 @@ keybindings:
lockBeltDirection: Zamknout směr pásu lockBeltDirection: Zamknout směr pásu
switchDirectionLockSide: Otočit strany zámku plánovače switchDirectionLockSide: Otočit strany zámku plánovače
pipette: Kapátko pipette: Kapátko
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: O hře title: O hře

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Loading loading: Loading
@ -135,28 +152,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
dialogs: dialogs:
buttons: buttons:
@ -260,6 +256,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -267,6 +264,9 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Export screenshot title: Export screenshot
desc: You requested to export your base as a screenshot. Please note that this can be quite slow for a big base and even crash your game! desc: You requested to export your base as a screenshot. Please note that this can be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -302,6 +302,7 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -530,6 +531,21 @@ buildings:
default: default:
name: &energy_generator Energy Generator name: &energy_generator Energy Generator
description: Generates energy by consuming shapes. Each energy generator requires a different shapes. description: Generates energy by consuming shapes. Each energy generator requires a different shapes.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -609,10 +625,6 @@ storyRewards:
desc: >- desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>! This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
reward_wires:
title: Wires
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Next level title: Next level
desc: >- desc: >-
@ -820,6 +832,9 @@ keybindings:
placementDisableAutoOrientation: Disable automatic orientation placementDisableAutoOrientation: Disable automatic orientation
placeMultiple: Stay in placement mode placeMultiple: Stay in placement mode
placeInverse: Invert automatic belt orientation placeInverse: Invert automatic belt orientation
menuClose: Close Menu
advanced_processor: Color Inverter
wire: Energy Wire
about: about:
title: About this Game title: About this Game

View File

@ -23,6 +23,9 @@ steamPage:
# This is the short text appearing on the steam page # This is the short text appearing on the steam page
shortText: In shapez.io nutzt du die vorhandenen Ressourcen, um mit deinen Maschinen durch Kombination immer komplexere Formen zu erschaffen. shortText: In shapez.io nutzt du die vorhandenen Ressourcen, um mit deinen Maschinen durch Kombination immer komplexere Formen zu erschaffen.
# This is the text shown above the discord link
discordLink: Offizieller Discord - Hier kannst du mit mir schreiben!
# This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page. # This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page.
# NOTICE: # NOTICE:
# - Do not translate the first line (This is the gif image at the start of the store) # - Do not translate the first line (This is the gif image at the start of the store)
@ -30,42 +33,57 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
In shapez.io musst du Maschinen geschickt verbinden, damit Formen automatisiert erstellt, bearbeitet und kombiniert werden. Liefere die gewünschten, stetig komplexer werdenden Formen an dein Hauptgebäude, um im Spiel voranzukommen. Schalte mit ihnen außerdem Upgrades frei, die deine Maschinen und somit auch deine Fabriken beschleunigen! shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Da die Nachfrage sowohl in der Komplexität, als auch der Anzahl steigt, wirst du deine Fabriken erweitern müssen. Vergiss nicht, dass du die dafür benötigten Ressourcen beschaffen musst und expandiere auf der [b]unendlichen Karte[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Das reine Zerschneiden und Zusammensetzen von Formen kann natürlich schnell langweilig werden, aber keine Sorge - Du kannst Farben mischen und deine Formen damit bemalen lassen. Staple dann deine fertigen Formen aufeinander und lasse so die wildesten Kreationen entstehen. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Nutze dein gesammeltes Wissen über die Maschinen und lasse deine Fabriken die gewünschten Formen der 18 verschiedenen Level abliefern. Schalte mit jedem Level neue Arbeitsschritte oder Gebäude frei. Das sollte dich schon für Stunden beschäftigt halten! Danach werden im Freispielmodus zufällige Formen generiert, die du ebenfalls abliefern kannst. Ich füge regelmäßig neue Funktionen hinzu und davon sind eine ganze Menge geplant! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
[b]Vorteile der Standalone[/b] Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b]
[list] [list]
[*] Wegpunkte [*] Dark Mode
[*] Unbegrenzte Anzahl von Spielständen [*] Unlimited Waypoints
[*] Dark-Mode [*] Unlimited Savegames
[*] Weitere Einstellungen [*] Additional settings
[*] Unterstütze die Entwicklung von shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Neue Funktionen in der Zukunft! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Geplante Funktionen & Community-Vorschläge[/b] [b]Future Updates[/b]
Diese Spiel ist Open Source - Jeder kann dazu beitragen! Abgesehen davon, höre ich auf das Feedback der Community! Ich versuche alle Vorschläge zu lesen und so viel davon einzubeziehen, wie nur möglich. Hier ein Liste an Features, die momentan geplant sind. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story-Modus mit Gebäudekosten [*] Different maps and challenges (e.g. maps with obstacles)
[*] Drähte und Logik [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Neue Gebäude und Level (nur in der Standalone-Version) [*] A story mode where buildings have a cost
[*] Mehrere Karten und vielleicht auch Hindernisse [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Einstellbare Kartengenerierung (Ändere die Grösse und Anzahl von Ressourcenflecken, den Seed und mehr) [*] Additional types of shapes
[*] Mehr Formentypen [*] Performance improvements (The game already runs pretty well!)
[*] Performanceverbesserungen (Auch wenn das Spiel bereits ganz gut läuft) [*] And much more!
[*] Und vieles mehr!
[/list] [/list]
Schau für die komplette Planung doch mal auf dem Trello-Board vorbei! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
global: global:
loading: Laden loading: Laden
error: Fehler error: Fehler
@ -129,28 +147,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unbekanntes Level savegameLevelUnknown: Unbekanntes Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Gewinne <strong>$25</strong> für die beste Basis!
longDesc: >-
Um euch etwas zurückzugeben dachte ich, dass es eine coole Idee ist, wöchentliche Wettbewerbe durchzuführen!
<br><br>
<strong>Thema dieser Woche:</strong> Baue die coolste Basis!
<br><br>
Hier ist der Deal:<br>
<ul class="bucketList">
<li>Sende einen Screenshot deiner Basis an <strong>contest@shapez.io</strong></li>
<li>Bonuspunkte, wenn du die Basis auf sozialen Medien teilst!</li>
<li>Ich wähle 5 Screenshots aus und schlage dieser der Community auf <strong>Discord</strong> zur Abstimmung vor.</li>
<li>Der Gewinner bekommt <strong>$25</strong> (PayPal, Amazon Gift Card, was du willst)</li>
<li>Einsendeschluss: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Ich freue mich auf eure tollen Kreationen!
showInfo: Anschauen
contestOver: Dieser Wettbewerb ist vorbei! Tritt dem Discord Server bei, um über neue Wettbewerbe informiert zu werden!
helpTranslate: Hilf beim Übersetzen! helpTranslate: Hilf beim Übersetzen!
continue: Fortsetzen continue: Fortsetzen
newGame: Neues Spiel newGame: Neues Spiel
@ -254,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Neuer Marker title: Neuer Marker
desc: Gib ihm einen griffigen Namen. Du kannst sogar die <strong>Abkürzung</strong> einer Form eingeben (Diese kann <a href="https://viewer.shapez.io" target="_blank">hier</a> generiert werden). desc: Gib ihm einen griffigen Namen. Du kannst sogar die <strong>Abkürzung</strong> einer Form eingeben (Diese kann <a href="https://viewer.shapez.io" target="_blank">hier</a> generiert werden).
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Du kannst nur 2 benutzerdefinierte Marker in der Demo benutzen. Hol dir die Standalone, um unendlich viele Marker zu erstellen! desc: Du kannst nur 2 benutzerdefinierte Marker in der Demo benutzen. Hol dir die Standalone, um unendlich viele Marker zu erstellen!
@ -267,6 +265,10 @@ dialogs:
desc: >- desc: >-
Hier kannst du ein Bildschirmfoto von deiner ganzen Fabrik erstellen. Für extrem große Fabriken kann das jedoch sehr lange dauern und ggf. zum Spielabsturz führen! Hier kannst du ein Bildschirmfoto von deiner ganzen Fabrik erstellen. Für extrem große Fabriken kann das jedoch sehr lange dauern und ggf. zum Spielabsturz führen!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -289,6 +291,7 @@ ingame:
copySelection: Kopieren copySelection: Kopieren
clearSelection: Auswahl aufheben clearSelection: Auswahl aufheben
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -404,9 +407,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: Weiß white: Weiß
uncolored: Farblos uncolored: Farblos
black: Black
shapeViewer: shapeViewer:
title: Ebenen title: Ebenen
empty: Leer empty: Leer
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -518,6 +523,27 @@ buildings:
toUnlock: >- toUnlock: >-
Für folgende Belohnung: Für folgende Belohnung:
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -729,11 +755,11 @@ settings:
title: Modus für Farbenblinde title: Modus für Farbenblinde
description: Aktiviert verschiedene Werkzeuge, die dir das Spielen trotz Farbenblindheit ermöglichen. description: Aktiviert verschiedene Werkzeuge, die dir das Spielen trotz Farbenblindheit ermöglichen.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation pro Gebäudetyp
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Jeder Gebäudetyp merkt sich einzeln, welche Rotation ausgewählt ist.
This may be more comfortable if you frequently switch between placing Das fühlt sich möglicherweise besser an, wenn du häufig zwischen verschiedenen
different building types. Gebäudetypen wechselst.
keybindings: keybindings:
title: Tastenbelegung title: Tastenbelegung
@ -801,6 +827,11 @@ keybindings:
lockBeltDirection: Bandplaner aktivieren lockBeltDirection: Bandplaner aktivieren
switchDirectionLockSide: "Planer: Seite wechseln" switchDirectionLockSide: "Planer: Seite wechseln"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Über dieses Spiel title: Über dieses Spiel

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Loading loading: Loading
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: Continue continue: Continue
newGame: New Game newGame: New Game
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -270,6 +267,10 @@ dialogs:
You requested to export your base as a screenshot. Please note that this can You requested to export your base as a screenshot. Please note that this can
be quite slow for a big base and even crash your game! be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Empty empty: Empty
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +521,27 @@ buildings:
deliver: Deliver deliver: Deliver
toUnlock: to unlock toUnlock: to unlock
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -730,11 +755,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -802,6 +827,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: About this Game title: About this Game

View File

@ -44,7 +44,7 @@ steamPage:
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features. Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[img]{STEAM_APP_IMAGE}/extras/header_standalone_advantages.png[/img] [b]Standalone Advantages[/b]
[list] [list]
[*] Dark Mode [*] Dark Mode
@ -56,7 +56,7 @@ steamPage:
[*] Allows me to further develop shapez.io ❤️ [*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[img]{STEAM_APP_IMAGE}/extras/header_future_updates.png[/img] [b]Future Updates[/b]
I am updating the game very often and trying to push an update at least every week! I am updating the game very often and trying to push an update at least every week!
@ -70,12 +70,12 @@ steamPage:
[*] And much more! [*] And much more!
[/list] [/list]
[img]{STEAM_APP_IMAGE}/extras/header_open_source.png[/img] [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible. Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap! Be sure to check out my trello board for the full roadmap!
[img]{STEAM_APP_IMAGE}/extras/header_links.png[/img] [b]Links[/b]
[list] [list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url] [*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
@ -153,29 +153,6 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This week's topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and showcase them to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -282,6 +259,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
titleEdit: Edit Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
markerDemoLimit: markerDemoLimit:
@ -325,7 +303,7 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
black: Black black: Black
uncolored: No color uncolored: Gray
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -467,8 +445,8 @@ buildings:
wire: wire:
default: default:
name: &wire Wire name: &wire Energy Wire
description: Allows you to transport energy description: Allows you to transport energy.
miner: # Internal name for the Extractor miner: # Internal name for the Extractor
default: default:
@ -511,8 +489,8 @@ buildings:
advanced_processor: advanced_processor:
default: default:
name: &advanced_processor Advanced Processor name: &advanced_processor Color Inverter
description: Advanced shape processing description: Accepts a color or shape and inverts it.
rotater: rotater:
default: default:
@ -565,16 +543,16 @@ buildings:
default: default:
name: &energy_generator Energy Generator name: &energy_generator Energy Generator
description: Generates energy by consuming shapes. Each energy generator requires a different shape. description: Generates energy by consuming shapes.
wire_crossings: wire_crossings:
default: default:
name: &wire_crossings Wire Splitter name: &wire_crossings Wire Splitter
description: Splits a wire into two description: Splits a energy wire into two.
merger: merger:
name: Wire Merger name: Wire Merger
description: Merges two wires into one description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -654,10 +632,6 @@ storyRewards:
desc: >- desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>! This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
reward_wires:
title: Wires
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Next level title: Next level
desc: >- desc: >-

View File

@ -25,7 +25,7 @@ steamPage:
# This is the text shown above the discord link # This is the text shown above the discord link
discordLink: Discord oficial - ¡Chatea conmigo! discordLink: Discord oficial - ¡Chatea conmigo!
# This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page. # This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page.
# NOTICE: # NOTICE:
# - Do not translate the first line (This is the gif image at the start of the store) # - Do not translate the first line (This is the gif image at the start of the store)
@ -33,8 +33,8 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io es un juego sobre construir fábricas para automatizar la creación y combinación de figuras en un mapa que se expande infinitamente. shapez.io es un juego basado en la construcción de fábricas para automatizar la creación y combinación de figuras en un mapa que se expande infinitamente.
Entrega las cada vez más complejas figuras requeridas para progresar y desbloquea mejoras para aumentar la velocidad de tu fábrica. Entrega las figuras requeridas para progresar y desbloquear mejoras para aumentar la velocidad de tu fábrica.
Al aumentar la demanda, necesitarás escalar tu fábrica para ajustarte a las necesidades - ¡No te olvides de los recursos, necesitarás expandirte en el [b]mapa infinito[/b]! Al aumentar la demanda, necesitarás escalar tu fábrica para ajustarte a las necesidades - ¡No te olvides de los recursos, necesitarás expandirte en el [b]mapa infinito[/b]!
@ -44,7 +44,7 @@ steamPage:
Comprando el juego tendrás acceso a la versión completa con contenido adicional, además del contenido en desarrollo. Comprando el juego tendrás acceso a la versión completa con contenido adicional, además del contenido en desarrollo.
[b]Ventajas del juego completo[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Modo oscuro [*] Modo oscuro
@ -153,29 +153,6 @@ mainMenu:
savegameLevel: Nivel <x> savegameLevel: Nivel <x>
savegameLevelUnknown: Nivel desconocido savegameLevelUnknown: Nivel desconocido
contests:
contest_01_03062020:
title: "Concurso #01"
desc: ¡Gana <strong>25$</strong> por la base más impresionante!
longDesc: >-
¡Para devolveros algo a vosotros he pensado que molaría hacer consursos semanales!
<br><br>
<strong>El tema de esta semana:</strong> ¡Construye la base más chula!
<br><br>
Este es el trato:<br>
<ul class="bucketList">
<li>Envía una captura de pantalla de tu base a <strong>contest@shapez.io</strong></li>
<li>¡Puntos extra si lo subes a redes sociales!</li>
<li>Elegiré 5 capturas de pantalla y las propondré a la comunidad de <strong>discord</strong> para que vote.</li>
<li>El ganador obtendrá <strong>25$</strong> (Paypal, tarjeta de regalo de Amazon, lo que prefieras)</li>
<li>Fecha límite: 06/07/2020 12:00 AM CEST</li>
</ul>
<br>
¡Estoy esperando para ver vuestras increíbles creaciones!
showInfo: Ver
contestOver: El concurso ha terminado - ¡Únete al discord para enterarte sobre nuevos concursos!
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
@ -239,7 +216,7 @@ dialogs:
oneSavegameLimit: oneSavegameLimit:
title: Partidas guardadas limitadas title: Partidas guardadas limitadas
desc: Solo puedes tener una partida guardada a la vez en la versión de prueba. ¡Por favor, elimina la ya existente u obtén el juego completo! desc: Solo puedes tener una partida guardada a la vez en la versión de prueba. ¡Por favor, elimina la ya existente u obtén el juego completo!
updateSummary: updateSummary:
title: ¡Nueva actualización! title: ¡Nueva actualización!
desc: >- desc: >-
@ -259,7 +236,7 @@ dialogs:
massCutConfirm: massCutConfirm:
title: Confirmar corte title: Confirmar corte
desc: >- desc: >-
¡Estás cortando muchos edificios (<count> para ser exactos)! ¿Estas seguro de que quieres hacer esto? ¡Estás cortando muchos edificios (<count> para ser exactos)! ¿Estas seguro de que quieres hacer esto?
massCutInsufficientConfirm: massCutInsufficientConfirm:
title: Confirm cut title: Confirm cut
@ -457,7 +434,7 @@ shopUpgrades:
# Buildings and their name / description # Buildings and their name / description
buildings: buildings:
hub: hub:
deliver: Envía deliver: Entregar
toUnlock: para desbloquear toUnlock: para desbloquear
levelShortcut: LVL levelShortcut: LVL
@ -787,7 +764,7 @@ settings:
title: Información compacta de edificios title: Información compacta de edificios
description: >- description: >-
Acorta la caja de información mostrando solo sus ratios. Si no, se mostrará una descripción y una imagen. Acorta la caja de información mostrando solo sus ratios. Si no, se mostrará una descripción y una imagen.
disableCutDeleteWarnings: disableCutDeleteWarnings:
title: Deshabilitar las advertencias de cortar/eliminar title: Deshabilitar las advertencias de cortar/eliminar
description: >- description: >-
@ -890,5 +867,4 @@ demo:
customizeKeybindings: Personalizando atajos de teclado customizeKeybindings: Personalizando atajos de teclado
exportingBase: Exportando la base completa como imagen exportingBase: Exportando la base completa como imagen
settingNotAvailable: No disponible en la versión de prueba. settingNotAvailable: No disponible en la versión de prueba.

View File

@ -20,7 +20,7 @@
# #
steamPage: steamPage:
# This is the short text appearing on the steam page # This is the short text appearing on the steam page
shortText: shapez.io on peli tehtaiden rakentamisesta, joiden avulla automatisoidaan yhä monimutkaisempien muotojen luonti and yhdisteleminen loputtomassa maailmassa. shortText: shapez.io on peli tehtaiden rakentamisesta, joiden avulla automatisoidaan yhä monimutkaisempien muotojen luonti and yhdisteleminen loputtomassa maailmassa.
# This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page. # This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page.
@ -30,41 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io on peli tehtaiden rakentamisesta, joiden avulla automatisoidaan yhä monimutkaisempien muotojen luonti and yhdisteleminen. Toimita yhä monimutkaisemmat pyydetyt muodot edistyäksesi pelissä ja avataksesi päivityksiä kasvattamaan tehtaasi nopeutta. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Kun kysyntä kasvaa, sinun täytyy kasvattaa tehdastasi täyttämään uudet vaatimukset. - Joskin älä unohda resursseja, sinun täytyy laajentua [b]loputtomassa maailmassa[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Koska muodot voivat käydä pian tylsiksi, sinun täytyy sekoittaa värejä keskenään ja värjätä muotoja niillä - Sekoita punaista, vihreää ja sinista väriresurssia tehdäksesi erilaisia värejä ja värjätäksesi muotoja sillä tyydyttääksesi kysynnän. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Tämä peli tarjoaa 18 tasoa (Joiden pitäisi pitää sinut kiireisenä jo monia tunteja!) mutta lisään jatkuvasti lisää sisältöä peliin. - Paljon sisältöä on suunniteltu! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Itsenäisen pelin edut[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Reittipisteet [*] Dark Mode
[*] Loputon määrä tallennuksia [*] Unlimited Waypoints
[*] Tumma tila [*] Unlimited Savegames
[*] Lisää asetuksia [*] Additional settings
[*] Antakaa minun kehittää shapez.io:ta pidemmälle❤ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Lisää ominaisuuksia tulossa! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Suunnitellut ominaisuudet & Yhteisön ehdotukset[/b] [b]Future Updates[/b]
I am updating the game very often and trying to push an update at least every week!
Tässä pelissä on avoin lähdekoodi - Kuka tahansa voi osallistua! Sen lisäksi kuuntelen [b]paljon[/b] Yhteisöä! Yritän lukea kaikki ehdotukset ja ottaa mahdollisimman paljon palautetta huomioon.
[list] [list]
[*] Johtoja! [*] Different maps and challenges (e.g. maps with obstacles)
[*] Tarinatila, jossa rakennukset maksavat muotoja [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Lisää tasoja ja rakennuksia (pelkästään itsenäisessä pelissä) [*] A story mode where buildings have a cost
[*] Erilaisia karttoja sekä ehkä esteitä kartoissa [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Säädettävä kartan luonti (Säädä alueiden lukumäärää ja kokoa, kartan siementä ja muuta) [*] Additional types of shapes
[*] Lisää muototyyppejä [*] Performance improvements (The game already runs pretty well!)
[*] Lisää suorituskyvyn parannuksia (Huolimatta siitä että peli jo nyt toimii meko hyvin!) [*] And much more!
[*] Ja paljon muuta!
[/list] [/list]
Muista tarkistaa trello taulusta koko etenemissuunnitelma! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Ladataan loading: Ladataan
@ -134,28 +152,7 @@ mainMenu:
savegameLevel: Taso <x> savegameLevel: Taso <x>
savegameLevelUnknown: Tuntematon Taso savegameLevelUnknown: Tuntematon Taso
contests:
contest_01_03062020:
title: "Kilpailu #01"
desc: Palkinto <strong>17,78€</strong> hienoimmalle päämajalle!
longDesc: >-
Jotta voin antaa takaisin jotain, ajattelin että olisi hienoa pitää viikottaisia kilpailuja!
<br><br>
<strong>Tämän viikon aihe:</strong> Rakenna hienoin päämaja!
<br><br>
Tässä on ehdot:<br>
<ul class="bucketList">
<li>Lähetä kuvakaappaus tukikohdastasi osoitteeseen <strong>contest@shapez.io</strong></li>
<li>Saat bonuspisteita jos jaat sen sosiaalisessa mediassa!</li>
<li>Valitsen viisi kuvakaappausta ja lähetän ne <strong>discord</strong> yhteisölle äänestettäväksi.</li>
<li>Voittaja saa <strong>22,23€</strong> (Paypal, Amazon lahjakortti tai mitä vain haluat)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Odotan innolla mahtavia luomuksiasi!
showInfo: Näytä
contestOver: Tämä kilpailu on päättynyt - Liity discord yhteisöön saadaksesi huomautuksia uusista kilpailuista!
dialogs: dialogs:
buttons: buttons:
@ -259,6 +256,7 @@ dialogs:
createMarker: createMarker:
title: Uusi Merkki title: Uusi Merkki
desc: Anna merkille kuvaava nimi, voit myös sisällyttää muodon <strong>lyhyen avaimen</strong> siihen. (Lyhyen avaimen voit luoda <a href="https://viewer.shapez.io" target="_blank">täällä</a>) desc: Anna merkille kuvaava nimi, voit myös sisällyttää muodon <strong>lyhyen avaimen</strong> siihen. (Lyhyen avaimen voit luoda <a href="https://viewer.shapez.io" target="_blank">täällä</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Voit tehdä vain kaksi mukautettua merkkiä demoversiossa. Hanki itsenäinen versio saadaksesi loputtoman määrän merkkejä! desc: Voit tehdä vain kaksi mukautettua merkkiä demoversiossa. Hanki itsenäinen versio saadaksesi loputtoman määrän merkkejä!
@ -266,6 +264,9 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Vie kuvakaappaus title: Vie kuvakaappaus
desc: Pyysit tukikohtasi viemistä kuvakaappauksena. Huomaa, että tämä voi olla melko hidasta isolla tukikohdalla ja voi jopa kaataa pelisi! desc: Pyysit tukikohtasi viemistä kuvakaappauksena. Huomaa, että tämä voi olla melko hidasta isolla tukikohdalla ja voi jopa kaataa pelisi!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -301,6 +302,7 @@ ingame:
cyan: Syaani cyan: Syaani
white: Valkoinen white: Valkoinen
uncolored: Ei Väriä uncolored: Ei Väriä
black: Black
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -541,6 +543,13 @@ buildings:
default: default:
name: &energy_generator Sähkögeneraattori name: &energy_generator Sähkögeneraattori
description: Tuottaa sähköä kuluttamalla muotoja. Jokainen sähkögeneraattori vaatii eri muotoja. description: Tuottaa sähköä kuluttamalla muotoja. Jokainen sähkögeneraattori vaatii eri muotoja.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -620,10 +629,6 @@ storyRewards:
desc: >- desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>! This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
reward_wires:
title: Johdot
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Seuraava taso title: Seuraava taso
desc: >- desc: >-
@ -833,6 +838,7 @@ keybindings:
placementDisableAutoOrientation: Poista automaattinen suunta käytöstä placementDisableAutoOrientation: Poista automaattinen suunta käytöstä
placeMultiple: Pysy sijoittamistilassa placeMultiple: Pysy sijoittamistilassa
placeInverse: Käännä automaattinen hihnan suunta placeInverse: Käännä automaattinen hihnan suunta
menuClose: Close Menu
about: about:
title: Tietoja tästä pelistä title: Tietoja tästä pelistä

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io est un jeu ayant pour objectif d'automatiser la création et la fusion de formes à l'aide d'une usine. Livrez des formes de plus en plus complexes requises pour progresser dans le jeu et débloquez des améliorations qui accéléreront votre chaîne de production. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
La demande allant croissant, vous aurez à adapter l'échelle de votre usine afin de suivre la demande - Ne négligez pas les resources cependant, vous aurez à vous étendre sur une [b]carte infinie[/b] ! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Traiter seulement des formes pouvant devenir monotone à la longue, vous aurez aussi à mélanger des couleurs et à les utiliser pour peindre vos formes - Combinez des pigments rouges, verts ou bleus pour produire différentes couleurs et enduisez-en vos formes afin de satisfaire les demandes. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Ce jeu propose 18 niveaux (qui devraient d'ores et déjà vous occuper pour de nombreuses heures !) mais j'ajoute régulièrement de nouveaux contenus - Beaucoup de nouveautés sont prévues ! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Avantage de la version complète[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Balises [*] Dark Mode
[*] Nombre illimité de sauvegardes [*] Unlimited Waypoints
[*] Thème sombre [*] Unlimited Savegames
[*] Plus de paramètres de configuration [*] Additional settings
[*] Acheter la version complète m'aide à poursuivre le développement de shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Encore plus de fonctionnalités à l'avenir ! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Fonctionnalités planifiées & suggestions de la communauté[/b] [b]Future Updates[/b]
Ce jeu est open source - N'importe qui peut contribuer ! En outre, Je suis [b]très attentif[/b] à ce que dit la communauté ! J'essaie de lire toutes les suggestions et de tenir compte des retours autant que possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Mode Histoire où les batiments ont un coût en formes [*] Different maps and challenges (e.g. maps with obstacles)
[*] Plus de niveaux et de batiments (en exclusivité dans la version complète) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Différentes cartes, contenant éventuellement des obstacles [*] A story mode where buildings have a cost
[*] Création configurable de carte (éditer le nombre et la taille des gisements de resources, édition de la graine générant la carte, et plus encore) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Davantage de types de formes [*] Additional types of shapes
[*] Performance améliorée (bien que le jeu tourne déjà de manière tout à fait décente !) [*] Performance improvements (The game already runs pretty well!)
[*] Adaptation de l'affichage des couleurs à différentes formes de daltonisme [*] And much more!
[*] Et bien plus encore !
[/list] [/list]
N'hésitez pas à consulter mon tableau trello pour avoir une vue d'ensemble de ce qui est prévu ! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Chargement loading: Chargement
@ -132,28 +149,7 @@ mainMenu:
savegameLevel: Niveau <x> savegameLevel: Niveau <x>
savegameLevelUnknown: Niveau inconnu savegameLevelUnknown: Niveau inconnu
contests:
contest_01_03062020:
title: "Concours #01"
desc: Gagnez <strong>$25</strong> pour l'usine la plus cool !
longDesc: >-
Pour vous remercier, j'ai pensé qu'il serait bien de faire un concours hebdomadaire !
<br><br>
<strong>Le sujet de cette semaine:</strong> Construire l'usine la plus cool !
<br><br>
Voici comment faire:<br>
<ul class="bucketList">
<li>Envoyez une capture d'écran de votre usine à <strong>contest@shapez.io</strong></li>
<li>Vous aurez des points bonus si vous la partagez sur les réseaux sociaux !</li>
<li>Je choisirai 5 images et les soumettrai au vote à la communauté <strong>discord</strong>.</li>
<li>Le gagnant empoche <strong>$25</strong> (Paypal, carte cadeau Amazon, ce que vous préférez)</li>
<li>Limite: 07.06.2020 AM 12:00 CEST</li>
</ul>
<br>
J'attends avec impatience de voir vos superbes créations !
showInfo: Voir
contestOver: Ce concours est terminé - Rejoignez le serveur discord pour être tenu au courant des prochains concours !
continue: Continuer continue: Continuer
newGame: Nouvelle partie newGame: Nouvelle partie
madeBy: Créé par <author-link> madeBy: Créé par <author-link>
@ -262,6 +258,7 @@ dialogs:
createMarker: createMarker:
title: Nouvelle balise title: Nouvelle balise
desc: Donnez-lui un nom, vous pouvez aussi inclure <strong>le raccourci </strong> d'une forme (Que vous pouvez générer <a href="https://viewer.shapez.io" target="_blank">ici</a>) desc: Donnez-lui un nom, vous pouvez aussi inclure <strong>le raccourci </strong> d'une forme (Que vous pouvez générer <a href="https://viewer.shapez.io" target="_blank">ici</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Vous ne pouvez créer que deux balises dans la démo. Achetez la version complète pour en faire autant que vous voulez ! desc: Vous ne pouvez créer que deux balises dans la démo. Achetez la version complète pour en faire autant que vous voulez !
@ -271,6 +268,10 @@ dialogs:
desc: >- desc: >-
Vous avez demandé à exporter votre base sous la forme d'une capture d'écran. Soyez conscient que cela peut s'avérer passablement lent pour une grande base, voire même planter votre jeu ! Vous avez demandé à exporter votre base sous la forme d'une capture d'écran. Soyez conscient que cela peut s'avérer passablement lent pour une grande base, voire même planter votre jeu !
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -293,6 +294,7 @@ ingame:
copySelection: Copier copySelection: Copier
clearSelection: Effacer la sélection clearSelection: Effacer la sélection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: Blanc white: Blanc
uncolored: Non coloré uncolored: Non coloré
black: Black
shapeViewer: shapeViewer:
title: Calques title: Calques
empty: Vide empty: Vide
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -519,6 +523,27 @@ buildings:
deliver: Délivrez deliver: Délivrez
toUnlock: pour débloquer toUnlock: pour débloquer
levelShortcut: NV levelShortcut: NV
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -799,6 +824,11 @@ keybindings:
lockBeltDirection: Utiliser le plannificateur de convoyeurs lockBeltDirection: Utiliser le plannificateur de convoyeurs
switchDirectionLockSide: "Plannificateur: changer de côté" switchDirectionLockSide: "Plannificateur: changer de côté"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: À propos de ce jeu title: À propos de ce jeu

View File

@ -50,7 +50,6 @@
steamPage: steamPage:
# This is the short text appearing on the steam page # This is the short text appearing on the steam page
shortText: shapez.io je igra o izradi tvornica za automatizaciju stvaranja i spajanja sve složenijih oblika unutar beskonačno velike mape. shortText: shapez.io je igra o izradi tvornica za automatizaciju stvaranja i spajanja sve složenijih oblika unutar beskonačno velike mape.
# shapez.io is a game about building factories to automate the creation and combination of increasingly complex shapes within an infinite map.
# This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page. # This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page.
# NOTICE: # NOTICE:
@ -60,42 +59,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Žice! [*] Different maps and challenges (e.g. maps with obstacles)
[*] Story mode where buildings cost shapes [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] More levels & buildings (standalone exclusive) [*] A story mode where buildings have a cost
[*] Different maps, and maybe map obstacles [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Additional types of shapes
[*] More types of shapes [*] Performance improvements (The game already runs pretty well!)
[*] More performance improvements (Although the game already runs pretty good!)
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Učitavanje loading: Učitavanje
@ -168,29 +184,8 @@ mainMenu:
savegameLevel: Nivo <x> savegameLevel: Nivo <x>
savegameLevelUnknown: Nepoznati Nivo savegameLevelUnknown: Nepoznati Nivo
# TODO # TODO
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
dialogs: dialogs:
buttons: buttons:
@ -261,7 +256,7 @@ dialogs:
desc: >- desc: >-
Evo sve promjene od zadnjeg igranja: Evo sve promjene od zadnjeg igranja:
# TODO # TODO
upgradesIntroduction: upgradesIntroduction:
title: Otključaj Nadogradnje title: Otključaj Nadogradnje
desc: >- desc: >-
@ -295,6 +290,7 @@ dialogs:
createMarker: createMarker:
title: Novi Putokaz title: Novi Putokaz
desc: Daj mu smisleno ime. Može se uključiti i <strong>kratki kod</strong> oblika. (Koju možeš generirati <a href="https://viewer.shapez.io" target="_blank">ovdje</a>) desc: Daj mu smisleno ime. Može se uključiti i <strong>kratki kod</strong> oblika. (Koju možeš generirati <a href="https://viewer.shapez.io" target="_blank">ovdje</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: U demo verziji se mogu stvoriti samo dva putokaza istovremeno. Nabavi samostalnu igru za beskonačno mnogo putokaza! desc: U demo verziji se mogu stvoriti samo dva putokaza istovremeno. Nabavi samostalnu igru za beskonačno mnogo putokaza!
@ -302,6 +298,9 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Izvezi sliku zaslona title: Izvezi sliku zaslona
desc: Zatražen je izvoz cijele baze u obliku slike zaslone. Ovo može biti jako sporo za velike tvornice, a može i srušiti igru! desc: Zatražen je izvoz cijele baze u obliku slike zaslone. Ovo može biti jako sporo za velike tvornice, a može i srušiti igru!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -431,7 +430,7 @@ ingame:
hub: Središte hub: Središte
description: Klikni lijevim klikom na marker kako bi skočio na njegovu lokaciju, a izbriši ga desnim klikom. <br><br>Za stvaranje markera pritisni <keybinding>, ili <strong>desnim klikom</strong> stvori marker na odabranoj lokaciji. description: Klikni lijevim klikom na marker kako bi skočio na njegovu lokaciju, a izbriši ga desnim klikom. <br><br>Za stvaranje markera pritisni <keybinding>, ili <strong>desnim klikom</strong> stvori marker na odabranoj lokaciji.
creationSuccessNotification: Putokaz stvoren. creationSuccessNotification: Putokaz stvoren.
# Shape viewer # Shape viewer
shapeViewer: shapeViewer:
title: Slojevi title: Slojevi
@ -519,7 +518,7 @@ buildings:
quad: quad:
name: Rezač (Četverostruki) name: Rezač (Četverostruki)
description: Reže oblike u četiri dijela. <strong>Ako se koristi samo jedan dio, ostali se moraju uništiti da bi se spriječio zastoj!</strong> description: Reže oblike u četiri dijela. <strong>Ako se koristi samo jedan dio, ostali se moraju uništiti da bi se spriječio zastoj!</strong>
advanced_processor: advanced_processor:
default: default:
name: &advanced_processor Napredni Procesor name: &advanced_processor Napredni Procesor
@ -567,7 +566,7 @@ buildings:
storage: storage:
name: Skladište name: Skladište
description: Skladišti višak stvari do određenog kapaciteta. Može se koristiti kao zaštita od preljeva. description: Skladišti višak stvari do određenog kapaciteta. Može se koristiti kao zaštita od preljeva.
energy_generator: energy_generator:
deliver: Dostavi deliver: Dostavi
@ -577,6 +576,13 @@ buildings:
default: default:
name: &energy_generator Generator name: &energy_generator Generator
description: Proizvodi energiju iz oblika. Svaki generator zahtijeva različiti oblik. description: Proizvodi energiju iz oblika. Svaki generator zahtijeva različiti oblik.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -656,10 +662,6 @@ storyRewards:
desc: >- desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>! This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
reward_wires:
title: Žice
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Next level title: Next level
desc: >- desc: >-
@ -688,7 +690,7 @@ settings:
regular: Normalno regular: Normalno
large: Veliko large: Veliko
huge: Ogromno huge: Ogromno
autosaveInterval: autosaveInterval:
title: Interval Automatskog Spremanja title: Interval Automatskog Spremanja
description: >- description: >-
@ -814,7 +816,7 @@ keybindings:
buildings: Kratice Građevina buildings: Kratice Građevina
placementModifiers: Modifikatori Smještanja placementModifiers: Modifikatori Smještanja
#TODO #TODO
mappings: mappings:
confirm: Potvrdi confirm: Potvrdi
back: Nazad back: Nazad
@ -870,6 +872,7 @@ keybindings:
placementDisableAutoOrientation: Onemogući automatsku orijentaciju placementDisableAutoOrientation: Onemogući automatsku orijentaciju
placeMultiple: Ostani u modusu za smještanje placeMultiple: Ostani u modusu za smještanje
placeInverse: Obrni automatsku orijentaciju pokretnih traka placeInverse: Obrni automatsku orijentaciju pokretnih traka
menuClose: Close Menu
#TODO #TODO
about: about:
title: O Igri title: O Igri

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints [*] Dark Mode
[*] Végtelen mentések [*] Unlimited Waypoints
[*] Sötét Mód [*] Unlimited Savegames
[*] Több beállítás [*] Additional settings
[*] Lehetővé teszed, hogy tovább fejlesszem a shapez.io-t ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] More features in the future! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
Ez a játék nyílt forráskódú - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Sztori mód, ahol az épületek alakzatokba kerülnek [*] Different maps and challenges (e.g. maps with obstacles)
[*] Több szint és épület (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Különböző térképek, és talán akadályok [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Sokkal több alakzat [*] Additional types of shapes
[*] More performance improvements (Bár a játék így is elég jól fut!) [*] Performance improvements (The game already runs pretty well!)
[*] Színvak mód
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Betöltés loading: Betöltés
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: <x>. szint savegameLevel: <x>. szint
savegameLevelUnknown: Ismeretlen szint savegameLevelUnknown: Ismeretlen szint
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: Continue continue: Continue
newGame: New Game newGame: New Game
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -270,6 +267,10 @@ dialogs:
You requested to export your base as a screenshot. Please note that this can You requested to export your base as a screenshot. Please note that this can
be quite slow for a big base and even crash your game! be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Empty empty: Empty
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -516,6 +520,27 @@ buildings:
deliver: Deliver deliver: Deliver
toUnlock: to unlock toUnlock: to unlock
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -727,11 +752,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -799,6 +824,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: A játékról title: A játékról

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Caricamento loading: Caricamento
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Livello <x> savegameLevel: Livello <x>
savegameLevelUnknown: Livello sconosciuto savegameLevelUnknown: Livello sconosciuto
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: Mostra
contestOver: Questa competizione è conclusa - Unisciti su Discord per ricevere notizie sulle prossime competizioni!
continue: Continua continue: Continua
newGame: Nuova partita newGame: Nuova partita
madeBy: Creato da <author-link> madeBy: Creato da <author-link>
@ -198,77 +194,82 @@ dialogs:
Impossibile eliminare il salvataggio: Impossibile eliminare il salvataggio:
restartRequired: restartRequired:
title: Restart required title: Restart richiesto
text: >- text: >-
You need to restart the game to apply the settings. Per applicare le nuove impostazioni è necessario il Restart del gioco.
editKeybinding: editKeybinding:
title: Change Keybinding title: Cambia comandi
desc: Press the key or mouse button you want to assign, or escape to cancel. desc: Premi un nuovo tasto o un tasto del mouse a cui vuoi assegnare questo comando, Esc per cancellarlo.
resetKeybindingsConfirmation: resetKeybindingsConfirmation:
title: Reset keybindings title: Reset comandi assegnati
desc: This will reset all keybindings to their default values. Please confirm. desc: Così riporterai tutti comandi al loro stato di default. Perfavore conferma.
keybindingsResetOk: keybindingsResetOk:
title: Keybindings reset title: Successo nel reset dei comandi
desc: The keybindings have been reset to their respective defaults! desc: I comandi sono stati riassegnati ai loro rispettivi comandi di default!
featureRestriction: featureRestriction:
title: Demo Version title: Versione Demo
desc: You tried to access a feature (<feature>) which is not available in the demo. Consider to get the standalone for the full experience! desc: Hai provato ad accedere ad una feature (<feature>) che non è disponibile nella Demo. Considera di prendere la versione standalne per un'esperienza completa!
oneSavegameLimit: oneSavegameLimit:
title: Limited savegames title: Salvataggi limitati
desc: You can only have one savegame at a time in the demo version. Please remove the existing one or get the standalone! desc: Puoi avere solo un salvataggio nella versione Demo. Perfavore rimuovi il salvataggio già esistente o prendi la versione standalone!
updateSummary: updateSummary:
title: New update! title: Nuovo update!
desc: >- desc: >-
Here are the changes since you last played: Qui puoi trovare i cambiamenti dall'ultima volta che hai giocato:
upgradesIntroduction: upgradesIntroduction:
title: Unlock Upgrades title: Aggiornamenti sbloccati
desc: >- desc: >-
All shapes you produce can be used to unlock upgrades - <strong>Don't destroy your old factories!</strong> Tutte le forme che produci possono essere utilizzate per i miglioramenti - <strong>Non distruggere le tue vecchie fabbriche!</strong>
The upgrades tab can be found on the top right corner of the screen. Puoi trovare gli aggiornamenti nell'angolo in alto a destra dello schermo.
massDeleteConfirm: massDeleteConfirm:
title: Confirm delete title: Conferma la rimozione
desc: >- desc: >-
You are deleting a lot of buildings (<count> to be exact)! Are you sure you want to do this? Stai rimuovendo molte strutture (<count> to be exact)!
Sei sicuro di volerlo fare?
blueprintsNotUnlocked: blueprintsNotUnlocked:
title: Not unlocked yet title: Non ancora sbloccato
desc: >- desc: >-
Blueprints have not been unlocked yet! Complete more levels to unlock them. I progetti non sono stati ancora sbloccati! Completa più livelli per sbloccarli.
keybindingsIntroduction: keybindingsIntroduction:
title: Useful keybindings title: Comandi utili
desc: >- desc: >-
This game has a lot of keybindings which make it easier to build big factories. Questo gioco ha molti comandi utili che possono rendere più semplice la costruzione delle fabbriche.
Here are a few, but be sure to <strong>check out the keybindings</strong>!<br><br> Qui ce ne sono un paio, ma sii sicuro <strong>controlla i comandi</strong>!<br><br>
<code class='keybinding'>CTRL</code> + Drag: Select area to copy / delete.<br> <code class='keybinding'>CTRL</code> + Drag: Seleziona l'area da copiare / cancella.<br>
<code class='keybinding'>SHIFT</code>: Hold to place multiple of one building.<br> <code class='keybinding'>SHIFT</code>: Tieni premuto per costruire copie dalla struttura.<br>
<code class='keybinding'>ALT</code>: Invert orientation of placed belts.<br> <code class='keybinding'>ALT</code>: Invert l'orientamento dei nastri trasportatori.<br>
createMarker: createMarker:
title: New Marker title: Nuovo Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Dagli un magnifico nome, puoi anche includere <strong>short key</strong> di una figura (Che puoi generare <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: Puoi creare solo due Marker personalizzati nella Demo. Prendi la versione standalone per Marker personalizzati illimitati!
massCutConfirm: massCutConfirm:
title: Confirm cut title: Conferma taglio
desc: >- desc: >-
You are cutting a lot of buildings (<count> to be exact)! Are you sure you Stai tagliando molte strutture (<count> to be exact)!
want to do this? Sei sicuro di volerlo fare?
exportScreenshotWarning: exportScreenshotWarning:
title: Export screenshot title: Esportare screenshot
desc: >- desc: >-
You requested to export your base as a screenshot. Please note that this can Hai richiesto di esportare la tua base come screenshot. Perfavore tieni conto che potrebbe
be quite slow for a big base and even crash your game! essere lento per una grossa base e che potrebbe crushare il gioco!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -292,45 +293,46 @@ ingame:
copySelection: Copia copySelection: Copia
clearSelection: Annulla selezione clearSelection: Annulla selezione
pipette: Contagocce pipette: Contagocce
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
buildingPlacement: buildingPlacement:
# Buildings can have different variants which are unlocked at later levels, # Buildings can have different variants which are unlocked at later levels,
# and this is the hint shown when there are multiple variants available. # and this is the hint shown when there are multiple variants available.
cycleBuildingVariants: Press <key> to cycle variants. cycleBuildingVariants: Premi <key> per cambiare variante.
# Shows the hotkey in the ui, e.g. "Hotkey: Q" # Shows the hotkey in the ui, e.g. "Hotkey: Q"
hotkeyLabel: >- hotkeyLabel: >-
Hotkey: <key> Hotkey: <key>
infoTexts: infoTexts:
speed: Speed speed: Velocità
range: Range range: Raggio
storage: Storage storage: Spazio
oneItemPerSecond: 1 oggetto / secondo oneItemPerSecond: 1 oggetto / secondo
itemsPerSecond: <x> oggetti / s itemsPerSecond: <x> oggetti / s
itemsPerSecondDouble: (x2) itemsPerSecondDouble: (x2)
tiles: <x> tiles tiles: <x> titles
# The notification when completing a level # The notification when completing a level
levelCompleteNotification: levelCompleteNotification:
# <level> is replaced by the actual level, so this gets 'Level 03' for example. # <level> is replaced by the actual level, so this gets 'Level 03' for example.
levelTitle: Level <level> levelTitle: Livello <level>
completed: Completed completed: Completato
unlockText: Unlocked <reward>! unlockText: Sbloccato <reward>!
buttonNextLevel: Next Level buttonNextLevel: Prossimo livello
# Notifications on the lower right # Notifications on the lower right
notifications: notifications:
newUpgrade: A new upgrade is available! newUpgrade: U nuovo aggiornamento è disponibile!
gameSaved: Your game has been saved. gameSaved: La tua partita è stata salvata.
# The "Upgrades" window # The "Upgrades" window
shop: shop:
title: Upgrades title: Aggiornamenti
buttonUnlock: Upgrade buttonUnlock: Sblocca
# Gets replaced to e.g. "Tier IX" # Gets replaced to e.g. "Tier IX"
tier: Tier <x> tier: Tier <x>
@ -338,11 +340,11 @@ ingame:
# The roman number for each tier # The roman number for each tier
tierLabels: [I, II, III, IV, V, VI, VII, VIII, IX, X] tierLabels: [I, II, III, IV, V, VI, VII, VIII, IX, X]
maximumLevel: MAXIMUM LEVEL (Speed x<currentMult>) maximumLevel: LIVELLO MASSIMO (Speed x<currentMult>)
# The "Statistics" window # The "Statistics" window
statistics: statistics:
title: Statistics title: Statistiche
dataSources: dataSources:
stored: stored:
title: Immagazzinati title: Immagazzinati
@ -407,9 +409,11 @@ ingame:
cyan: Azzurro cyan: Azzurro
white: Bianco white: Bianco
uncolored: No colore uncolored: No colore
black: Black
shapeViewer: shapeViewer:
title: Livelli title: Livelli
empty: Vuoto empty: Vuoto
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +521,27 @@ buildings:
deliver: Consegna deliver: Consegna
toUnlock: per sbloccare toUnlock: per sbloccare
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -728,11 +753,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -800,6 +825,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Riguardo questo gioco title: Riguardo questo gioco

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.ioは形の作成と合成を自動化するために工場を構築するゲームです。段々と複雑になる要件を納品していくことでゲームをすすめ、工場を高速化するためのアップグレードを解除していきます。 shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
要件が増えてくると、ニーズに合わせて工場をスケールアップしていく必要があるでしょう。もちろん、[b]無限のマップ[/b]に展開する資源採取の拡張もお忘れなく! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
形状だけではすぐに飽きがきますが、色素を混ぜて形を塗る工程もあります。赤、緑、青の色素の資源を組み合わせて、要件を満たす色と形状を作り出しましょう。 Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
このゲームは現在18レベルまでが実装されていますがこれだけでもかなりのボリュームです、今後も継続的に新しい要素が追加で実装されていく予定です。 - すでに沢山計画されています! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Web版にはないスタンドアローン版のメリット[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] マップのマーク設置とマークへの移動 [*] Dark Mode
[*] 無制限のセーブデータ [*] Unlimited Waypoints
[*] ダークモード [*] Unlimited Savegames
[*] 多彩な設定 [*] Additional settings
[*] shapez.ioのさらなる開発ができます ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] 将来の追加内容実装 [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]今後の実装予定とコミュニティの提案[/b] [b]Future Updates[/b]
このゲームはオープンソースです。誰でも開発に参加できます! それ以外にも、私はコミュニティの意見を[b]とても[/b]よく聞いており、なるべくすべての提案を読み、できるだけ多くのフィードバックを考慮に入れるようにしています。 I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] 建造物にコストがかかるストーリーモード [*] Different maps and challenges (e.g. maps with obstacles)
[*] 追加のレベル、及び建造物(スタンドアローン版限定) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] 別マップ、もしかすると障害物 [*] A story mode where buildings have a cost
[*] 設定可能なマップ生成(数やサイズの設定、ランダム生成シード値、その他) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] 追加の形 [*] Additional types of shapes
[*] パフォーマンス向上(このゲームは現状でもかなり軽いです) [*] Performance improvements (The game already runs pretty well!)
[*] 色覚異常モード [*] And much more!
[*] 他にも沢山!
[/list] [/list]
完全なロードマップは私のTrelloボードをチェックしてみてください https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: ロード中 loading: ロード中
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: レベル <x> savegameLevel: レベル <x>
savegameLevelUnknown: 不明なレベル savegameLevelUnknown: 不明なレベル
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: 続きから continue: 続きから
newGame: 新規ゲーム newGame: 新規ゲーム
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -253,6 +249,7 @@ dialogs:
createMarker: createMarker:
title: マーカーを設置 title: マーカーを設置
titleEdit: マーカーを編集
desc: わかりやすい名前をつけてください。形を表す<strong>短いキー</strong>を含めることもできます。(<a href="https://viewer.shapez.io" target="_blank">ここ</a>から生成できます) desc: わかりやすい名前をつけてください。形を表す<strong>短いキー</strong>を含めることもできます。(<a href="https://viewer.shapez.io" target="_blank">ここ</a>から生成できます)
markerDemoLimit: markerDemoLimit:
@ -296,6 +293,7 @@ ingame:
copySelection: コピー copySelection: コピー
clearSelection: 選択範囲をクリア clearSelection: 選択範囲をクリア
pipette: ピペット pipette: ピペット
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -411,9 +409,11 @@ ingame:
cyan: シアン cyan: シアン
white: white:
uncolored: 無色 uncolored: 無色
black: Black
shapeViewer: shapeViewer:
title: レイヤー title: レイヤー
empty: empty:
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -521,6 +521,27 @@ buildings:
storage: storage:
name: 格納庫 name: 格納庫
description: 余ったアイテムを指定の上限まで格納します。余剰の受け口としても使用可能です。 description: 余ったアイテムを指定の上限まで格納します。余剰の受け口としても使用可能です。
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -728,11 +749,11 @@ settings:
title: 色覚モード title: 色覚モード
description: 色覚異常を持っていてもゲームがプレイできるようにするための各種ツールを有効化します。 description: 色覚異常を持っていてもゲームがプレイできるようにするための各種ツールを有効化します。
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: キー設定 title: キー設定
@ -801,6 +822,10 @@ keybindings:
lockBeltDirection: ベルトプランナーを有効化 lockBeltDirection: ベルトプランナーを有効化
switchDirectionLockSide: "プランナー: 通る側を切り替え" switchDirectionLockSide: "プランナー: 通る側を切り替え"
pipette: ピペット pipette: ピペット
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: このゲームについて title: このゲームについて

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io는 다양한 도형의 생산과 조합을 자동화하는 공장들을 짓는 게임입니다. 점점 복잡해지는 요구사항을 충족하고 업그레이드를 잠금 해제해서 공장의 성능을 높일 수 있습니다. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
점점 증가하는 수요를 충족하기 위해 공장의 규모를 키워야 합니다. [b]무한한 공간[/b]으로 확장하여 도형 재료를 구하는 것도 잊지 마세요. As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
단순한 도형은 금방 싫증이 나므로, 색을 조합하여 도형을 색칠하세요. 빨강, 초록, 파랑을 조합하여 다양한 색을 만들고 도형을 색칠하여 요구사항을 충족하세요. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
이 게임에는 18개의 레벨이 있습니다. (이것만으로도 이미 몇시간이 걸렸을 거예요!) 하지만 저는 항상 새로운 컨텐츠를 추가하고 있습니다. 계획해 놓은 것들도 많구요! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]유료 버전의 장점[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] 마커 [*] Dark Mode
[*] 제한 없는 저장 [*] Unlimited Waypoints
[*] 다크 모드 [*] Unlimited Savegames
[*] 더 다양한 설정 [*] Additional settings
[*] 제가 shapez.io를 개발하는 데 도움이 됨 ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] 향후 더 많은 컨텐츠 [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b] 예정된 컨탠츠 및 커뮤니티 제안[/b] [b]Future Updates[/b]
이 게임은 오픈 소스입니다. 따라서 누구나 기여할 수 있습니다! 또한, 커뮤니티의 제안을 [b]많이[/b] 듣고 있습니다! 가능한 많이 읽고 많이 반영하도록 노력하겠습니다. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] 건물을 도형으로 구매해야 돼는 스토리 모드 [*] Different maps and challenges (e.g. maps with obstacles)
[*] 더 많은 레벨과 건물 (유료 버전 한정) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] 다양한 월드와 맵 장애물 [*] A story mode where buildings have a cost
[*] 당신만의 맵 제작 [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] 더 많은 종류의 도형 [*] Additional types of shapes
[*] 성능 향상 (지금도 게임이 잘 되긴 합니다!) [*] Performance improvements (The game already runs pretty well!)
[*] 색맹자용 모드 [*] And much more!
[*] 그 외 다수!
[/list] [/list]
저의 트렐로 보드를 확인해서 로드맵을 확인해보세요! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: 로딩중 loading: 로딩중
@ -130,29 +147,7 @@ mainMenu:
savegameLevel: 레벨 <x> savegameLevel: 레벨 <x>
savegameLevelUnknown: 레벨 모름 savegameLevelUnknown: 레벨 모름
contests:
contest_01_03062020:
title: "콘테스트 #01"
desc: 가장 멋진 공장을 지으신 분에게 <strong>$25</strong>를 !
longDesc: >-
여러분들에게 무언가를 나눠드리고 싶어서 주간 콘테스트를 개최합니다!
<br><br>
<strong>이번주 토픽:</strong> 가장 멋있는 공장을 만드세요!
<br><br>
참여하는 법:<br>
<ul class="bucketList">
<li>여러분 공장의 스크린샷을 여기로 보내세요: <strong>contest@shapez.io</strong></li>
<li>소셜 미디어에 공유하면 보너스 포인트!</li>
<li>스크린샷 5개를 골라 <strong>디스코드 </strong> 커뮤니티에서 투표를 진행할 예정입니다.</li>
<li>우승자는 <strong>$25</strong>를 받습니다! (PayPal이나 아마존 기프트 카드 중 원하는 것으로)</li>
<li>기한: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
당신들의 멋진 공장을 보고 싶습니다!
showInfo: 보기
contestOver: 이 콘테스트는 끝났습니다. 디스코드에서 새로운 콘테스트 관련 알림을 받으세요!
continue: 계속하기 continue: 계속하기
newGame: 새 게임 newGame: 새 게임
madeBy: 제작 <author-link> madeBy: 제작 <author-link>
@ -260,6 +255,7 @@ dialogs:
createMarker: createMarker:
title: 새로운 마커 title: 새로운 마커
desc: 이 장소에 이름을 지어주세요, 당신은 원하는 모양으로 <strong>단축키</strong>를 생성할 수 있습니다. (<a href="https://viewer.shapez.io" target="_blank">여기</a>에서 만들 수 있습니다.) desc: 이 장소에 이름을 지어주세요, 당신은 원하는 모양으로 <strong>단축키</strong>를 생성할 수 있습니다. (<a href="https://viewer.shapez.io" target="_blank">여기</a>에서 만들 수 있습니다.)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: 데모 버전에서는 마커를 2개 까지만 놓을 수 있습니다. 유료 버전을 구입하면 마커를 무제한으로 놓을 수 있습니다! desc: 데모 버전에서는 마커를 2개 까지만 놓을 수 있습니다. 유료 버전을 구입하면 마커를 무제한으로 놓을 수 있습니다!
@ -270,6 +266,10 @@ dialogs:
당신은 당신의 공장을 스크린샷으로 내보내려 하고있습니다. 공장이 너무 큰 경우에는 당신은 당신의 공장을 스크린샷으로 내보내려 하고있습니다. 공장이 너무 큰 경우에는
시간이 오래 걸리거나 게임이 꺼질 수도 있음을 알려드립니다! 시간이 오래 걸리거나 게임이 꺼질 수도 있음을 알려드립니다!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +292,7 @@ ingame:
copySelection: 선택된 부분 복사하기 copySelection: 선택된 부분 복사하기
clearSelection: 선택된 부분 지우기 clearSelection: 선택된 부분 지우기
pipette: 스포이드 pipette: 스포이드
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +408,11 @@ ingame:
cyan: 청록 cyan: 청록
white: 하양 white: 하양
uncolored: uncolored:
black: Black
shapeViewer: shapeViewer:
title: title:
empty: 비었음 empty: 비었음
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +520,27 @@ buildings:
storage: storage:
name: 저장소 name: 저장소
description: 할당된 용량만큼 초과되는 도형을 저장한다. description: 할당된 용량만큼 초과되는 도형을 저장한다.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -798,6 +822,11 @@ keybindings:
lockBeltDirection: 벨트 플래너 활성화 lockBeltDirection: 벨트 플래너 활성화
switchDirectionLockSide: "플래너: 방향 바꾸기" switchDirectionLockSide: "플래너: 방향 바꾸기"
pipette: 피펫 pipette: 피펫
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: 이 게임의 정보 title: 이 게임의 정보

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Loading loading: Loading
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: Continue continue: Continue
newGame: New Game newGame: New Game
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -270,6 +267,10 @@ dialogs:
You requested to export your base as a screenshot. Please note that this can You requested to export your base as a screenshot. Please note that this can
be quite slow for a big base and even crash your game! be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Empty empty: Empty
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +521,27 @@ buildings:
storage: storage:
name: Storage name: Storage
description: Stores excess items, up to a given capacity. Can be used as an overflow gate. description: Stores excess items, up to a given capacity. Can be used as an overflow gate.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -727,11 +752,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -799,6 +824,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: About this Game title: About this Game

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is een spel dat draait om het bouwen van fabrieken om steeds complexere vormen te produceren en deze productie te automatiseren. Lever de gevraagde, steeds complexere vormen, om verder te komen in het spel en om upgrades voor je fabrieken te ontgrendelen. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
De vraag naar vormen wordt steeds groter, wat betekent dat je fabriek moet blijven uitbreiden om dit tegemoet te komen. Om de juiste grondstoffen te delven zul je steeds verder in het [b]oneindig grote speelveld[/b] moeten gaan werken! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Omdat simpele vormen snel saai worden, moet je kleuren mengen om de vormen te verven - combineer rode, groene en blauwe grondstoffen om verschillende kleuren te produceren en gebruik deze om de vormen te verven, zodat je de vraag hiernaar tegemoet kan komen. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Dit spel bevat 18 levels (Waar je al uren mee bezig zal zijn!), maar ik ben continu bezig om het spel uit te breiden - er staat veel in de planning! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone voordelen[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Markeringen [*] Dark Mode
[*] Oneindig veel Savegames [*] Unlimited Waypoints
[*] Donkere modus [*] Unlimited Savegames
[*] Meer opties [*] Additional settings
[*] Met jouw steun kan ik shapez.io verder ontwikkelen ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Meer functies in de toekomst! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Geplande functies & suggesties van de community[/b] [b]Future Updates[/b]
Dit spel is open source - Iedereen kan bijdragen! Daarnaast luister ik [b]erg veel[/b] naar de community! Ik probeer alle suggesties te lezen en gebruik feedback zo veel als mogelijk. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Verhaalmodus, waar gebouwen specifieke vormen kosten om te bouwen [*] Different maps and challenges (e.g. maps with obstacles)
[*] Meer levels & gebouwen (exclusief in de standalone) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Verschillende mappen en misschien obstakels in mappen [*] A story mode where buildings have a cost
[*] Aangepaste mappen aanmaken (Het kiezen van de hoeveelheid en de grootte van de grondstofbronnen, seeds, en meer) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Meer soorten vormen [*] Additional types of shapes
[*] Meer prestatieverbeteringen (Hoewel het spel al vrij goed loopt!) [*] Performance improvements (The game already runs pretty well!)
[*] Kleurenblindmodus [*] And much more!
[*] En nog veel meer!
[/list] [/list]
Bekijk mijn trello-bord voor het volledige stappenplan! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Laden loading: Laden
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Onbekend Level savegameLevelUnknown: Onbekend Level
contests:
contest_01_03062020:
title: "Competitie #01"
desc: Win <strong>$25</strong> voor de meest coole basis!
longDesc: >-
Om wat aan jullie terug te geven leek het me leuk om wekelijkse competities te houden!
<br><br>
<strong>Het onderwerp van deze week:</strong> Bouw de meest coole basis!
<br><br>
Dit is hoe het zit:<br>
<ul class="bucketList">
<li>Stuur een screenshot van jouw basis naar <strong>contest@shapez.io</strong></li>
<li>Bonuspunten als je het deelt op social media!</li>
<li>Ik kies 5 screenshots en presenteer deze aan de <strong>discord</strong> community om te stemmen.</li>
<li>De winnaar krijgt <strong>$25</strong> (Paypal, Amazon Gift Card, wat jij het liefste hebt)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Ik kijk er naar uit om jullie geweldige creaties te zien!
showInfo: Laat zien
contestOver: Deze competitie is voorbij - word lid van de discord (engelstalig) om berichten te krijgen van nieuwe competities!
continue: Verder continue: Verder
newGame: Nieuw Spel newGame: Nieuw Spel
madeBy: Gemaakt door <author-link> madeBy: Gemaakt door <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Nieuwe markering title: Nieuwe markering
desc: Geef het een betekenisvolle naam. Je kunt ook een <strong>icoontje</strong> van een vorm toevoegen (die je <a href="https://viewer.shapez.io" target="_blank">hier</a> kunt maken) desc: Geef het een betekenisvolle naam. Je kunt ook een <strong>icoontje</strong> van een vorm toevoegen (die je <a href="https://viewer.shapez.io" target="_blank">hier</a> kunt maken)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Je kunt maar twee markeringen plaatsen in de demo. Koop de standalone voor een ongelimiteerde hoeveelheid markeringen! desc: Je kunt maar twee markeringen plaatsen in de demo. Koop de standalone voor een ongelimiteerde hoeveelheid markeringen!
@ -268,6 +265,10 @@ dialogs:
desc: >- desc: >-
Je hebt aangegeven dat je jouw basis wil exporteren als screenshot. Als je een grote basis hebt kan dit proces langzaam zijn en er zelfs voor zorgen dat je spel crasht! Je hebt aangegeven dat je jouw basis wil exporteren als screenshot. Als je een grote basis hebt kan dit proces langzaam zijn en er zelfs voor zorgen dat je spel crasht!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -290,6 +291,7 @@ ingame:
copySelection: Kopieer copySelection: Kopieer
clearSelection: Cancel selectie clearSelection: Cancel selectie
pipette: Pipet pipette: Pipet
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -405,9 +407,11 @@ ingame:
cyan: Cyaan cyan: Cyaan
white: Wit white: Wit
uncolored: Geen kleur uncolored: Geen kleur
black: Black
shapeViewer: shapeViewer:
title: Lagen title: Lagen
empty: Leeg empty: Leeg
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -515,6 +519,27 @@ buildings:
deliver: Lever deliver: Lever
toUnlock: om te ontgrendelen toUnlock: om te ontgrendelen
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -727,8 +752,8 @@ settings:
rotationByBuilding: rotationByBuilding:
title: Rotatie per type gebouw title: Rotatie per type gebouw
description: >- description: >-
Elk type gebouw onthoud apart de rotatie waarin je het voor het laatst geplaatst hebt. Elk type gebouw onthoud apart de rotatie waarin je het voor het laatst geplaatst hebt.
Dit kan handig zijn wanneer je vaak tussen verschillende Dit kan handig zijn wanneer je vaak tussen verschillende
soorten gebouwen wisselt. soorten gebouwen wisselt.
keybindings: keybindings:
@ -797,6 +822,11 @@ keybindings:
lockBeltDirection: Schakel lopende band-planner in lockBeltDirection: Schakel lopende band-planner in
switchDirectionLockSide: "Planner: Wissel van richting" switchDirectionLockSide: "Planner: Wissel van richting"
pipette: Pipet pipette: Pipet
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Over dit spel title: Over dit spel

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io er et spill som handler om å bygge fabrikker for å automatisere byggeprosessen og kombinere forskjellige former og fasonger. Lever objektene som øker i kompleskitet og fasonger for å progressere i spillet og åpne opp nye oppgraderinger til din fabrikk. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Siden forespørselen øker, må du skalere opp fabrikken din for å tilpasse deg til behovet - Men ikke glem tilgangen du har til ressurser, du må utvide på det [b]uendelige brettet[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Siden figurer i seg selv kan bli kjedelig, må du snart mikse farger og fargelegge dine figurer - Kombiner rød, grønn og blå farge-ressurser for å produsere forskjellige farger, og fargelegg figurene for å tilfredsstille behovet. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Spillet har 18 nivåer (Som bør holde deg opptatt i mange timer!) men jeg legger konstant til nytt innhold - Det er mye som er planlagt! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Frittstående Fordeler[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Kartmarkering [*] Dark Mode
[*] Uendelige lagringsfiler [*] Unlimited Waypoints
[*] Mørk Modus [*] Unlimited Savegames
[*] Flere instillinger [*] Additional settings
[*] Tillater meg å videreutvikle shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Flere funksjoner i fremtiden! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planlagte funksjoner & Forslag fra samfunnet[/b] [b]Future Updates[/b]
Spillet er åpen kildekode - Alle kan bidra! Utenom det, så lytter jeg [b]veldig[/b] til samfunnet! Jeg prøver å lese alle forslag og ta imot så mye tilbakemeldinger som mulig. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Kampanje [*] Different maps and challenges (e.g. maps with obstacles)
[*] Flere nivåer & bygninger (Frittstående eksklusivt) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Forskjellige brett, og kanskje hinder på brettet [*] A story mode where buildings have a cost
[*] Konfigurerbart brett-generasjon (Endre antall og størrelse på ressursfelt, seed, med mer) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Flere forskjellige type former [*] Additional types of shapes
[*] Mer forbedring av ytelse (Selv om spillet allerede kjører ganske bra!) [*] Performance improvements (The game already runs pretty well!)
[*] Fargeblind modus [*] And much more!
[*] Og mye mer!
[/list] [/list]
Sjekk ut min trello tavle for hele planen! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Laster loading: Laster
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Nivå <x> savegameLevel: Nivå <x>
savegameLevelUnknown: Ukjent Nivå savegameLevelUnknown: Ukjent Nivå
contests:
contest_01_03062020:
title: "Konkurranse #01"
desc: Vinn <strong>$25</strong> for den kuleste basen!
longDesc: >-
For å gi noe tilbake til deg, tenkte jeg det ville vært kult med ukentlige konkurranser!
<br><br>
<strong>Denne ukens tema:</strong> Bygg den kuleste basen!
<br><br>
Her er tingen:<br>
<ul class="bucketList">
<li>Send et skjermbilde av basen din til <strong>contest@shapez.io</strong></li>
<li>Bonus poeng om du deler på sosiale medier!</li>
<li>Jeg velger 5 skjermbilder og foreslår de på <strong>discord</strong> for samfunnet til å stemme.</li>
<li>Vinneren får <strong>$25</strong> (Paypal, Amazon Gift Card, eller hva du foretrekker)</li>
<li>Frist: 07.06.2020 00:00 Sentraleuropeisk sommertid</li>
</ul>
<br>
Jeg ser fram til å se dine kule skapninger!
showInfo: Vis
contestOver: Denne konkurransen er ferdig - Bli med på discord for å få varsel om nye konkurranser!
continue: Fortsett continue: Fortsett
newGame: Nytt Spill newGame: Nytt Spill
madeBy: Laget av <author-link> madeBy: Laget av <author-link>
@ -260,6 +256,7 @@ dialogs:
createMarker: createMarker:
title: Ny Markør title: Ny Markør
desc: Gi markøren et meningsfullt navn, du kan også inkludere <strong>"short key"</strong> av et objekt (Som du kan generere <a href="https://viewer.shapez.io" target="_blank">her</a>) desc: Gi markøren et meningsfullt navn, du kan også inkludere <strong>"short key"</strong> av et objekt (Som du kan generere <a href="https://viewer.shapez.io" target="_blank">her</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Du kan kun ha to markører i demo verjsonen. Skaff deg frittstående versjon for ubegrensede markører! desc: Du kan kun ha to markører i demo verjsonen. Skaff deg frittstående versjon for ubegrensede markører!
@ -267,6 +264,9 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Eksporter skjermbilde title: Eksporter skjermbilde
desc: Du forespurte å eksportere bilde av basen din som et skjermbilde. Vær obs på at dette kan ta lang tid for en stor base, og i verste fall kræsje spillet ditt (Husk å lagre først)! desc: Du forespurte å eksportere bilde av basen din som et skjermbilde. Vær obs på at dette kan ta lang tid for en stor base, og i verste fall kræsje spillet ditt (Husk å lagre først)!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
@ -290,6 +290,7 @@ ingame:
copySelection: Kopier copySelection: Kopier
clearSelection: Fjern Valgte clearSelection: Fjern Valgte
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -405,9 +406,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: Hvit white: Hvit
uncolored: Ingen farge uncolored: Ingen farge
black: Black
shapeViewer: shapeViewer:
title: Lag title: Lag
empty: Tom empty: Tom
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -515,6 +518,27 @@ buildings:
storage: storage:
name: Lagringsboks name: Lagringsboks
description: Lagrer overflødige objekter, opp til en viss kapasitet. Kan bli brukt som mellomlagring for overflyt. description: Lagrer overflødige objekter, opp til en viss kapasitet. Kan bli brukt som mellomlagring for overflyt.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -727,11 +751,11 @@ settings:
title: Fargeblind Modus title: Fargeblind Modus
description: Aktiverer forskjellige verktøy som lar deg spille spillet om du er fargeblind. description: Aktiverer forskjellige verktøy som lar deg spille spillet om du er fargeblind.
rotationByBuilding: rotationByBuilding:
title: Roter basert på bygningstype title: Roter basert på bygningstype
description: >- description: >-
Hver bygning type husker rotasjonen du sist brukte individuelt. Hver bygning type husker rotasjonen du sist brukte individuelt.
Dette kan være mer komfortabelt hvis du ofte veksler mellom plassering Dette kan være mer komfortabelt hvis du ofte veksler mellom plassering
av forskjellige bygninger. av forskjellige bygninger.
keybindings: keybindings:
title: Hurtigtaster title: Hurtigtaster
@ -799,6 +823,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planlegger: Bytt side" switchDirectionLockSide: "Planlegger: Bytt side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Om dette spillet title: Om dette spillet

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io jest grą o budowaniu i automatyzacji fabryki różnych kształtów. Dostarczaj coraz bardziej skomplikowane kształty, żeby odblokować nowe ulepszenia i przyspieszyć produkcję w twojej fabryce. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Będziesz potrzebował coraz więcej elementów, więc również sporo miejsca na powiększanie fabryki. [b]Nieskończona mapa[/b] to coś co ułatwi Ci ten proces! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Same kształty mogą z czasem być nudne, dlatego gra będzie wymagała od Ciebie malowania ich różnymi kolorami - połącz czerwoną, zieloną i niebieską farbę, a powstanie nowa o innym kolorze. Korzystaj z farb, by móc ukończyć kolejne poziomy. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Na tę chwilę gra oferuje 18 poziomów (które powinny zagwarantować rozrywkę na co najmniej kilka godzin!), ale bez przerwy dodaję nowe - jest naprawdę wiele do dodania! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Zalety pełnej wersji[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Znaczniki [*] Dark Mode
[*] Nielimitowana ilość zapisanych gier [*] Unlimited Waypoints
[*] Ciemny motyw gry [*] Unlimited Savegames
[*] Więcej ustawień [*] Additional settings
[*] Pomożesz mi w dalszym rozwijaniu shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Więcej zawartości niedługo! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Zaplanowana zawartość & Sugestie społeczności[/b] [b]Future Updates[/b]
Ta gra jest open-source - Każdy może pomóc w rozwoju! Poza tym słucham tego, co społeczność ma do powiedzenia w kwestii gry! Staram się czytać wszystkie sugestie i odbierać jak najwięcej informacji zwrotnych na temat gry. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Kampania, gdzie do budowy potrzeba kształtów [*] Different maps and challenges (e.g. maps with obstacles)
[*] Więcej poziomów i budynków (tylko w pełnej wersji) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Inne mapy, może z przeszkodami [*] A story mode where buildings have a cost
[*] Możliwość modyfikowania parametrów generowanej mapy (ilość i rozmiar surowców, ziarno świata, itd.) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Więcej rodzajów kształtów [*] Additional types of shapes
[*] Optymalizacja (mimo wszystko gra już działa dość płynnie!) [*] Performance improvements (The game already runs pretty well!)
[*] Tryb dla ślepoty barw [*] And much more!
[*] I wiele więcej!
[/list] [/list]
Sprawdź tablicę trello i zobacz nad czym teraz pracuję! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Ładowanie loading: Ładowanie
@ -136,29 +153,7 @@ mainMenu:
savegameLevel: Poziom <x> savegameLevel: Poziom <x>
savegameLevelUnknown: Nieznany poziom savegameLevelUnknown: Nieznany poziom
contests:
contest_01_03062020:
title: "Konkurs #01"
desc: Wygraj <strong>25$</strong> za najciekawszą bazę!
#Translator note: We don't use AM/PM, we mainly use 24 hour clock system, older generations use 12h
longDesc: >-
Żeby dać wam coś od siebie, pomyślałem, że było by fajnie robić tygodniowe konkursy!
<br><br>
<strong>Temat tego tygodnia:</strong> Zbuduj najciekawszą fabrykę!
<br><br>
Zasady:<br>
<ul class="bucketList">
<li>Wyślij zrzut ekranu fabryki na adres <strong>contest@shapez.io</strong></li>
<li>Dodatkowe punkty za udostępnianie na mediach społecznościowych!</li>
<li>Wybiorę 5 najlepszych moim zdaniem projektów i pozwolę społeczności <strong>discord</strong> głosować.</li>
<li>Wygrany dostaje <strong>$25</strong> (Paypal, Amazon Gift Card, którekolwiek wolisz).</li>
<li>Termin: 07.06.2020 12:00 CEST</li>
</ul>
<br>
Nie mogę się doczekać, by zobaczyć Wasze fabryki!
showInfo: Wyświetl
contestOver: Ten konkurs już się skończył - Dołącz do serwera Discord by nie przegapić kolejnych!
madeBy: Gra wykonana przez <author-link> madeBy: Gra wykonana przez <author-link>
subreddit: Reddit subreddit: Reddit
@ -259,6 +254,7 @@ dialogs:
createMarker: createMarker:
title: Nowy Znacznik title: Nowy Znacznik
desc: Podaj nazwę znacznika. Możesz w niej zawrzeć <strong>kod kształtu</strong>, który możesz wygenerować <a href="https://viewer.shapez.io" target="_blank">tutaj</a>. desc: Podaj nazwę znacznika. Możesz w niej zawrzeć <strong>kod kształtu</strong>, który możesz wygenerować <a href="https://viewer.shapez.io" target="_blank">tutaj</a>.
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Możesz stworzyć tylko dwa własne znaczniki w wersji demo. Zakup pełną wersję gry dla nielimitowanych znaczników! desc: Możesz stworzyć tylko dwa własne znaczniki w wersji demo. Zakup pełną wersję gry dla nielimitowanych znaczników!
@ -275,6 +271,10 @@ dialogs:
fabryki ta akcja może być bardzo wolna, a nawet może spowodować zawieszenie się lub awarię gry! fabryki ta akcja może być bardzo wolna, a nawet może spowodować zawieszenie się lub awarię gry!
Czy na pewno chcesz kontynuować? Czy na pewno chcesz kontynuować?
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -297,6 +297,7 @@ ingame:
copySelection: Skopiuj copySelection: Skopiuj
clearSelection: Wyczyść zaznaczenie clearSelection: Wyczyść zaznaczenie
pipette: Wybierz obiekt z mapy pipette: Wybierz obiekt z mapy
switchLayers: Switch layers
# Names of the colors, used for the color blind mode # Names of the colors, used for the color blind mode
colors: colors:
@ -308,6 +309,7 @@ ingame:
cyan: Cyjanowy cyan: Cyjanowy
white: Biały white: Biały
uncolored: Brak koloru uncolored: Brak koloru
black: Black
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -410,6 +412,7 @@ ingame:
shapeViewer: shapeViewer:
title: Poziomy title: Poziomy
empty: Puste empty: Puste
copyKey: Copy Key
# Interactive tutorial # Interactive tutorial
interactiveTutorial: interactiveTutorial:
@ -529,6 +532,27 @@ buildings:
storage: storage:
name: Magazyn name: Magazyn
description: Magazynuje obiekty, do określonego limitu. Może zostać użyty jako bramka przepełnienia. description: Magazynuje obiekty, do określonego limitu. Może zostać użyty jako bramka przepełnienia.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -753,11 +777,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Klawiszologia title: Klawiszologia
@ -825,6 +849,11 @@ keybindings:
switchDirectionLockSide: >- switchDirectionLockSide: >-
Planowanie taśmociągu: Zmień stronę Planowanie taśmociągu: Zmień stronę
pipette: Wybieranie obiektów z mapy pipette: Wybieranie obiektów z mapy
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: O Grze title: O Grze

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io é um jogo sobre construir fábricas para automatizar a criação e combinação de formas. Entregue formas cada vez mais complexas pedidas pelo jogo para progredir e desbloquear melhorias que aceleram sua fábrica. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Como a demanda é crescente, será necessário dimensionar uma fábrica que atenda a necessidade - Não se esqueça dos recursos à sua disposição, você poderá expandir em um [b]mapa infinito[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Formas podem ficar entediantes por si só, logo você terá que misturar cores e pintá-las - Combine os recursos vermelho, verde e azul para produzir cores diferentes e pintar as formas com elas pra atender a demanda. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Esse jogo apresenta 18 níveis (que já devem mantê-lo ocupado por horas!) mas estou constantemente adicionado conteúdo novo - Muito já está planejado! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Vantagens da Versão Standalone[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Marcações no mapa [*] Dark Mode
[*] Jogos salvos ilimitados [*] Unlimited Waypoints
[*] Modo escuro [*] Unlimited Savegames
[*] Mais opções no menu [*] Additional settings
[*] Me ajuda a desenvolver mais o shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Ainda mais recursos no futuro! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Melhoras Planejadas & Sugestões da Comunidade[/b] [b]Future Updates[/b]
Esse jogo tem código aberto - Qualquer um pode contribuir! Além disso, eu ouço [b]muito[/a] a comunidade! Tento ler todas as sugestões e levar o máximo possível de comentários sobre o jogo em consideração. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Modo história, onde construir custará formas [*] Different maps and challenges (e.g. maps with obstacles)
[*] Mais níves & construções (exclusivo da versão standalone) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Mapas diferentes, e talvez obstáculos no mapa [*] A story mode where buildings have a cost
[*] Criação de mapa configurável (Número e tamanho de recursos, seed, e mais) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Mais tipos de formas [*] Additional types of shapes
[*] Mais melhoras no desempenho (Mesmo que o jogo já esteja rodando bem rápido!) [*] Performance improvements (The game already runs pretty well!)
[*] Acessibilidade para daltonismo [*] And much more!
[*] E muito mais!
[/list] [/list]
Não deixe de conferir na minha página no trello o planejamento completo! (em inglês) https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Carregando loading: Carregando
@ -130,28 +147,7 @@ mainMenu:
savegameLevel: Nível <x> savegameLevel: Nível <x>
savegameLevelUnknown: Nível desconhecido savegameLevelUnknown: Nível desconhecido
contests:
contest_01_03062020:
title: "Concurso #01"
desc: Ganhe <strong>$25</strong> pela melhor base!
longDesc: >-
Para retribuir, pensei que seria legal fazer concursos semanais!
<br><br>
<strong> Tópico dessa semana:</strong> Construa a base mais legal!
<br><br>
Esse é o plano:<br>
<ul class="bucketList">
<li>Envie uma captura de tela da sua base para <strong>contest@shapez.io</strong></li>
<li>Pontos bônus se você o compartilhar nas mídias sociais!</li>
<li>Vou escolher 5 capturas de tela e propor à votação a comunidade <strong>discord</strong>.</li>
<li>o vencedor recebe <strong>$25</strong> (Paypal, Amazon Gift Card, o que você preferir)</li>
<li>Até 07.06.2020 12:00 CEST</li>
</ul>
<br>
Estou ansioso para ver suas criações incríveis!
showInfo: Participar
contestOver: Esse concurso está encerrado - Entre no discord para ser informado sobre novos concursos!
helpTranslate: Ajude a traduzir! helpTranslate: Ajude a traduzir!
continue: Continuar continue: Continuar
newGame: Novo jogo newGame: Novo jogo
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Nova Marcação title: Nova Marcação
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: >- desc: >-
Você só pode criar dois marcadores na versão demo. Adquira a versão completa para marcadores ilimitados! Você só pode criar dois marcadores na versão demo. Adquira a versão completa para marcadores ilimitados!
@ -269,6 +266,10 @@ dialogs:
desc: >- desc: >-
Você está prestes a exportar uma captura de tela da sua base. Note que isso pode ser bastante lento para uma base grande, e até mesmo pode travar o jogo! Você está prestes a exportar uma captura de tela da sua base. Note que isso pode ser bastante lento para uma base grande, e até mesmo pode travar o jogo!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -406,9 +408,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: White white: White
uncolored: No color uncolored: No color
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Empty empty: Empty
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -518,6 +522,27 @@ buildings:
deliver: Entregue deliver: Entregue
toUnlock: para desbloquear toUnlock: para desbloquear
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -728,10 +753,10 @@ settings:
title: Modo daltônico. title: Modo daltônico.
description: Permite várias ferramentas que permitem jogar se você é daltônico. description: Permite várias ferramentas que permitem jogar se você é daltônico.
rotationByBuilding: rotationByBuilding:
title: Rotação por tipo de construção title: Rotação por tipo de construção
description: >- description: >-
Cada tipo de construção lembra a rotação que você definiu pela última vez individualmente. Cada tipo de construção lembra a rotação que você definiu pela última vez individualmente.
Isso pode ser mais confortável se você alternar frequentemente entre a colocação de diferentes tipos de construção. Isso pode ser mais confortável se você alternar frequentemente entre a colocação de diferentes tipos de construção.
keybindings: keybindings:
title: Controles title: Controles
@ -799,6 +824,11 @@ keybindings:
lockBeltDirection: Ativar planejador de correia lockBeltDirection: Ativar planejador de correia
switchDirectionLockSide: "Planejador: Mudar de lado" switchDirectionLockSide: "Planejador: Mudar de lado"
pipette: Pipeta pipette: Pipeta
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Sobre o jogo title: Sobre o jogo

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io é um jogo cujo objetivo é construir fábricas para automatizar a criação e fusão de formas geométricas. Entrega as formas pedidas, que são cada vez mais complexas, de modo a progredir no jogo e desbloquear melhorias para acelerar a produção da tua fábrica shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Uma vez que a procura aumenta a cada nível, terás de aumentar a tua fábrica para fazer face às necessidades - Para isso, terás de te expandir no [b]mapa infinito[/b] para explorar todos os recursos! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Como produzir formas se tornará aborrecido rapidamente, não tardará até precisares de misturar cores e pintá-las com elas - Combina os recursos de cores vermelha, verde e azul para produzir diferentes cores e usá-las para pintar as formas geométricas com o intuito de satisfazer a procura. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Este jogo conta com 18 níveis (Que deverão manter-te ocupado durante horas!) mas estou constantemente a adicionar novos conteúdos - Há muitas coisas planedas! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Vantagens do jogo completo[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Marcos [*] Dark Mode
[*] Savegames infinitos [*] Unlimited Waypoints
[*] Modo escuro [*] Unlimited Savegames
[*] Mais definições [*] Additional settings
[*] Possibilita-me desenvolver ainda mais o shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Mais conteúdo no futuro! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Conteúdo planeado & Sugestões da comunidade[/b] [b]Future Updates[/b]
Este jogo é open source (código aberto) - Qualquer pessoa pode contribuir! Adicionalmente, Eu ouço [b]muito[/b] a comunidade! Eu tento ler todas as sugestões e retirar delas tanto feedback quanto possível. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Modo história onde as construções custam formas geométricas [*] Different maps and challenges (e.g. maps with obstacles)
[*] Mais níveis & construções (exclusivo do jogo completo) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Mapas diferentes, e talvez com obstáculos [*] A story mode where buildings have a cost
[*] Criação de mapas configuráveis (Editar o número e tamanho das minas, semente, e mais) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Mais tipos de formas geométricas [*] Additional types of shapes
[*] Mais melhorias de performance (Apesar do jogo já correr bastante bem!) [*] Performance improvements (The game already runs pretty well!)
[*] Modo daltónico [*] And much more!
[*] E muito mais!
[/list] [/list]
Segue o meu trello board para veres todo o roteiro de desenvolvimento! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: A carregar loading: A carregar
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Nível <x> savegameLevel: Nível <x>
savegameLevelUnknown: Nível desconhecido savegameLevelUnknown: Nível desconhecido
contests:
contest_01_03062020:
title: "Concurso #01"
desc: Ganha <strong>$25</strong> para a base mais cool!
longDesc: >-
Para retribuir o teu apoio, pensei que seria bom fazer concursos semanais!
<br><br>
<strong>O tópico desta semana:</strong> Construir a base mais cool!
<br><br>
Como fazer:<br>
<ul class="bucketList">
<li>Envia uma captura de ecrã da tua base para <strong>contest@shapez.io</strong></li>
<li>Bónus se o partilhares nas redes sociais!</li>
<li>Eu irei escolher 5 capturas de ecrã e propô-las-ei à comunidade do <strong>discord</strong> para votar.</li>
<li>O vencedor ganha <strong>$25</strong> (Paypal, Amazon Gift Card, ou o que preferires)</li>
<li>Prazo: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Estou ansioso por ver as vossas fantásticas criações!
showInfo: Ver
contestOver: Este concurso terminou - Entra no discord para seres notificado quando abrirem novos concursos!
continue: Continuar continue: Continuar
newGame: Novo Jogo newGame: Novo Jogo
madeBy: Criado por <author-link> madeBy: Criado por <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Novo marco title: Novo marco
desc: Dá-lhe um nome com significado, também poderás adicionar <strong>um pequeno código</strong> de uma forma. (Pode ser gerado <a href="https://viewer.shapez.io" target="_blank">aqui</a>) desc: Dá-lhe um nome com significado, também poderás adicionar <strong>um pequeno código</strong> de uma forma. (Pode ser gerado <a href="https://viewer.shapez.io" target="_blank">aqui</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Apenas podes criar dois marcos na versão Demo. Adquire o jogo completo para colocar marcos infinitos! desc: Apenas podes criar dois marcos na versão Demo. Adquire o jogo completo para colocar marcos infinitos!
@ -269,6 +266,10 @@ dialogs:
Tu estás a pedir pra exportar a tua base como uma captura de ecrã. Por favor tem em atenção que isto pode Tu estás a pedir pra exportar a tua base como uma captura de ecrã. Por favor tem em atenção que isto pode
ser um pouco lento para uma base muito grande até mesmo bloquear o teu jogo! ser um pouco lento para uma base muito grande até mesmo bloquear o teu jogo!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -291,6 +292,7 @@ ingame:
copySelection: Copiar copySelection: Copiar
clearSelection: Cancelar clearSelection: Cancelar
pipette: Pipeta pipette: Pipeta
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -406,9 +408,11 @@ ingame:
cyan: Ciano cyan: Ciano
white: Branco white: Branco
uncolored: Sem cor uncolored: Sem cor
black: Black
shapeViewer: shapeViewer:
title: Camadas title: Camadas
empty: Vazio empty: Vazio
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -515,6 +519,27 @@ buildings:
deliver: Entrega deliver: Entrega
toUnlock: para desbloquear toUnlock: para desbloquear
levelShortcut: NVL levelShortcut: NVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -726,11 +751,11 @@ settings:
title: Modo Daltónico title: Modo Daltónico
description: Ativa várias ferramentas que te permitirão jogar o jogo se fores daltónico. description: Ativa várias ferramentas que te permitirão jogar o jogo se fores daltónico.
rotationByBuilding: rotationByBuilding:
title: Rotação por tipo de construção title: Rotação por tipo de construção
description: >- description: >-
Cada tipo construção lembra-se da última rotação que definiste. Cada tipo construção lembra-se da última rotação que definiste.
Esta definição pode ser mais confortável se alterares frequentemente Esta definição pode ser mais confortável se alterares frequentemente
a colocação de diferentes tipos de construções. a colocação de diferentes tipos de construções.
keybindings: keybindings:
title: Atalhos title: Atalhos
@ -798,6 +823,11 @@ keybindings:
lockBeltDirection: Ativa o planeamento de tapetes lockBeltDirection: Ativa o planeamento de tapetes
switchDirectionLockSide: "Planeador: Troca o lado" switchDirectionLockSide: "Planeador: Troca o lado"
pipette: Pipeta pipette: Pipeta
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Sobre o jogo title: Sobre o jogo
body: >- body: >-

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io este un joc despre construirea fabricilor pentru a automatiza crearea și combinarea de forme. Livrează cerutele, din ce in ce mai complexe forme pentru a progresa în joc și a debloca upgrade-uri pentru a îți accelera fabrica. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Când cererea crește tu va trebui să îți mărești fabrica pentru a se potrivi cererilor - Nu uita de resurse totuși, tu va trebui să te extinzi în [b]harta infinită[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Când formele pot deveni plictisitoare curând tu trebuie să amesteci culori și să îți pictezi formele cu ea - Amestecă culorile roșu, verde și albastru pentru a produce diferite culori și a picta forme cu ele pentru a satisface cererile. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Acest joc cuprinde 18 nivele (Care are trebui să te păstreze ocupat pentru ore deja!) dar, eu adaug constant conținut nou - Sunt multe planificate! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Avantajele Standalone-ului[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypointuri [*] Dark Mode
[*] Savegame-uri nelimitate [*] Unlimited Waypoints
[*] Modul Întunecat [*] Unlimited Savegames
[*] Mai multe setări [*] Additional settings
[*] Îmi permiți să dezvolt mai departe shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Mai multe funcții în viitor! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Funcții planificate & Sugestiile comunității[/b] [b]Future Updates[/b]
Acest joc este open source - Toată lumea poate contribui! Pe lângă asta, eu ascult [b]mult[/b] de comunitate! Încerc să citesc toate sugestiile și să iau cât mai mule opinii în considerare pe cât posibil. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode unde construcțiile costă forme [*] Different maps and challenges (e.g. maps with obstacles)
[*] Mai multe nivele & construcții (exclusiv standalone-ului) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Diferite hărți, și poate obstacole ale hărții [*] A story mode where buildings have a cost
[*] Creare de hartă configurabilă (Editează numărul și mărimea zonelor, seed-ul, și multe altele) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Mai multe forme [*] Additional types of shapes
[*] Mai multe îmbunătățiri de performanță (Totuși jocul deja rulează destul de bine!) [*] Performance improvements (The game already runs pretty well!)
[*] Mod pentru orbii de culoare [*] And much more!
[*] Și multe altele!
[/list] [/list]
Asigurați-vă ca îmi verificați trello board-ul pentru întregul progres! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Se Încarcă loading: Se Încarcă
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Nivelul <x> savegameLevel: Nivelul <x>
savegameLevelUnknown: Nivel necunoscut savegameLevelUnknown: Nivel necunoscut
contests:
contest_01_03062020:
title: "Concursul #01"
desc: Câștigă <strong>$25</strong> pentru cea mai tare bază!
longDesc: >-
Pentru a vă da ceva înapoi, M-am gândit că ar fi tare să fac concursuri săptămânale!
<br><br>
<strong>Subiectul acestei săptămâni:</strong> Construiește cea mai tare bază!
<br><br>
Treaba stă așa:<br>
<ul class="bucketList">
<li>Trimite o poză cu baza ta la <strong>contest@shapez.io</strong></li>
<li>Puncte bonus dacă o trimiți și pe rețelele de socializare!</li>
<li>Eu voi alege 5 poze și le voi propune comunității pe <strong>discord</strong> pentru a vota.</li>
<li>Câștigătorul primește <strong>$25</strong> (Paypal, Amazon Gift Card, orice preferi)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Abia aștept să văd creațiile voastre minunate!
showInfo: Vezi
contestOver: Acest concurs s-a terminat - Alătură-te server-ului de discord pentru a primi notificări despre noi concursuri!
continue: Continuă continue: Continuă
newGame: Joc nou newGame: Joc nou
madeBy: Făcut de <author-link> madeBy: Făcut de <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Nou waypoint title: Nou waypoint
desc: Dă-i un nume plin de înțeles, de asemenea poți include a <strong>codul scurt</strong> al unei forme (Pe care îl poți genera <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Dă-i un nume plin de înțeles, de asemenea poți include a <strong>codul scurt</strong> al unei forme (Pe care îl poți genera <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Poți crea decât două waypoint-uri personalizate în demo. Ia standalone-ul pentru Waypoint-uri nelimitate! desc: Poți crea decât două waypoint-uri personalizate în demo. Ia standalone-ul pentru Waypoint-uri nelimitate!
@ -267,6 +264,11 @@ dialogs:
title: Exportează captură de ecran title: Exportează captură de ecran
desc: >- desc: >-
Ai solicitat să exportezi baza ta ca o captură de ecran. Vă rugăm să rețineți că asta poate fi destul de lent pentru o bază mare și poate chiar să blocheze jocul! Ai solicitat să exportezi baza ta ca o captură de ecran. Vă rugăm să rețineți că asta poate fi destul de lent pentru o bază mare și poate chiar să blocheze jocul!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -289,6 +291,7 @@ ingame:
copySelection: Copiază copySelection: Copiază
clearSelection: Golește Secțiunea clearSelection: Golește Secțiunea
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -404,9 +407,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: Alb white: Alb
uncolored: Necolorat uncolored: Necolorat
black: Black
shapeViewer: shapeViewer:
title: Start title: Start
empty: Gol empty: Gol
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -513,6 +518,27 @@ buildings:
deliver: Deliver deliver: Deliver
toUnlock: pentru a debloca toUnlock: pentru a debloca
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -790,6 +816,11 @@ keybindings:
lockBeltDirection: Activează planificator de benzi lockBeltDirection: Activează planificator de benzi
switchDirectionLockSide: "Planificator: Schimbă direcția" switchDirectionLockSide: "Planificator: Schimbă direcția"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Despre acest joc title: Despre acest joc

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io — это игра о строительстве фабрик для автоматизации создания и объединения фигур. Доставляйте запрошенные, все более сложные фигуры, чтобы развиваться в игре и разблокировать улучшения, чтобы ускорить работу вашей фабрики. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Поскольку спрос растет, вам придется увеличивать свою фабрику, чтобы соответствовать потребностям. Однако, не забывайте о ресурсах, несмотря на то что вы будете расширятся на [b]бесконечной карте[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Поскольку фигуры вскоре могут наскучить, вам потребуется смешивать цвета и раскрашивать свои фигуры ими. Комбинируйте красный, зеленый и синий красители для получения разных цветов и красте ими фигуры, чтобы удовлетворить спрос. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Эта игра имеет 18 уровней (но и они займут вас на часы!). Я постоянно добавляю новый контент - там много чего запланировано! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Преимущества полной версии[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Метки [*] Dark Mode
[*] Неограниченное количество сохранений [*] Unlimited Waypoints
[*] Темный режим [*] Unlimited Savegames
[*] Больше настроек [*] Additional settings
[*] Позволит мне быстрее разрабатывать shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Больше возможностей в будущем! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Планируемые функции & Предложения сообщества[/b] [b]Future Updates[/b]
Это игра с открытым исходным кодом - любой может внести свой вклад! Кроме того, я во [b]многом[/b] прислушиваюсь к сообществу! Я стараюсь прочитать все предложения и учту как можно больше отзывов. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Режим истории, где здания стоят фигур [*] Different maps and challenges (e.g. maps with obstacles)
[*] Больше уровней & зданий (эксклюзивно для полной версии) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Различные карты и, возможно, карта препятствий [*] A story mode where buildings have a cost
[*] Настраиваемое создание карт (редактирование количества и размера участков, семя и т. д.) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Больше видов фигур [*] Additional types of shapes
[*] Больше улучшений производительности (хотя игра уже работает довольно хорошо!) [*] Performance improvements (The game already runs pretty well!)
[*] Режим дальтоника [*] And much more!
[*] И многое другое!
[/list] [/list]
Не забудьте проверить мою доску trello со всеми планами! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Загрузка loading: Загрузка
@ -132,28 +149,7 @@ mainMenu:
savegameLevel: Уровень <x> savegameLevel: Уровень <x>
savegameLevelUnknown: Неизвестный уровень savegameLevelUnknown: Неизвестный уровень
contests:
contest_01_03062020:
title: "Конкурс №01"
desc: Выиграй <strong>$25</strong> за лучшую базу!
longDesc: >-
Чтобы вернуть вам что-то, я подумал, что было бы здорово проводить еженедельные конкурсы!
<br><br>
<strong>Тема этой недели:</strong> Постройка самой классной базы!
<br><br>
Вот что нужно сделать:<br>
<ul class="bucketList">
<li>Отправить скриншот вашей базы сюда: <strong>contest@shapez.io</strong></li>
<li>Бонусные баллы, если вы поделитесь этим в социальных сетях!</li>
<li>Я выберу 5 скриншотов и предложу сообществу в <strong>дискорде</strong> проголосовать.</li>
<li>Победитель получит <strong>$25</strong> (Paypal, Amazon Gift Card, что вы предпочитаете)</li>
<li>Крайний срок: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Я с нетерпением жду, чтобы увидеть ваши удивительные творения!
showInfo: Посмотреть
contestOver: Этот конкурс закончился - присоединяйтесь в дискорде, чтобы получать уведомления о новых конкурсах!
continue: Продолжить continue: Продолжить
newGame: Новая Игра newGame: Новая Игра
madeBy: Создал <author-link> madeBy: Создал <author-link>
@ -256,6 +252,7 @@ dialogs:
createMarker: createMarker:
title: Новый маркер title: Новый маркер
desc: Дайте ему содержательное имя, также можно добавить <strong>сокращение</strong> в виде фигуры (Которое можно сгенерировать <a href="https://viewer.shapez.io" target="_blank">здесь</a>) desc: Дайте ему содержательное имя, также можно добавить <strong>сокращение</strong> в виде фигуры (Которое можно сгенерировать <a href="https://viewer.shapez.io" target="_blank">здесь</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Вы можете создать только 2 своих маркера в демо-версии. Приобретите полную версию для безлимитных маркеров. desc: Вы можете создать только 2 своих маркера в демо-версии. Приобретите полную версию для безлимитных маркеров.
@ -272,6 +269,10 @@ dialogs:
что это может быть довольно медленным процессом для большой базы что это может быть довольно медленным процессом для большой базы
и даже привести к аварийному завершению игры! и даже привести к аварийному завершению игры!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -294,6 +295,7 @@ ingame:
copySelection: Копировать copySelection: Копировать
clearSelection: Отменить clearSelection: Отменить
pipette: Пипетка pipette: Пипетка
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -409,9 +411,11 @@ ingame:
cyan: Бирюзовый cyan: Бирюзовый
white: Белый white: Белый
uncolored: Бесцветный uncolored: Бесцветный
black: Black
shapeViewer: shapeViewer:
title: Слои title: Слои
empty: Пусто empty: Пусто
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -518,6 +522,27 @@ buildings:
deliver: Доставить deliver: Доставить
toUnlock: чтобы открыть toUnlock: чтобы открыть
levelShortcut: Ур. levelShortcut: Ур.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -728,11 +753,11 @@ settings:
title: Режим Дальтоника title: Режим Дальтоника
description: Включает различные инструменты, которые позволяют играть в игру дальтоникам. description: Включает различные инструменты, которые позволяют играть в игру дальтоникам.
rotationByBuilding: rotationByBuilding:
title: Поворот по типу здания title: Поворот по типу здания
description: >- description: >-
Каждый тип здания запоминает поворот, который в последний раз был установлен. Каждый тип здания запоминает поворот, который в последний раз был установлен.
С этой настройкой может быть удобнее, при частом переключении между С этой настройкой может быть удобнее, при частом переключении между
различными типами зданий. различными типами зданий.
keybindings: keybindings:
title: Настройки управления title: Настройки управления
@ -800,6 +825,11 @@ keybindings:
lockBeltDirection: Включает конвейерный планировщик lockBeltDirection: Включает конвейерный планировщик
switchDirectionLockSide: "Планировщик: Переключение сторон" switchDirectionLockSide: "Планировщик: Переключение сторон"
pipette: Пипетка pipette: Пипетка
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Об игре title: Об игре

View File

@ -40,7 +40,7 @@ steamPage:
Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features. Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
@ -73,7 +73,7 @@ steamPage:
[img]{STEAM_APP_IMAGE}/extras/header_open_source.png[/img] [img]{STEAM_APP_IMAGE}/extras/header_open_source.png[/img]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible. Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap! Be sure to check out my trello board for the full roadmap!
[img]{STEAM_APP_IMAGE}/extras/header_links.png[/img] [img]{STEAM_APP_IMAGE}/extras/header_links.png[/img]
@ -153,28 +153,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level savegameLevelUnknown: Unknown Level
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This week's topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and showcase them to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
dialogs: dialogs:
buttons: buttons:
@ -283,6 +262,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -566,6 +546,13 @@ buildings:
default: default:
name: &energy_generator Energy Generator name: &energy_generator Energy Generator
description: Generates energy by consuming shapes. Each energy generator requires a different shape. description: Generates energy by consuming shapes. Each energy generator requires a different shape.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -645,9 +632,7 @@ storyRewards:
desc: >- desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>! This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
reward_wires:
title: Wires
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Next level title: Next level

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io är ett spel som går ut på att automatisera skapandet av former. Leverera de efterfrågade, alltmer komplexa formerna för att utvecklas genom spelet och skaffa uppgraderingar för att öka hastigheten i fabriken. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Eftersom efterfrågan ökar behöver du bygga ut fabriken för att möta behoven - Glöm bara inte bort resurserna, du kommer behöva expadera fabriken över den [b]oändligt stora världen[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Eftersom former kan bli tråkiga kommer du behöva blanda färger och måla dina former med dem - Kombinera röd, grön, och blå för att producera olika färger och måla former med dem för att tillfredställa efterfrågan. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
Detta spel innehåller just nu 18 nivåer (Vilket borde hålla dig upptagen i några timmar!) men jag lägger konstant till fler saker - Det finns mycket planerat! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Fristående Fördelar[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints [*] Dark Mode
[*] Oändligt antal sparfiler [*] Unlimited Waypoints
[*] Mörkt tema [*] Unlimited Savegames
[*] Fler inställningar [*] Additional settings
[*] Tillåter mig att vidare utveckla shapez.io ❤️ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Fler funktioner i framtiden! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planerade tillägg & Gruppförslag[/b] [b]Future Updates[/b]
Detta spel är open source - Vem som helst kan hjälpa! Förutom det lyssnar jag [b]ofta[/b] på min community! Jag försöker läsa alla förslag och ta till mig så mycket feedback som möjligt. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode däri byggnader kostar former [*] Different maps and challenges (e.g. maps with obstacles)
[*] Fler nivåer & och byggnader (exklusivt för den fristående versionen) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Olika världar, och kanske världshinder [*] A story mode where buildings have a cost
[*] Konfigurerbar världskapande (Ändra antal och storlek på resursfläckar, seed, med mera) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Fler sorters former [*] Additional types of shapes
[*] Fler prestandaförbättringar (Även om spelet redan spelar ganska väl!) [*] Performance improvements (The game already runs pretty well!)
[*] Färgblint läge [*] And much more!
[*] Och mycket mer!
[/list] [/list]
Se till att kolla min trello för en full framtidskarta! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: Laddar loading: Laddar
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Nivå <x> savegameLevel: Nivå <x>
savegameLevelUnknown: Okänd Nivå savegameLevelUnknown: Okänd Nivå
contests:
contest_01_03062020:
title: "Tävling #01"
desc: Vinn <strong>$25</strong> för den coolaste fabriken!
longDesc: >-
För att ge något åter till dig, tänkte jag att det skulle vara coolt att skapa veckovisa tävlingar!
<br><br>
<strong>Denna veckas tema:</strong> Bygg den coolaste fabriken!
<br><br>
Så här går det till:<br>
<ul class="bucketList">
<li>Skicka in en skärmdump av din fabrik till <strong>contest@shapez.io</strong></li>
<li>Bonuspoäng om du delar den på sociala medier!</li>
<li>Jag kommer välja 5 skärmdumpar och framföra dem till<strong>discord</strong>gruppen och låta dem rösta.</li>
<li>Vinnaren får <strong>$25</strong> (Paypal, Amazon Gift Card, Vilket du än föredrar)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
Jag ser fram emot att se era grymma skapelser!
showInfo: Se
contestOver: Tävlingen är avslutad - Gå med i discordservern för att bli notifierad kring nya tävlingar!
continue: Fortsätt continue: Fortsätt
newGame: Nytt spel newGame: Nytt spel
madeBy: Skapad av <author-link> madeBy: Skapad av <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: Ny Markör title: Ny Markör
desc: Ge den ett meningsfullt namn, du kan också inkludera en <strong>kort kod</strong> av en form (Vilket du kan generera här <a href="https://viewer.shapez.io" target="_blank"></a>) desc: Ge den ett meningsfullt namn, du kan också inkludera en <strong>kort kod</strong> av en form (Vilket du kan generera här <a href="https://viewer.shapez.io" target="_blank"></a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: Du kan endast skapa två markörer i demoversionen. Skaffa den fristående versionen för ett oändligt antal! desc: Du kan endast skapa två markörer i demoversionen. Skaffa den fristående versionen för ett oändligt antal!
@ -270,6 +267,10 @@ dialogs:
Du efterfrågade att exportera din fabrik som en skärmdump. Du efterfrågade att exportera din fabrik som en skärmdump.
Vänligen notera att detta kan ta ett tag för en stor bas och i vissa fall till och med krascha ditt spel Vänligen notera att detta kan ta ett tag för en stor bas och i vissa fall till och med krascha ditt spel
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Kopiera copySelection: Kopiera
clearSelection: Rensa vald clearSelection: Rensa vald
pipette: Pipett pipette: Pipett
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Turkos cyan: Turkos
white: Vit white: Vit
uncolored: Ofärgad uncolored: Ofärgad
black: Black
shapeViewer: shapeViewer:
title: Lager title: Lager
empty: Tom empty: Tom
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -516,6 +520,27 @@ buildings:
deliver: Leverera deliver: Leverera
toUnlock: Att låsa upp toUnlock: Att låsa upp
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -727,10 +752,10 @@ settings:
title: Färgblint läge title: Färgblint läge
description: Aktiverar olika verktyg som låter dig spela spelet om du är färbling. description: Aktiverar olika verktyg som låter dig spela spelet om du är färbling.
rotationByBuilding: rotationByBuilding:
title: Rotering per byggnadstyp title: Rotering per byggnadstyp
description: >- description: >-
Varje byggnadstyp kommer ihåg rotationen du senast var på individuellt. Varje byggnadstyp kommer ihåg rotationen du senast var på individuellt.
Detta kan vara mer bekvämt om du ofta bytar byggnader som du placerar. Detta kan vara mer bekvämt om du ofta bytar byggnader som du placerar.
keybindings: keybindings:
title: Snabbtangenter title: Snabbtangenter
@ -798,6 +823,11 @@ keybindings:
lockBeltDirection: Sätt på rullbandsplanerare lockBeltDirection: Sätt på rullbandsplanerare
switchDirectionLockSide: "Planerare: Byt sida" switchDirectionLockSide: "Planerare: Byt sida"
pipette: Pipett pipette: Pipett
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: Om detta spel title: Om detta spel

View File

@ -30,42 +30,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and combination of shapes. Deliver the requested, increasingly complex shapes to progress within the game and unlock upgrades to speed up your factory. shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
Since the demand raises you will have to scale up your factory to fit the needs - Don't forget about resources though, you will have to expand in the [b]infinite map[/b]! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Since shapes can get boring soon you need to mix colors and paint your shapes with it - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand. Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned! This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]Standalone Advantages[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] Waypoints
[*] Unlimited Savegames
[*] Dark Mode [*] Dark Mode
[*] More settings [*] Unlimited Waypoints
[*] Allow me to further develop shapez.io ❤️ [*] Unlimited Savegames
[*] More features in the future! [*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Planned features & Community suggestions[/b] [b]Future Updates[/b]
This game is open source - Anybody can contribute! Besides of that, I listen [b]a lot[/b] to the community! I try to read all suggestions and take as much feedback into account as possible. I am updating the game very often and trying to push an update at least every week!
[list] [list]
[*] Story mode where buildings cost shapes [*] Different maps and challenges (e.g. maps with obstacles)
[*] More levels & buildings (standalone exclusive) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] Different maps, and maybe map obstacles [*] A story mode where buildings have a cost
[*] Configurable map creation (Edit number and size of patches, seed, and more) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] More types of shapes [*] Additional types of shapes
[*] More performance improvements (Although the game already runs pretty good!) [*] Performance improvements (The game already runs pretty well!)
[*] Color blind mode
[*] And much more! [*] And much more!
[/list] [/list]
Be sure to check out my trello board for the full roadmap! https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: yükleniyor loading: yükleniyor
@ -131,28 +148,7 @@ mainMenu:
savegameLevel: Seviye <x> savegameLevel: Seviye <x>
savegameLevelUnknown: Bilinmeyen seviye savegameLevelUnknown: Bilinmeyen seviye
contests:
contest_01_03062020:
title: "Contest #01"
desc: Win <strong>$25</strong> for the coolest base!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: View
contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: Devam et continue: Devam et
newGame: Yeni Oyun newGame: Yeni Oyun
madeBy: Made by <author-link> madeBy: Made by <author-link>
@ -255,6 +251,7 @@ dialogs:
createMarker: createMarker:
title: New Marker title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>) desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers! desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
@ -270,6 +267,10 @@ dialogs:
You requested to export your base as a screenshot. Please note that this can You requested to export your base as a screenshot. Please note that this can
be quite slow for a big base and even crash your game! be quite slow for a big base and even crash your game!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -292,6 +293,7 @@ ingame:
copySelection: Copy copySelection: Copy
clearSelection: Clear Selection clearSelection: Clear Selection
pipette: Pipette pipette: Pipette
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -407,9 +409,11 @@ ingame:
cyan: Cyan cyan: Cyan
white: Beyaz white: Beyaz
uncolored: Renksiz uncolored: Renksiz
black: Black
shapeViewer: shapeViewer:
title: Layers title: Layers
empty: Bos empty: Bos
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -517,6 +521,27 @@ buildings:
storage: storage:
name: Storage name: Storage
description: Stores excess items, up to a given capacity. Can be used as an overflow gate. description: Stores excess items, up to a given capacity. Can be used as an overflow gate.
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -728,11 +753,11 @@ settings:
title: Color Blind Mode title: Color Blind Mode
description: Enables various tools which allow to play the game if you are color blind. description: Enables various tools which allow to play the game if you are color blind.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Rotation by building type
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Each building type remembers the rotation you last set it to individually.
This may be more comfortable if you frequently switch between placing This may be more comfortable if you frequently switch between placing
different building types. different building types.
keybindings: keybindings:
title: Keybindings title: Keybindings
@ -800,6 +825,11 @@ keybindings:
lockBeltDirection: Enable belt planner lockBeltDirection: Enable belt planner
switchDirectionLockSide: "Planner: Switch side" switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: About this Game title: About this Game

874
translations/base-uk.yaml Normal file
View File

@ -0,0 +1,874 @@
#
# GAME TRANSLATIONS
#
# Contributing:
#
# If you want to contribute, please make a pull request on this respository
# and I will have a look.
#
# Placeholders:
#
# Do *not* replace placeholders! Placeholders have a special syntax like
# `Hotkey: <key>`. They are encapsulated within angle brackets. The correct
# translation for this one in German for example would be: `Taste: <key>` (notice
# how the placeholder stayed '<key>' and was not replaced!)
#
# Adding a new language:
#
# If you want to add a new language, ask me in the discord and I will setup
# the basic structure so the game also detects it.
#
steamPage:
# This is the short text appearing on the steam page
shortText: shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
# This is the text shown above the discord link
discordLink: Official Discord - Chat with me!
# This is the long description for the steam page - It is contained here so you can help to translate it, and I will regulary update the store page.
# NOTICE:
# - Do not translate the first line (This is the gif image at the start of the store)
# - Please keep the markup (Stuff like [b], [list] etc) in the same format
longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[img]{STEAM_APP_IMAGE}/extras/header_standalone_advantages.png[/img]
[list]
[*] Dark Mode
[*] Unlimited Waypoints
[*] Unlimited Savegames
[*] Additional settings
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list]
[img]{STEAM_APP_IMAGE}/extras/header_future_updates.png[/img]
I am updating the game very often and trying to push an update at least every week!
[list]
[*] Different maps and challenges (e.g. maps with obstacles)
[*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] A story mode where buildings have a cost
[*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] Additional types of shapes
[*] Performance improvements (The game already runs pretty well!)
[*] And much more!
[/list]
[img]{STEAM_APP_IMAGE}/extras/header_open_source.png[/img]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[img]{STEAM_APP_IMAGE}/extras/header_links.png[/img]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
global:
loading: Loading
error: Error
# How big numbers are rendered, e.g. "10,000"
thousandsDivider: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix:
thousands: k
millions: M
billions: B
trillions: T
# Shown for infinitely big numbers
infinite: inf
time:
# Used for formatting past time dates
oneSecondAgo: one second ago
xSecondsAgo: <x> seconds ago
oneMinuteAgo: one minute ago
xMinutesAgo: <x> minutes ago
oneHourAgo: one hour ago
xHoursAgo: <x> hours ago
oneDayAgo: one day ago
xDaysAgo: <x> days ago
# Short formats for times, e.g. '5h 23m'
secondsShort: <seconds>s
minutesAndSecondsShort: <minutes>m <seconds>s
hoursAndMinutesShort: <hours>h <minutes>m
xMinutes: <x> minutes
keys:
tab: TAB
control: CTRL
alt: ALT
escape: ESC
shift: SHIFT
space: SPACE
demoBanners:
# This is the "advertisement" shown in the main menu and other various places
title: Demo Version
intro: >-
Get the standalone to unlock all features!
mainMenu:
play: Play
continue: Continue
newGame: New Game
changelog: Changelog
subreddit: Reddit
importSavegame: Import
openSourceHint: This game is open source!
discordLink: Official Discord Server
helpTranslate: Help translate!
madeBy: Made by <author-link>
# This is shown when using firefox and other browsers which are not supported.
browserWarning: >-
Sorry, but the game is known to run slow on your browser! Get the standalone version or download chrome for the full experience.
savegameLevel: Level <x>
savegameLevelUnknown: Unknown Level
dialogs:
buttons:
ok: OK
delete: Delete
cancel: Cancel
later: Later
restart: Restart
reset: Reset
getStandalone: Get Standalone
deleteGame: I know what I am doing
viewUpdate: View Update
showUpgrades: Show Upgrades
showKeybindings: Show Keybindings
importSavegameError:
title: Import Error
text: >-
Failed to import your savegame:
importSavegameSuccess:
title: Savegame Imported
text: >-
Your savegame has been successfully imported.
gameLoadFailure:
title: Game is broken
text: >-
Failed to load your savegame:
confirmSavegameDelete:
title: Confirm deletion
text: >-
Are you sure you want to delete the game?
savegameDeletionError:
title: Failed to delete
text: >-
Failed to delete the savegame:
restartRequired:
title: Restart required
text: >-
You need to restart the game to apply the settings.
editKeybinding:
title: Change Keybinding
desc: Press the key or mouse button you want to assign, or escape to cancel.
resetKeybindingsConfirmation:
title: Reset keybindings
desc: This will reset all keybindings to their default values. Please confirm.
keybindingsResetOk:
title: Keybindings reset
desc: The keybindings have been reset to their respective defaults!
featureRestriction:
title: Demo Version
desc: You tried to access a feature (<feature>) which is not available in the demo. Consider getting the standalone version for the full experience!
oneSavegameLimit:
title: Limited savegames
desc: You can only have one savegame at a time in the demo version. Please remove the existing one or get the standalone version!
updateSummary:
title: New update!
desc: >-
Here are the changes since you last played:
upgradesIntroduction:
title: Unlock Upgrades
desc: >-
All shapes you produce can be used to unlock upgrades - <strong>Don't destroy your old factories!</strong>
The upgrades tab can be found on the top right corner of the screen.
massDeleteConfirm:
title: Confirm delete
desc: >-
You are deleting a lot of buildings (<count> to be exact)! Are you sure you want to do this?
massCutConfirm:
title: Confirm cut
desc: >-
You are cutting a lot of buildings (<count> to be exact)! Are you sure you want to do this?
massCutInsufficientConfirm:
title: Confirm cut
desc: >-
You can not afford to paste this area! Are you sure you want to cut it?
blueprintsNotUnlocked:
title: Not unlocked yet
desc: >-
Complete level 12 to unlock Blueprints!
keybindingsIntroduction:
title: Useful keybindings
desc: >-
This game has a lot of keybindings which make it easier to build big factories.
Here are a few, but be sure to <strong>check out the keybindings</strong>!<br><br>
<code class='keybinding'>CTRL</code> + Drag: Select an area.<br>
<code class='keybinding'>SHIFT</code>: Hold to place multiple of one building.<br>
<code class='keybinding'>ALT</code>: Invert orientation of placed belts.<br>
createMarker:
title: New Marker
desc: Give it a meaningful name, you can also include a <strong>short key</strong> of a shape (Which you can generate <a href="https://viewer.shapez.io" target="_blank">here</a>)
titleEdit: Edit Marker
markerDemoLimit:
desc: You can only create two custom markers in the demo. Get the standalone for unlimited markers!
exportScreenshotWarning:
title: Export screenshot
desc: You requested to export your base as a screenshot. Please note that this can be quite slow for a big base and even crash your game!
ingame:
# This is shown in the top left corner and displays useful keybindings in
# every situation
keybindingsOverlay:
moveMap: Move
selectBuildings: Select area
stopPlacement: Stop placement
rotateBuilding: Rotate building
placeMultiple: Place multiple
reverseOrientation: Reverse orientation
disableAutoOrientation: Disable auto-orientation
toggleHud: Toggle HUD
placeBuilding: Place building
createMarker: Create marker
delete: Delete
pasteLastBlueprint: Paste last blueprint
lockBeltDirection: Enable belt planner
plannerSwitchSide: Flip planner side
cutSelection: Cut
copySelection: Copy
clearSelection: Clear selection
pipette: Pipette
switchLayers: Switch layers
# Names of the colors, used for the color blind mode
colors:
red: Red
green: Green
blue: Blue
yellow: Yellow
purple: Purple
cyan: Cyan
white: White
black: Black
uncolored: No color
# Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar)
buildingPlacement:
# Buildings can have different variants which are unlocked at later levels,
# and this is the hint shown when there are multiple variants available.
cycleBuildingVariants: Press <key> to cycle variants.
# Shows the hotkey in the ui, e.g. "Hotkey: Q"
hotkeyLabel: >-
Hotkey: <key>
infoTexts:
speed: Speed
range: Range
storage: Storage
oneItemPerSecond: 1 item / second
itemsPerSecond: <x> items / s
itemsPerSecondDouble: (x2)
tiles: <x> tiles
# The notification when completing a level
levelCompleteNotification:
# <level> is replaced by the actual level, so this gets 'Level 03' for example.
levelTitle: Level <level>
completed: Completed
unlockText: Unlocked <reward>!
buttonNextLevel: Next Level
# Notifications on the lower right
notifications:
newUpgrade: A new upgrade is available!
gameSaved: Your game has been saved.
# The "Upgrades" window
shop:
title: Upgrades
buttonUnlock: Upgrade
# Gets replaced to e.g. "Tier IX"
tier: Tier <x>
# The roman number for each tier
tierLabels: [I, II, III, IV, V, VI, VII, VIII, IX, X]
maximumLevel: MAXIMUM LEVEL (Speed x<currentMult>)
# The "Statistics" window
statistics:
title: Statistics
dataSources:
stored:
title: Stored
description: Displaying amount of stored shapes in your central building.
produced:
title: Produced
description: Displaying all shapes your whole factory produces, including intermediate products.
delivered:
title: Delivered
description: Displaying shapes which are delivered to your central building.
noShapesProduced: No shapes have been produced so far.
# Displays the shapes per minute, e.g. '523 / m'
shapesPerMinute: <shapes> / m
# Settings menu, when you press "ESC"
settingsMenu:
playtime: Playtime
buildingsPlaced: Buildings
beltsPlaced: Belts
buttons:
continue: Continue
settings: Settings
menu: Return to menu
# Bottom left tutorial hints
tutorialHints:
title: Need help?
showHint: Show hint
hideHint: Close
# When placing a blueprint
blueprintPlacer:
cost: Cost
# Map markers
waypoints:
waypoints: Markers
hub: HUB
description: Left-click a marker to jump to it, right-click to delete it.<br><br>Press <keybinding> to create a marker from the current view, or <strong>right-click</strong> to create a marker at the selected location.
creationSuccessNotification: Marker has been created.
# Shape viewer
shapeViewer:
title: Layers
empty: Empty
copyKey: Copy Key
# Interactive tutorial
interactiveTutorial:
title: Tutorial
hints:
1_1_extractor: Place an <strong>extractor</strong> on top of a <strong>circle shape</strong> to extract it!
1_2_conveyor: >-
Connect the extractor with a <strong>conveyor belt</strong> to your hub!<br><br>Tip: <strong>Click and drag</strong> the belt with your mouse!
1_3_expand: >-
This is <strong>NOT</strong> an idle game! Build more extractors and belts to finish the goal quicker.<br><br>Tip: Hold <strong>SHIFT</strong> to place multiple extractors, and use <strong>R</strong> to rotate them.
# All shop upgrades
shopUpgrades:
belt:
name: Belts, Distributor & Tunnels
description: Speed x<currentMult> → x<newMult>
miner:
name: Extraction
description: Speed x<currentMult> → x<newMult>
processors:
name: Cutting, Rotating & Stacking
description: Speed x<currentMult> → x<newMult>
painting:
name: Mixing & Painting
description: Speed x<currentMult> → x<newMult>
# Buildings and their name / description
buildings:
hub:
deliver: Deliver
toUnlock: to unlock
levelShortcut: LVL
belt:
default:
name: &belt Conveyor Belt
description: Transports items, hold and drag to place multiple.
wire:
default:
name: &wire Wire
description: Allows you to transport energy
miner: # Internal name for the Extractor
default:
name: &miner Extractor
description: Place over a shape or color to extract it.
chainable:
name: Extractor (Chain)
description: Place over a shape or color to extract it. Can be chained.
underground_belt: # Internal name for the Tunnel
default:
name: &underground_belt Tunnel
description: Allows you to tunnel resources under buildings and belts.
tier2:
name: Tunnel Tier II
description: Allows you to tunnel resources under buildings and belts.
splitter: # Internal name for the Balancer
default:
name: &splitter Balancer
description: Multifunctional - Evenly distributes all inputs onto all outputs.
compact:
name: Merger (compact)
description: Merges two conveyor belts into one.
compact-inverse:
name: Merger (compact)
description: Merges two conveyor belts into one.
cutter:
default:
name: &cutter Cutter
description: Cuts shapes from top to bottom and outputs both halves. <strong>If you use only one part, be sure to destroy the other part or it will stall!</strong>
quad:
name: Cutter (Quad)
description: Cuts shapes into four parts. <strong>If you use only one part, be sure to destroy the other parts or it will stall!</strong>
advanced_processor:
default:
name: &advanced_processor Advanced Processor
description: Advanced shape processing
rotater:
default:
name: &rotater Rotate
description: Rotates shapes clockwise by 90 degrees.
ccw:
name: Rotate (CCW)
description: Rotates shapes counter-clockwise by 90 degrees.
stacker:
default:
name: &stacker Stacker
description: Stacks both items. If they can not be merged, the right item is placed above the left item.
mixer:
default:
name: &mixer Color Mixer
description: Mixes two colors using additive blending.
painter:
default:
name: &painter Painter
description: &painter_desc Colors the whole shape on the left input with the color from the top input.
mirrored:
name: *painter
description: *painter_desc
double:
name: Painter (Double)
description: Colors the shapes on the left inputs with the color from the top input.
quad:
name: Painter (Quad)
description: Allows you to color each quadrant of the shape with a different color.
trash:
default:
name: &trash Trash
description: Accepts inputs from all sides and destroys them. Forever.
storage:
name: Storage
description: Stores excess items, up to a given capacity. Can be used as an overflow gate.
energy_generator:
deliver: Deliver
# This will be shown before the amount, so for example 'For 123 Energy'
toGenerateEnergy: For
default:
name: &energy_generator Energy Generator
description: Generates energy by consuming shapes. Each energy generator requires a different shape.
wire_crossings:
default:
name: &wire_crossings Wire Splitter
description: Splits a wire into two
merger:
name: Wire Merger
description: Merges two wires into one
storyRewards:
# Those are the rewards gained from completing the store
reward_cutter_and_trash:
title: Cutting Shapes
desc: You just unlocked the <strong>cutter</strong> - it cuts shapes half from <strong>top to bottom</strong> regardless of its orientation!<br><br>Be sure to get rid of the waste, or otherwise <strong>it will stall</strong> - For this purpose I gave you a trash, which destroys everything you put into it!
reward_rotater:
title: Rotating
desc: The <strong>rotater</strong> has been unlocked! It rotates shapes clockwise by 90 degrees.
reward_painter:
title: Painting
desc: >-
The <strong>painter</strong> has been unlocked - Extract some color veins (just as you do with shapes) and combine it with a shape in the painter to color them!<br><br>PS: If you are colorblind, there is a <strong>colorblind mode</strong> in the settings!
reward_mixer:
title: Color Mixing
desc: The <strong>mixer</strong> has been unlocked - Combine two colors using <strong>additive blending</strong> with this building!
reward_stacker:
title: Combiner
desc: You can now combine shapes with the <strong>combiner</strong>! Both inputs are combined, and if they can be put next to each other, they will be <strong>fused</strong>. If not, the right input is <strong>stacked on top</strong> of the left input!
reward_splitter:
title: Splitter/Merger
desc: The multifunctional <strong>balancer</strong> has been unlocked - It can be used to build bigger factories by <strong>splitting and merging items</strong> onto multiple belts!<br><br>
reward_tunnel:
title: Tunnel
desc: The <strong>tunnel</strong> has been unlocked - You can now tunnel items through belts and buildings with it!
reward_rotater_ccw:
title: CCW Rotating
desc: You have unlocked a variant of the <strong>rotater</strong> - It allows you to rotate shapes counter-clockwise! To build it, select the rotater and <strong>press 'T' to cycle through its variants</strong>!
reward_miner_chainable:
title: Chaining Extractor
desc: You have unlocked the <strong>chaining extractor</strong>! It can <strong>forward its resources</strong> to other extractors so you can more efficiently extract resources!
reward_underground_belt_tier_2:
title: Tunnel Tier II
desc: You have unlocked a new variant of the <strong>tunnel</strong> - It has a <strong>bigger range</strong>, and you can also mix-n-match those tunnels now!
reward_splitter_compact:
title: Compact Balancer
desc: >-
You have unlocked a compact variant of the <strong>balancer</strong> - It accepts two inputs and merges them into one belt!
reward_cutter_quad:
title: Quad Cutting
desc: You have unlocked a variant of the <strong>cutter</strong> - It allows you to cut shapes in <strong>four parts</strong> instead of just two!
reward_painter_double:
title: Double Painting
desc: You have unlocked a variant of the <strong>painter</strong> - It works as the regular painter but processes <strong>two shapes at once</strong> consuming just one color instead of two!
reward_painter_quad:
title: Quad Painting
desc: You have unlocked a variant of the <strong>painter</strong> - It allows you to paint each part of the shape individually!
reward_storage:
title: Storage Buffer
desc: You have unlocked a variant of the <strong>trash</strong> - It allows you to store items up to a given capacity!
reward_freeplay:
title: Freeplay
desc: You did it! You unlocked the <strong>free-play mode</strong>! This means that shapes are now randomly generated! (No worries, more content is planned for the standalone!)
reward_blueprints:
title: Blueprints
desc: You can now <strong>copy and paste</strong> parts of your factory! Select an area (Hold CTRL, then drag with your mouse), and press 'C' to copy it.<br><br>Pasting it is <strong>not free</strong>, you need to produce <strong>blueprint shapes</strong> to afford it! (Those you just delivered).
# Special reward, which is shown when there is no reward actually
no_reward:
title: Next level
desc: >-
This level gave you no reward, but the next one will! <br><br> PS: Better don't destroy your existing factory - You need <strong>all</strong> those shapes later again to <strong>unlock upgrades</strong>!
no_reward_freeplay:
title: Next level
desc: >-
Congratulations! By the way, more content is planned for the standalone!
settings:
title: Settings
categories:
game: Game
app: Application
versionBadges:
dev: Development
staging: Staging
prod: Production
buildDate: Built <at-date>
labels:
uiScale:
title: Interface scale
description: >-
Changes the size of the user interface. The interface will still scale based on your device's resolution, but this setting controls the amount of scaling.
scales:
super_small: Super small
small: Small
regular: Regular
large: Large
huge: Huge
autosaveInterval:
title: Autosave Interval
description: >-
Controls how often the game saves automatically. You can also disable it entirely here.
intervals:
one_minute: 1 Minute
two_minutes: 2 Minutes
five_minutes: 5 Minutes
ten_minutes: 10 Minutes
twenty_minutes: 20 Minutes
disabled: Disabled
scrollWheelSensitivity:
title: Zoom sensitivity
description: >-
Changes how sensitive the zoom is (Either mouse wheel or trackpad).
sensitivity:
super_slow: Super slow
slow: Slow
regular: Regular
fast: Fast
super_fast: Super fast
movementSpeed:
title: Movement speed
description: >-
Changes how fast the view moves when using the keyboard.
speeds:
super_slow: Super slow
slow: Slow
regular: Regular
fast: Fast
super_fast: Super Fast
extremely_fast: Extremely Fast
language:
title: Language
description: >-
Change the language. All translations are user-contributed and might be incomplete!
enableColorBlindHelper:
title: Color Blind Mode
description: >-
Enables various tools which allow you to play the game if you are color blind.
fullscreen:
title: Fullscreen
description: >-
It is recommended to play the game in fullscreen to get the best experience. Only available in the standalone.
soundsMuted:
title: Mute Sounds
description: >-
If enabled, mutes all sound effects.
musicMuted:
title: Mute Music
description: >-
If enabled, mutes all music.
theme:
title: Game theme
description: >-
Choose the game theme (light / dark).
themes:
dark: Dark
light: Light
refreshRate:
title: Simulation Target
description: >-
If you have a 144hz monitor, change the refresh rate here so the game will properly simulate at higher refresh rates. This might actually decrease the FPS if your computer is too slow.
alwaysMultiplace:
title: Multiplace
description: >-
If enabled, all buildings will stay selected after placement until you cancel it. This is equivalent to holding SHIFT permanently.
offerHints:
title: Hints & Tutorials
description: >-
Whether to offer hints and tutorials while playing. Also hides certain UI elements up to a given level to make it easier to get into the game.
enableTunnelSmartplace:
title: Smart Tunnels
description: >-
When enabled, placing tunnels will automatically remove unnecessary belts. This also enables you to drag tunnels and excess tunnels will get removed.
vignette:
title: Vignette
description: >-
Enables the vignette, which darkens the screen corners and makes text easier to read.
rotationByBuilding:
title: Rotation by building type
description: >-
Each building type remembers the rotation you last set it to individually. This may be more comfortable if you frequently switch between placing different building types.
compactBuildingInfo:
title: Compact Building Infos
description: >-
Shortens info boxes for buildings by only showing their ratios. Otherwise a description and image is shown.
disableCutDeleteWarnings:
title: Disable Cut/Delete Warnings
description: >-
Disables the warning dialogs brought up when cutting/deleting more than 100 entities.
keybindings:
title: Keybindings
hint: >-
Tip: Be sure to make use of CTRL, SHIFT and ALT! They enable different placement options.
resetKeybindings: Reset Keybindings
categoryLabels:
general: Application
ingame: Game
navigation: Navigating
placement: Placement
massSelect: Mass Select
buildings: Building Shortcuts
placementModifiers: Placement Modifiers
mappings:
confirm: Confirm
back: Back
mapMoveUp: Move Up
mapMoveRight: Move Right
mapMoveDown: Move Down
mapMoveLeft: Move Left
mapMoveFaster: Move Faster
centerMap: Center Map
mapZoomIn: Zoom in
mapZoomOut: Zoom out
createMarker: Create Marker
menuOpenShop: Upgrades
menuOpenStats: Statistics
menuClose: Close Menu
toggleHud: Toggle HUD
toggleFPSInfo: Toggle FPS and Debug Info
switchLayers: Switch layers
exportScreenshot: Export whole Base as Image
belt: *belt
splitter: *splitter
underground_belt: *underground_belt
miner: *miner
cutter: *cutter
advanced_processor: *advanced_processor
rotater: *rotater
stacker: *stacker
mixer: *mixer
energy_generator: *energy_generator
painter: *painter
trash: *trash
wire: *wire
pipette: Pipette
rotateWhilePlacing: Rotate
rotateInverseModifier: >-
Modifier: Rotate CCW instead
cycleBuildingVariants: Cycle Variants
confirmMassDelete: Delete area
pasteLastBlueprint: Paste last blueprint
cycleBuildings: Cycle Buildings
lockBeltDirection: Enable belt planner
switchDirectionLockSide: >-
Planner: Switch side
massSelectStart: Hold and drag to start
massSelectSelectMultiple: Select multiple areas
massSelectCopy: Copy area
massSelectCut: Cut area
placementDisableAutoOrientation: Disable automatic orientation
placeMultiple: Stay in placement mode
placeInverse: Invert automatic belt orientation
about:
title: About this Game
body: >-
This game is open source and developed by <a href="https://github.com/tobspr" target="_blank">Tobias Springer</a> (this is me).<br><br>
If you want to contribute, check out <a href="<githublink>" target="_blank">shapez.io on github</a>.<br><br>
This game wouldn't have been possible without the great discord community around my games - You should really join the <a href="<discordlink>" target="_blank">discord server</a>!<br><br>
The soundtrack was made by <a href="https://soundcloud.com/pettersumelius" target="_blank">Peppsen</a> - He's awesome.<br><br>
Finally, huge thanks to my best friend <a href="https://github.com/niklas-dahl" target="_blank">Niklas</a> - Without our factorio sessions, this game would never have existed.
changelog:
title: Changelog
demo:
features:
restoringGames: Restoring savegames
importingGames: Importing savegames
oneGameLimit: Limited to one savegame
customizeKeybindings: Customizing Keybindings
exportingBase: Exporting whole Base as Image
settingNotAvailable: Not available in the demo.

View File

@ -57,43 +57,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io 是一款在无边际的地图上建造工厂、自动化生产与组合愈加复杂的图形的游戏。提交任务,制造更复杂的流水线,解锁升级来提升您工厂的运作速度。 shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
你将会需要随着不断上升得需求扩大你的工厂。当然,不要忘记你可以在[b]无尽[/b]的地图上开采资源! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
只对图形进行加工可能会使你感到无聊。我们为你准备了颜色资源——将红、绿、蓝三种颜色混合,生产更多不同的颜色并粉刷在图形上以满足需求。 Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
这个游戏目前有18个关卡这应该已经能让你忙碌几个小时了并且正在不断地更新中。很多新关卡已经在开发计划当中 This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]独立版优势[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] 地图标记 [*] Dark Mode
[*] 无限存档 [*] Unlimited Waypoints
[*] 深色模式 [*] Unlimited Savegames
[*] 更多设置 [*] Additional settings
[*] 支持作者继续开发shapez.io❤ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] 在以后还有更多特性! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Future Updates[/b]
[b]开发计划与社区意见[/b] I am updating the game very often and trying to push an update at least every week!
本游戏已开源,所有人都能参与游戏内容的开发!除此以外,我[b]非常重视[/b]玩家社区的反馈!我会阅读每一条建议并尽量顾及所有建议。
[list] [list]
[*] 要消耗图形来造建筑的的故事模式 [*] Different maps and challenges (e.g. maps with obstacles)
[*] 更多关卡&建筑(单机版独有) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] 更多地图,也许会有障碍物 [*] A story mode where buildings have a cost
[*] 可配置的地图生成(矿脉密度与大小、 随机种子以及其他地图设置) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] 更多图形 [*] Additional types of shapes
[*] 更多的性能改进(当然,现在游戏已经非常流畅了!) [*] Performance improvements (The game already runs pretty well!)
[*] 色盲模式 [*] And much more!
[*] 以及更多其他的功能!
[/list] [/list]
记得查看我的Trello计划板那里有所有的开发计划https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: 加载中 loading: 加载中
@ -161,28 +177,7 @@ mainMenu:
savegameLevel: 第<x>关 savegameLevel: 第<x>关
savegameLevelUnknown: 未知关卡 savegameLevelUnknown: 未知关卡
contests:
contest_01_03062020:
title: "竞赛 #01"
desc: 最6的工厂将能赢得<strong>25</strong>美元的奖金!
longDesc: >-
To give something back to you, I thought it would be cool to make weekly contests!
<br><br>
<strong>This weeks topic:</strong> Build the coolest base!
<br><br>
Here's the deal:<br>
<ul class="bucketList">
<li>Submit a screenshot of your base to <strong>contest@shapez.io</strong></li>
<li>Bonus points if you share it on social media!</li>
<li>I will choose 5 screenshots and propose it to the <strong>discord</strong> community to vote.</li>
<li>The winner gets <strong>$25</strong> (Paypal, Amazon Gift Card, whatever you prefer)</li>
<li>Deadline: 07.06.2020 12:00 AM CEST</li>
</ul>
<br>
I'm looking forward to seeing your awesome creations!
showInfo: 详细信息
contestOver: 本次竞赛已结束。加入官方Discord以收到关于新竞赛的提醒
# contestOver: This contest has ended - Join the discord to get noticed about new contests! # contestOver: This contest has ended - Join the discord to get noticed about new contests!
continue: 继续游戏 continue: 继续游戏
newGame: 新游戏 newGame: 新游戏
@ -288,6 +283,7 @@ dialogs:
createMarker: createMarker:
title: 创建地图标记 title: 创建地图标记
desc: 给地图标记起一个的名字。你可以在名字中加入一个<strong>短代码</strong>以加入图形。(你可以在<a href="https://viewer.shapez.io" target="_blank">这里</a>生成短代码。) desc: 给地图标记起一个的名字。你可以在名字中加入一个<strong>短代码</strong>以加入图形。(你可以在<a href="https://viewer.shapez.io" target="_blank">这里</a>生成短代码。)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: 在演示版中你只能创建两个地图标记。请获取独立版以创建更多标记。 desc: 在演示版中你只能创建两个地图标记。请获取独立版以创建更多标记。
@ -301,6 +297,10 @@ dialogs:
desc: >- desc: >-
你将要导出你的工厂的截图。如果你的基地很大,截图过程将会很慢,且有可能导致游戏崩溃! 你将要导出你的工厂的截图。如果你的基地很大,截图过程将会很慢,且有可能导致游戏崩溃!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -323,6 +323,7 @@ ingame:
copySelection: 复制 copySelection: 复制
clearSelection: 取消选择 clearSelection: 取消选择
pipette: 选取器 pipette: 选取器
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -440,9 +441,11 @@ ingame:
cyan: 青色 cyan: 青色
white: 白色 white: 白色
uncolored: 无色 uncolored: 无色
black: Black
shapeViewer: shapeViewer:
title: 层 # TODO: find better translation title: 层 # TODO: find better translation
empty: empty:
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -549,6 +552,27 @@ buildings:
deliver: 交付 deliver: 交付
toUnlock: 来解锁 toUnlock: 来解锁
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -843,6 +867,11 @@ keybindings:
lockBeltDirection: 启用传送带规划 lockBeltDirection: 启用传送带规划
switchDirectionLockSide: "规划器:换边" switchDirectionLockSide: "规划器:换边"
pipette: 选取器 pipette: 选取器
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: 关于游戏 title: 关于游戏

View File

@ -57,43 +57,59 @@ steamPage:
longText: >- longText: >-
[img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img] [img]{STEAM_APP_IMAGE}/extras/store_page_gif.gif[/img]
shapez.io 是一款在無邊際的地圖上建造工廠、自動化生產與組合愈加複雜的圖形的遊戲。提交任務,製造更複雜的流水線,解鎖升級來提升您工廠的運作速度。 shapez.io is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory.
你將會需要隨著不斷上升的需求擴大你的工廠。當然,不要忘記你可以在[b]無盡[/b]的地圖上開採資源! As the demand for shapes increases, you will have to scale up your factory to meet the demand - Don't forget about resources though, you will have to expand across the [b]infinite map[/b]!
只對圖形進行加工可能會使你感到無聊。我們為你準備了顏色資源——將紅、綠、藍三種顏色調色,產生更多不同的顏色並著色在圖形上以滿足任務需求。 Soon you will have to mix colors and paint your shapes with them - Combine red, green and blue color resources to produce different colors and paint shapes with it to satisfy the demand.
這個遊戲目前有18個關卡這應該已經能讓你忙碌幾個小時了並且遊戲正在不斷地更新中。很多新關卡已經在開發計劃當中 This game features 18 progressive levels (Which should keep you busy for hours already!) but I'm constantly adding new content - There is a lot planned!
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features.
[b]獨立版優勢[/b] [b]Standalone Advantages[/b]
[list] [list]
[*] 地圖標記 [*] Dark Mode
[*] 無限存檔 [*] Unlimited Waypoints
[*] 深色模式 [*] Unlimited Savegames
[*] 更多設置 [*] Additional settings
[*] 支持作者繼續開發shapez.io❤ [*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020.
[*] 在以後還有更多特性! [*] Coming soon: More Levels
[*] Allows me to further develop shapez.io ❤️
[/list] [/list]
[b]Future Updates[/b]
[b]開發計劃與社區意見[/b] I am updating the game very often and trying to push an update at least every week!
本遊戲已開源,所有人都能參與遊戲內容的開發!除此以外,我[b]非常重視[/b]玩家社區的反饋!我會閱讀每一條建議並儘量顧及所有建議。
[list] [list]
[*] 要消耗圖形來造建築的的故事模式 [*] Different maps and challenges (e.g. maps with obstacles)
[*] 更多關卡&建築(獨立版獨有) [*] Puzzles (Deliver the requested shape with a restricted area / set of buildings)
[*] 更多地圖,也許會有障礙物 [*] A story mode where buildings have a cost
[*] 可配置的地圖生成(礦脈密度與大小、 隨機種子以及其他地圖設置) [*] Configurable map generator (Configure resource/shape size/density, seed and more)
[*] 更多圖形 [*] Additional types of shapes
[*] 更多的性能改進(當然,現在遊戲已經非常流暢了!) [*] Performance improvements (The game already runs pretty well!)
[*] 色盲模式 [*] And much more!
[*] 以及更多其他的功能!
[/list] [/list]
記得查看我的Trello計劃板那裡有所有的開發計劃 https://trello.com/b/ISQncpJP/shapezio [b]This game is open source![/b]
Anybody can contribute, I'm actively involved in the community and attempt to review all suggestions and take feedback into consideration where possible.
Be sure to check out my trello board for the full roadmap!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Source code (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url]
[/list]
discordLink: Official Discord - Chat with me!
global: global:
loading: 加載中 loading: 加載中
@ -159,28 +175,7 @@ mainMenu:
savegameLevel: Level <x> savegameLevel: Level <x>
savegameLevelUnknown: 未知關卡 savegameLevelUnknown: 未知關卡
contests:
contest_01_03062020:
title: "比賽 #01"
desc: 最屌的工廠將能贏得<strong>25</strong>美元的獎金!
longDesc: >-
為了回饋您,我認為每週進行比賽也很酷!
<br> <br>
<strong>本週主題:</ strong>建立最酷的基地!
<br> <br>
是這樣的:<br>
<ul class =“ bucketList”>
<li>將您的基地的螢幕截圖提交到<strong> contest@shapez.io </ strong> </ li>
<li>如果您在社交媒體上分享會有額外獎勵積分!</ li>
<li>我將選擇5張螢幕截圖並將其提交給<strong> discord </ strong>社區進行投票。</ li>
<li>獲勝者將獲得<strong> $ 25 </ strong>PayPal亞馬遜禮品卡隨您喜歡</ li>
<li>截止日期CEST 07.06.2020 12:00 AM </ li>
</ ul>
<br>
我期待看到您的出色創作!
showInfo: 詳細信息
contestOver: 本次競賽已結束。加入官方Discord以收到關於新競賽的提醒
continue: 繼續 continue: 繼續
newGame: 新遊戲 newGame: 新遊戲
madeBy: 作者:<author-link> madeBy: 作者:<author-link>
@ -283,6 +278,7 @@ dialogs:
createMarker: createMarker:
title: 創建標記 title: 創建標記
desc: 給地圖標記起一個的名字。你可以在名字中加入一個<strong>短代碼</strong>以加入圖形。 (你可以在<a href="https://viewer.shapez.io" target="_blank">這裡</a>生成短代碼。) desc: 給地圖標記起一個的名字。你可以在名字中加入一個<strong>短代碼</strong>以加入圖形。 (你可以在<a href="https://viewer.shapez.io" target="_blank">這裡</a>生成短代碼。)
titleEdit: Edit Marker
markerDemoLimit: markerDemoLimit:
desc: 在演示版中你只能創建兩個地圖標記。請獲取獨立版以創建更多標記。 desc: 在演示版中你只能創建兩個地圖標記。請獲取獨立版以創建更多標記。
@ -296,6 +292,10 @@ dialogs:
desc: >- desc: >-
你將要匯出你的工廠的截圖。如果你的基地很大,截圖過程將會很慢,甚至有可能導致遊戲當掉! 你將要匯出你的工廠的截圖。如果你的基地很大,截圖過程將會很慢,甚至有可能導致遊戲當掉!
massCutInsufficientConfirm:
title: Confirm cut
desc: You can not afford to paste this area! Are you sure you want to cut it?
ingame: ingame:
# This is shown in the top left corner and displays useful keybindings in # This is shown in the top left corner and displays useful keybindings in
# every situation # every situation
@ -318,6 +318,7 @@ ingame:
copySelection: 複製選取 copySelection: 複製選取
clearSelection: 清空選取 clearSelection: 清空選取
pipette: 吸附 pipette: 吸附
switchLayers: Switch layers
# Everything related to placing buildings (I.e. as soon as you selected a building # Everything related to placing buildings (I.e. as soon as you selected a building
# from the toolbar) # from the toolbar)
@ -435,9 +436,11 @@ ingame:
cyan: cyan:
white: white:
uncolored: 無顏色 uncolored: 無顏色
black: Black
shapeViewer: shapeViewer:
title: title:
empty: empty:
copyKey: Copy Key
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -544,6 +547,27 @@ buildings:
deliver: 交付 deliver: 交付
toUnlock: 來解鎖 toUnlock: 來解鎖
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energy Wire
description: Allows you to transport energy.
advanced_processor:
default:
name: Color Inverter
description: Accepts a color or shape and inverts it.
energy_generator:
deliver: Deliver
toGenerateEnergy: For
default:
name: Energy Generator
description: Generates energy by consuming shapes.
wire_crossings:
default:
name: Wire Splitter
description: Splits a energy wire into two.
merger:
name: Wire Merger
description: Merges two energy wires into one.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -831,6 +855,11 @@ keybindings:
lockBeltDirection: 啟用傳送帶規劃 lockBeltDirection: 啟用傳送帶規劃
switchDirectionLockSide: "規劃器:換邊" switchDirectionLockSide: "規劃器:換邊"
pipette: Pipette pipette: Pipette
menuClose: Close Menu
switchLayers: Switch layers
advanced_processor: Color Inverter
energy_generator: Energy Generator
wire: Energy Wire
about: about:
title: 關於遊戲 title: 關於遊戲