1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

Merge branch 'master' into patch-3

This commit is contained in:
ArnauGomar 2020-07-13 00:52:52 +02:00 committed by GitHub
commit 2a4f09ccf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
58 changed files with 4023 additions and 2305 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

@ -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

@ -413,10 +413,10 @@ function roundSmart(n) {
/** /**
* Formats a big number * Formats a big number
* @param {number} num * @param {number} num
* @param {string=} divider THe divider for numbers like 50,000 (divider=',') * @param {string=} separator The decimal separator for numbers like 50.1 (separator='.')
* @returns {string} * @returns {string}
*/ */
export function formatBigNumber(num, divider = ".") { export function formatBigNumber(num, separator = T.global.decimalSeparator) {
const sign = num < 0 ? "-" : ""; const sign = num < 0 ? "-" : "";
num = Math.abs(num); num = Math.abs(num);
@ -445,7 +445,10 @@ export function formatBigNumber(num, divider = ".") {
} }
} }
const leadingDigitsRounded = round1Digit(leadingDigits); const leadingDigitsRounded = round1Digit(leadingDigits);
const leadingDigitsNoTrailingDecimal = leadingDigitsRounded.toString().replace(".0", ""); const leadingDigitsNoTrailingDecimal = leadingDigitsRounded
.toString()
.replace(".0", "")
.replace(".", separator);
return sign + leadingDigitsNoTrailingDecimal + suffix; return sign + leadingDigitsNoTrailingDecimal + suffix;
} }
} }
@ -453,7 +456,7 @@ export function formatBigNumber(num, divider = ".") {
/** /**
* Formats a big number, but does not add any suffix and instead uses its full representation * Formats a big number, but does not add any suffix and instead uses its full representation
* @param {number} num * @param {number} num
* @param {string=} divider THe divider for numbers like 50,000 (divider=',') * @param {string=} divider The divider for numbers like 50,000 (divider=',')
* @returns {string} * @returns {string}
*/ */
export function formatBigNumberFull(num, divider = T.global.thousandsDivider) { export function formatBigNumberFull(num, divider = T.global.thousandsDivider) {
@ -954,10 +957,13 @@ export function capitalizeFirstLetter(str) {
* Formats a number like 2.5 to "2.5 items / s" * Formats a number like 2.5 to "2.5 items / s"
* @param {number} speed * @param {number} speed
* @param {boolean=} double * @param {boolean=} double
* @param {string=} separator The decimal separator for numbers like 50.1 (separator='.')
*/ */
export function formatItemsPerSecond(speed, double = false) { export function formatItemsPerSecond(speed, double = false, separator = T.global.decimalSeparator) {
return speed === 1.0 return speed === 1.0
? T.ingame.buildingPlacement.infoTexts.oneItemPerSecond ? T.ingame.buildingPlacement.infoTexts.oneItemPerSecond
: T.ingame.buildingPlacement.infoTexts.itemsPerSecond.replace("<x>", "" + round2Digits(speed)) + : T.ingame.buildingPlacement.infoTexts.itemsPerSecond.replace(
(double ? " " + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : ""); "<x>",
round2Digits(speed).toString().replace(".", separator)
) + (double ? " " + T.ingame.buildingPlacement.infoTexts.itemsPerSecondDouble : "");
} }

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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +524,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 +757,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 +829,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
@ -71,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +154,6 @@ 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 impressionant!
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 impressionant!
<br><br>
Aquest és el procés:<br>
<ul class="bucketList">
<li>Envia una captura de pantalla de la teva/ua base <strong>contest@shapez.io</strong></li>
<li>Punts extra si ho comparteixes en xarxes socials!</li>
<li>Seleccionaré 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, el que preferisques)</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:
ok: OK ok: OK
@ -254,6 +255,7 @@ dialogs:
createMarker: createMarker:
title: Nou Marcador title: Nou Marcador
titleEdit: Edit Marker
desc: >- desc: >-
Dona-li un nom significatiu, també pots usar les <strong>claus</strong> de les figures (Pots generarles <a href="https://viewer.shapez.io" target="_blank">aquí</a>) Dona-li un nom significatiu, també pots usar les <strong>claus</strong> de les figures (Pots generarles <a href="https://viewer.shapez.io" target="_blank">aquí</a>)
@ -262,7 +264,10 @@ dialogs:
exportScreenshotWarning: exportScreenshotWarning:
title: Export screenshot title: Export screenshot
desc: Has demanat exportar la teva/ua 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. Aquest procés pot ser molt lent i inclús crashear el teu joc!
massCutInsufficientConfirm:
title: Confirmar tall
desc: No pots permetre't enganxar aquesta zona! Estàs segur que vols tallar-ho?
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 +303,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 +541,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 +626,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 +819,7 @@ keybindings:
placementDisableAutoOrientation: Desactiva lorientació automàtica placementDisableAutoOrientation: Desactiva lorientació automàtica
placeMultiple: Manteniu-vos en mode d'emplaçament. placeMultiple: Manteniu-vos en mode d'emplaçament.
placeInverse: Invertir lorientació automàtica de la cinta placeInverse: Invertir lorientació automàtica de la cinta
menuClose: Tancar
about: about:
title: Sobre el joc title: Sobre el joc

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
@ -55,6 +72,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: " " thousandsDivider: " "
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -112,28 +132,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 +235,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 +251,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 +277,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 +393,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 +505,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 +737,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 +809,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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -135,28 +155,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 +259,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 +267,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 +305,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 +534,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 +628,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 +835,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
@ -73,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: "."
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -129,28 +150,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 +254,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 +268,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 +294,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 +410,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 +526,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 +758,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 +830,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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +524,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 +758,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 +830,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

@ -34,17 +34,18 @@ steamPage:
[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 processing of increasingly complex shapes across an infinitely expanding map. 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]! Upon delivering the requested shapes you'll progress within the game and unlock upgrades to speed up your factory.
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. As the demand for shapes increases, you'll have to scale up your factory to meet the demand - Don't forget about resources though, you'll have to expand across the [b]infinite map[/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! Soon you'll 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 them to satisfy the demand.
Purchasing the game gives you access to the standalone version which has additional features and you'll also receive access to newly developed features. This game features 18 progressive levels (Which should already keep you busy for hours!) but I'm constantly adding new content - There's a lot planned!
[img]{STEAM_APP_IMAGE}/extras/header_standalone_advantages.png[/img] 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]
[*] Dark Mode [*] Dark Mode
@ -56,9 +57,9 @@ 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 often and trying to push an update at least once every week!
[list] [list]
[*] Different maps and challenges (e.g. maps with obstacles) [*] Different maps and challenges (e.g. maps with obstacles)
@ -70,12 +71,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]
@ -92,6 +93,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -153,29 +157,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 +263,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 +307,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 +449,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 +493,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 +547,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 +636,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

@ -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: shapez.io es un juego sobre construir fábricas para automatizar la creación y combinación de figuras cada vez más complejas en un mapa infinito. shortText: shapez.io es un juego sobre construir fábricas para automatizar la creación y combinación de figuras cada vez más complejas en un mapa infinito.
# This is the text shown above the discord link
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)
@ -30,41 +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]
shapez.io es un juego sobre construir fábricas para automatizar la creación y combinación de figuras. Entrega las cada vez más complejas figuras requeridas para progresar y desbloquea mejoras para aumentar la velocidad de tu fábrica. 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 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]!
Ya que las figuras pueden ser aburridas, necesitarás mezclar colores para pintar las figuras - Combina recursos de colores rojo, verde y azul para producir diferentes colores y pintar figuras para satisfacer la demanda. Después necesitarás mezclar colores para pintar las figuras - Combina recursos de colores rojo, verde y azul para producir diferentes colores y pintar figuras para satisfacer la demanda.
Este juego cuenta con 18 niveles (¡Que te mantendrán ocupado durante horas!) pero estoy constantemente añadiendo nuevo contenido - ¡Hay mucho planeado! Este juego cuenta con 18 niveles (¡Que te mantendrán ocupado durante horas!) pero estoy constantemente añadiendo nuevo contenido - ¡Hay mucho planeado!
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]Ventajas del juego completo[/b]
[list] [list]
[*] Puntos de referencia en el mapa [*] Modo oscuro
[*] Puntos de referencia ilimitados
[*] Partidas guardadas ilimitadas [*] Partidas guardadas ilimitadas
[*] Modo nocturno [*] Ajustes adicionales
[*] Más opciones [*] Próximamente: ¡Cables y Energía! Aproximadamente para finales de julio de 2020.
[*] Permitirme seguir desarrollando shapez.io ❤️ [*] Próximamente: Más niveles
[*] Más características en el futuro! [*] Ayúdame a seguir desarrollando shapez.io ❤️
[/list] [/list]
[b]Características planeadas y sugerencias de la comunidad[/b] [b]Futuras actualizaciones[/b]
¡Estoy actualizando el juego muy a menudo e intentando subir actualizaciones al menos una vez a la semana!
Este juego es de código abierto - Cualquiera puede contribuir! A parte de eso, escucho [b]mucho[/b] a la comunidad! Intento leer todas las sugerencias e intento tener en cuenta todo el feedback posible.
[list] [list]
[*] Modo historia en el que los edificios cuesten figuras [*] Diferentes mapas y desafíos (por ejemplo: mapas con obstáculos)
[*] Más niveles y edificios (exclusivos del juego completo) [*] Puzles (Entrega la forma requerida con una zona o conjunto de edificios restringidos)
[*] Mapas diferentes y tal vez obstáculos en el mapa [*] Modo historia en el que los edificios tengan un coste
[*] Configuración en la creación del mapa (Editar el número y tamaño de los recursos, la semilla, y más) [*] Generador de mapas configurable (Configurar recursos, forma, tamaño, densidad, semilla y más)
[*] Más tipos de formas [*] Más tipos de figuras
[*] Mejoras de rendimiento (Aunque el juego ya funciona muy bien!) [*] Mejoras de rendimiento (¡Aunque el juego ya funciona muy bien!)
[*] Modo para daltónicos [*] ¡Y mucho más!
[*] Y mucho más!
[/list] [/list]
Además asegúrate de comprobar el tablero de Trello para ver todo lo planificado! https://trello.com/b/ISQncpJP/shapezio [b]¡Este juego es de código abierto![/b]
Cualquiera puede contribuir, estoy activamente involucrado en la comunidad e intento leer todas las sugerencias y considerar todas las propuestas planteadas.
¡Comprueba mi tablero de Trello para ver todo lo planificado!
[b]Enlaces[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Discord oficial[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Hoja de ruta[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Código fuente (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Ayuda a traducir[/url]
[/list]
global: global:
loading: Cargando loading: Cargando
@ -73,6 +92,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: "."
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -96,8 +118,8 @@ global:
# Short formats for times, e.g. '5h 23m' # Short formats for times, e.g. '5h 23m'
secondsShort: <seconds>s secondsShort: <seconds>s
minutesAndSecondsShort: <minutes>m <seconds>s minutesAndSecondsShort: <minutes>min <seconds>s
hoursAndMinutesShort: <hours>h <minutes>m hoursAndMinutesShort: <hours>h <minutes>min
xMinutes: <x> minutos xMinutes: <x> minutos
@ -111,18 +133,19 @@ global:
demoBanners: demoBanners:
# This is the "advertisement" shown in the main menu and other various places # This is the "advertisement" shown in the main menu and other various places
title: Versión de Prueba title: Versión de prueba
intro: >- intro: >-
¡Obtén el juego completo para conseguir todas las características! ¡Obtén el juego completo para desbloquear todas las características!
mainMenu: mainMenu:
play: Jugar play: Jugar
continue: Continuar continue: Continuar
newGame: Nuevo Juego newGame: Nuevo juego
changelog: Historial de cambios changelog: Historial de cambios
subreddit: Reddit
importSavegame: Importar importSavegame: Importar
openSourceHint: ¡Este juego es de código abierto! openSourceHint: ¡Este juego es de código abierto!
discordLink: Servidor de Discord Oficial discordLink: Servidor de Discord oficial
helpTranslate: ¡Ayuda a traducirlo! helpTranslate: ¡Ayuda a traducirlo!
madeBy: Desarrollado por <author-link> madeBy: Desarrollado por <author-link>
@ -133,56 +156,32 @@ 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>Deadline: 07.06.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!
subreddit: Reddit
dialogs: dialogs:
buttons: buttons:
ok: OK ok: OK
delete: Borrar delete: Borrar
cancel: Cancelar cancel: Cancelar
later: Más Tarde later: Más tarde
restart: Volver A Empezar restart: Volver a empezar
reset: Reiniciar reset: Reiniciar
getStandalone: Obtener Juego Completo getStandalone: Obtener juego completo
deleteGame: Lo Que Hago deleteGame: Sé lo que hago
viewUpdate: Ver Actualización viewUpdate: Ver actualización
showUpgrades: Ver Mejoras showUpgrades: Ver mejoras
showKeybindings: Ver Atajos De teclado showKeybindings: Ver atajos de teclado
importSavegameError: importSavegameError:
title: Error de Importación title: Error de importación
text: >- text: >-
Fallo al importar tu partida guardada: Fallo al importar tu partida guardada:
importSavegameSuccess: importSavegameSuccess:
title: Partida Guardada Importada title: Partida guardada importada
text: >- text: >-
Tu partida guardada ha sido importada con éxito. Tu partida guardada ha sido importada con éxito.
gameLoadFailure: gameLoadFailure:
title: Error de Carga title: Error de carga
text: >- text: >-
No se ha podido cargar la partida guardada: No se ha podido cargar la partida guardada:
@ -203,32 +202,33 @@ dialogs:
editKeybinding: editKeybinding:
title: Cambiar atajos de teclado title: Cambiar atajos de teclado
desc: Presiona la tecla o botón del ratón que quieras asignar o escape para cancelar. desc: Pulsa la tecla o botón del ratón que quieras asignar, o escape para cancelar.
resetKeybindingsConfirmation: resetKeybindingsConfirmation:
title: Reiniciar atajos de teclado title: Reiniciar atajos de teclado
desc: Esto devolverá todos los atajos de teclado a los valores por defecto. Por favor, confirma. desc: Esto devolverá todos los atajos de teclado a los valores por defecto. Por favor, confirma.
keybindingsResetOk: keybindingsResetOk:
title: Reseteo de los atajos de teclado title: Atajos de teclado reiniciados
desc: ¡Los atajos de taclado han sito reseteados a los valores por defecto! desc: ¡Los atajos de teclado han sito reiniciados a los valores por defecto!
featureRestriction: featureRestriction:
title: Versión de Prueba title: Versión de prueba
desc: Has intentado acceder a una característica (<feature>) que no está disponible en la demo. ¡Considera obtener el juego completo para la experiencia completa! desc: Has intentado acceder a una característica (<feature>) que no está disponible en la versión de prueba. ¡Considera obtener el juego completo para la experiencia completa!
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: >-
Estos son los cambios desde la última vez que jugaste: Estos son los cambios desde la última vez que jugaste:
upgradesIntroduction: upgradesIntroduction:
title: Desbloquear Mejoras title: Desbloquear mejoras
desc: >- desc: >-
Todas las figuras pueden ser usadas para desbloquear mejoras - <strong>¡No destruyas tus fábricas anteriores!</strong> Todas las figuras se pueden usar para desbloquear mejoras - <strong>¡No destruyas tus fábricas anteriores!</strong>
La pestaña de mejoras está en la esquina superior derecha de la pantalla. La pestaña de mejoras está en la esquina superior derecha de la pantalla.
massDeleteConfirm: massDeleteConfirm:
@ -239,34 +239,38 @@ dialogs:
massCutConfirm: massCutConfirm:
title: Confirmar corte title: Confirmar corte
desc: >- desc: >-
¡Estás cortando muchos edificios (<count> para ser exactos)! ¿Estas seguro de ¡Estás cortando muchos edificios (<count> para ser exactos)! ¿Estas seguro de que quieres hacer esto?
que quieres hacer esto?
massCutInsufficientConfirm:
title: Confirm cut
desc: >-
¡No puedes permitirte pegar este área! ¿Estás seguro de que quieres cortarlo?
blueprintsNotUnlocked: blueprintsNotUnlocked:
title: No desbloqueado todavía title: No desbloqueado todavía
desc: >- desc: >-
¡Los planos no han sido desbloqueados todavía! Completa más niveles para desbloquearlos. ¡Completa el nivel 12 para desbloquear los Planos!
keybindingsIntroduction: keybindingsIntroduction:
title: Atajos de teclado útiles title: Atajos de teclado útiles
desc: >- desc: >-
El juego tiene muchos atajos de teclado que facilitan la tarea de construir grandes fábricas. El juego tiene muchos atajos de teclado que facilitan la tarea de construir grandes fábricas.
¡Aquí hay algunos, pero asegúrate de <strong>comprobar los atajos de teclado</strong>!<br><br> ¡Aquí hay algunos, pero asegúrate de <strong>comprobar los atajos de teclado</strong>!<br><br>
<code class='keybinding'>CTRL</code> + Arrastrar: Selecciona un área para copiarla / borrarla.<br> <code class='keybinding'>CTRL</code> + Arrastrar: Selecciona un área.<br>
<code class='keybinding'>SHIFT</code>: Mánten pulsado para colocar varias veces el mismo edificio.<br> <code class='keybinding'>SHIFT</code>: Mánten pulsado para colocar varias veces un edificio.<br>
<code class='keybinding'>ALT</code>: Invierte la orientación de las cintas transportadoras colocadas.<br> <code class='keybinding'>ALT</code>: Invierte la orientación de las cintas transportadoras colocadas.<br>
createMarker: createMarker:
title: Nuevo marcador title: Nuevo marcador
desc: Dale un nombre significativo, tambien puedes agregarle la <strong>clave</strong> de una forma (La cual puedes generar <a href="https://viewer.shapez.io" target="_blank">aquí</a>) titleEdit: Editar marcador
desc: Dale un nombre significativo, también puedes agregarle una <strong>clave</strong> de una forma (La cual puedes generar <a href="https://viewer.shapez.io" target="_blank">aquí</a>)
markerDemoLimit: markerDemoLimit:
desc: Sólo puedes crear dos marcadores en la versión de prueba. ¡Obtén el juego completo para marcas ilimitadas! desc: Solo puedes crear dos marcadores en la versión de prueba. ¡Obtén el juego completo para marcadores ilimitados!
exportScreenshotWarning: exportScreenshotWarning:
title: Exportar captura de pantalla title: Exportar captura de pantalla
desc: >- desc: Has solicitado una captura de pantalla de tu base. Por favor, ten en cuenta que puede tardar bastante en las bases grandes. ¡E incluso crashear tu juego!
Has pedido una captura de pantalla. Por favor ten en cuenta que
puede tardar bastante en las bases grandes ¡He incluso crashear tu juego!
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
@ -274,22 +278,35 @@ ingame:
keybindingsOverlay: keybindingsOverlay:
moveMap: Mover moveMap: Mover
selectBuildings: Seleccionar área selectBuildings: Seleccionar área
stopPlacement: Parar de colocar stopPlacement: Dejar de colocar
rotateBuilding: Rotar edificio rotateBuilding: Rotar edificio
placeMultiple: Colocar varios placeMultiple: Colocar varios
reverseOrientation: Invertir la orientación reverseOrientation: Invertir la orientación
disableAutoOrientation: Desactivar la autoorientación disableAutoOrientation: Desactivar la autoorientación
toggleHud: Habilitar el HUD toggleHud: Habilitar el HUD
placeBuilding: Colocar edificio placeBuilding: Colocar edificio
createMarker: Crear marca createMarker: Crear marcador
delete: Destruir delete: Destruir
pasteLastBlueprint: Pegar último plano pasteLastBlueprint: Pegar último plano
lockBeltDirection: Activar planificador de cintas transportadoras lockBeltDirection: Activar planificador de cintas transportadoras
plannerSwitchSide: Invertir giro del planificador plannerSwitchSide: Invertir giro del planificador
cutSelection: Cortar cutSelection: Cortar
copySelection: Copiar copySelection: Copiar
clearSelection: Limpiar Selección clearSelection: Limpiar selección
pipette: Pipette pipette: Pipette
switchLayers: Cambiar capas
# Names of the colors, used for the color blind mode
colors:
red: Rojo
green: Verde
blue: Azul
yellow: Amarillo
purple: Púrpura
cyan: Cian
white: Blanco
black: Negro
uncolored: Gris
# 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)
@ -318,12 +335,12 @@ ingame:
levelTitle: Nivel <level> levelTitle: Nivel <level>
completed: Completado completed: Completado
unlockText: ¡Has desbloqueado <reward>! unlockText: ¡Has desbloqueado <reward>!
buttonNextLevel: Siguiente Nivel buttonNextLevel: Siguiente nivel
# Notifications on the lower right # Notifications on the lower right
notifications: notifications:
newUpgrade: ¡Una nueva mejora está disponible! newUpgrade: ¡Una nueva mejora está disponible!
gameSaved: Tu partida ha sido guardada. gameSaved: Se ha guardado la partida.
# The "Upgrades" window # The "Upgrades" window
shop: shop:
@ -347,14 +364,14 @@ ingame:
description: Muestra la cantidad de figuras guardadas en tu edificio central. description: Muestra la cantidad de figuras guardadas en tu edificio central.
produced: produced:
title: Producido title: Producido
description: Muestra todas las figuras que tu fábrica entera produce, incluyendo productos intermedios. description: Muestra todas las figuras que tu fábrica al completo produce, incluyendo productos intermedios.
delivered: delivered:
title: Entregados title: Entregados
description: Muestra las figuras que son entregadas a tu edificio central. description: Muestra las figuras que son entregadas a tu edificio central.
noShapesProduced: Todavía no se han producido figuras. noShapesProduced: Todavía no se han producido figuras.
# Displays the shapes per minute, e.g. '523 / m' # Displays the shapes per minute, e.g. '523 / min'
shapesPerMinute: <shapes> / m shapesPerMinute: <shapes> / min
# Settings menu, when you press "ESC" # Settings menu, when you press "ESC"
settingsMenu: settingsMenu:
@ -366,12 +383,12 @@ ingame:
buttons: buttons:
continue: Continuar continue: Continuar
settings: Opciones settings: Opciones
menu: Volver al Menú Principal menu: Volver al menú principal
# Bottom left tutorial hints # Bottom left tutorial hints
tutorialHints: tutorialHints:
title: ¿Necesitas ayuda? title: ¿Necesitas ayuda?
showHint: Mostrar Pista showHint: Mostrar pista
hideHint: Cerrar hideHint: Cerrar
# When placing a blueprint # When placing a blueprint
@ -385,29 +402,23 @@ ingame:
description: Click izquierdo sobre un marcador para ir ahí, click derecho para borrarlo. <br><br> Pulsa <keybinding> para crear un marcador de la vista actual o <strong>click derecho</strong> para crear un marcador en la posición seleccionada. description: Click izquierdo sobre un marcador para ir ahí, click derecho para borrarlo. <br><br> Pulsa <keybinding> para crear un marcador de la vista actual o <strong>click derecho</strong> para crear un marcador en la posición seleccionada.
creationSuccessNotification: El marcador ha sido creado. creationSuccessNotification: El marcador ha sido creado.
# Shape viewer
shapeViewer:
title: Capas
empty: Vacío
copyKey: Copiar
# Interactive tutorial # Interactive tutorial
interactiveTutorial: interactiveTutorial:
title: Tutorial title: Tutorial
hints: hints:
1_1_extractor: ¡Coloca un <strong>extractor</strong> encima de un <strong>círculo</strong> para extraerlo! 1_1_extractor: ¡Coloca un <strong>extractor</strong> encima de un <strong>círculo</strong> para extraerlo!
1_2_conveyor: >- 1_2_conveyor: >-
¡Conecta el extractor con una <strong>cinta transportadora</strong> a tu edificio central!<br><br> Pista: <strong>Pulsa y arrastra</strong> la cinta transportadora con el ratón! ¡Conecta el extractor con una <strong>cinta transportadora</strong> a tu edificio central!<br><br> Pista: ¡<strong>Pulsa y arrastra</strong> la cinta transportadora con el ratón!
1_3_expand: >- 1_3_expand: >-
¡Esto <strong>NO</strong> es un "juego de esperar"! Construye más extractores y cintas transportadoras para completar el objetivo más rápido.<br><br> Pista: Mantén pulsado <strong>SHIFT</strong> para colocar varios extractores y usa <strong>R</strong> para rotarlos. ¡Esto <strong>NO</strong> es un "juego de esperar"! Construye más extractores y cintas transportadoras para completar el objetivo más rápido.<br><br> Pista: Mantén pulsado <strong>SHIFT</strong> para colocar varios extractores y usa <strong>R</strong> para rotarlos.
colors:
red: Rojo
green: Verde
blue: Azul
yellow: Amarillo
purple: Morado
cyan: Cian
white: Blanco
uncolored: Sin color
shapeViewer:
title: Capas
empty: Vacio
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
belt: belt:
@ -425,10 +436,20 @@ shopUpgrades:
# Buildings and their name / description # Buildings and their name / description
buildings: buildings:
hub:
deliver: Entregar
toUnlock: para desbloquear
levelShortcut: LVL
belt: belt:
default: default:
name: &belt Cinta Transportadora name: &belt Cinta Transportadora
description: Transporta elementos, mantén pulsado y arrastra para colocar múltiples. description: Transporta elementos, mantén pulsado y arrastra para colocar varios.
wire:
default:
name: &wire Cable
description: Te permite transportar energía
miner: # Internal name for the Extractor miner: # Internal name for the Extractor
default: default:
@ -445,7 +466,7 @@ buildings:
description: Permite contruir un túnel para transportar los elementos por debajo de edificios y otras cintas transportadoras. description: Permite contruir un túnel para transportar los elementos por debajo de edificios y otras cintas transportadoras.
tier2: tier2:
name: Túnel de nivel II name: Túnel nivel II
description: Permite contruir un túnel para transportar los elementos por debajo de edificios y otras cintas transportadoras. description: Permite contruir un túnel para transportar los elementos por debajo de edificios y otras cintas transportadoras.
splitter: # Internal name for the Balancer splitter: # Internal name for the Balancer
@ -464,39 +485,46 @@ buildings:
cutter: cutter:
default: default:
name: &cutter Cortador name: &cutter Cortador
description: Corta las figuras de arriba a abajo y saca ambas mitades. <strong> ¡Si solo usas una parte, asegúrate de destruir la otra parte o se parará!</strong> description: Corta las figuras de arriba abajo y saca ambas mitades. <strong> ¡Si solo usas una parte, asegúrate de destruir la otra parte o se parará!</strong>
quad: quad:
name: Cortador (Cuádruple) name: Cortador (Cuádruple)
description: Corta figuras en cuatro partes. <strong> ¡Si solo usas una parte, asegúrate de destruir las otras partes o se parará!</strong> description: Corta figuras en cuatro partes. <strong> ¡Si solo usas una parte, asegúrate de destruir las otras partes o se parará!</strong>
advanced_processor:
default:
name: &advanced_processor Inversor de color
description: Invierte un color o una figura
rotater: rotater:
default: default:
name: &rotater Rotador name: &rotater Rotador
description: Rota la figura en sentido horario, 90 grados. description: Rota las figuras en sentido horario 90 grados.
ccw: ccw:
name: Rotador (Inverso) name: Rotador (Inverso)
description: Rota las figuras en sentido antihorario, 90 grados. description: Rota las figuras en sentido antihorario 90 grados.
stacker: stacker:
default: default:
name: &stacker Apilador name: &stacker Apilador
description: Junta ambos elementos. Si no pueden ser juntados, el elemento de la derecha es colocado encima del elemento de la izquierda. description: Apila ambos elementos. Si no se pueden unir, el elemento de la derecha se coloca encima del elemento de la izquierda.
mixer: mixer:
default: default:
name: &mixer Mezclador de colores name: &mixer Mezclador de colores
description: Junta dos colores usando mezcla aditiva. description: Mezcla dos colores usando mezcla aditiva.
painter: painter:
default: default:
name: &painter Pintor name: &painter Pintor
description: &painter_desc Colorea la figura entera con el color que entra por la izquierda. description: &painter_desc Colorea la figura completa de la entrada izquierda con el color de la entrada de arriba.
mirrored: mirrored:
name: *painter name: *painter
description: *painter_desc description: *painter_desc
double: double:
name: Pintor (Doble) name: Pintor (Doble)
description: Colorea las figuras que entran por la izquierda con el color que entra por arriba. description: Colorea las figuras de las entradas de la izquierda con el color de la entrada de arriba.
quad: quad:
name: Pintor (Cuádruple) name: Pintor (Cuádruple)
description: Permite colorear cada cuadrante de una figura con un color distinto. description: Permite colorear cada cuadrante de una figura con un color distinto.
@ -504,99 +532,112 @@ buildings:
trash: trash:
default: default:
name: &trash Basurero name: &trash Basurero
description: Acepta entradas desde todos los lados y los destruye. Para Siempre. description: Acepta entradas desde todos los lados y los destruye. Para siempre.
storage: storage:
name: Almacenamiento. name: Almacenamiento.
description: Guarda el exceso de elementos, hasta cierta cantidad. Puede ser usado para controlar el desborde de elementos. description: Guarda el exceso de elementos, hasta cierta cantidad. Puede ser usado para controlar el desborde de elementos.
hub: energy_generator:
deliver: Envía deliver: Entregar
toUnlock: para desbloquear
levelShortcut: LVL # This will be shown before the amount, so for example 'For 123 Energy'
toGenerateEnergy: Para
default:
name: &energy_generator Generador de energía
description: Genera energía consumiendo figuras.
wire_crossings:
default:
name: &wire_crossings Divisor de cables
description: Divide un cable en dos
merger:
name: Fusionador de cables
description: Fusiona dos cables en uno
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
reward_cutter_and_trash: reward_cutter_and_trash:
title: Cortador de Figuras title: Cortador de figuras
desc: ¡Acabas de desbloquear el <strong>cortador</strong> - corta las figuras por la mitad <strong>de arriba abajo</strong> sin importar su orientación!<br><br>Asegúrate de deshacerte de lo que no vayas a usar o <strong>se parará</strong> - ¡Para eso te he dado un basurero, que destruye todo lo que le pongas!
desc: Acabas de desbloquear el <strong>cortador</strong> - corta las figuras por la mitad <strong>de arriba abajo</strong> ¡Sin importar su orientación!<br><br>Asegúrate de deshacerte de lo que no vayas a usar o <strong>se parará</strong> - Para ese propósito te he dado una basura que destruye todo lo que le pongas!
reward_rotater: reward_rotater:
title: Rotador title: Rotador
desc: ¡El <strong>rotador</strong> ha sido desbloqueado! Rota figuras en sentido horario, 90 grados. desc: ¡El <strong>rotador</strong> se ha desbloqueado! Rota figuras en sentido horario 90 grados.
reward_painter: reward_painter:
title: Pintor title: Pintor
desc: >- desc: >-
El <strong>pintor</strong> ha sido desbloqueado - ¡Extrae vetas de color (igual que lo haces con las figuras) y combínalas con una figura en el pintor para colorearlas! <br><br>PD: Si tienes alguna forma de daltonismo, ¡hay un <strong>modo para daltonicos</strong> en las configuraciones! El <strong>pintor</strong> se ha desbloqueado - ¡Extrae vetas de color (igual que lo haces con las figuras) y combínalas con una figura en el pintor para colorearlas! <br><br>PD: Si tienes alguna forma de daltonismo, ¡hay un <strong>modo para daltónicos</strong> en los ajustes!
reward_mixer: reward_mixer:
title: Mezclador de Color title: Mezclador de color
desc: El <strong>mezclador</strong> ha sido desbloqueado - ¡Combina dos colores usando <strong>mezcla aditiva</strong> con este edificio! desc: El <strong>mezclador</strong> se ha desbloqueado - ¡Combina dos colores usando <strong>mezcla aditiva</strong> con este edificio!
reward_stacker: reward_stacker:
title: Apilador title: Apilador
desc: ¡Ahora puedes combinar figuras con el <strong>apilador</strong>! Ambas entradas son combinadas, y si pueden ser colocadas una junto a la otra serán <strong>fusionadas</strong>. ¡Si no, la entrada derecha será <strong>apilada encima</strong> de la entrada izquierda! desc: ¡Ahora puedes combinar figuras con el <strong>apilador</strong>! Ambas entradas son combinadas, y si pueden ser colocadas una junto a la otra serán <strong>fusionadas</strong>. ¡Si no, la entrada derecha será <strong>apilada encima</strong> de la entrada izquierda!
reward_splitter: reward_splitter:
title: Separador/Fusión title: Separador/Fusionador
desc: El <strong>balanceador</strong> multiusos ha sido desbloqueado - ¡Puede ser usado para construir fábricas más grandes <strong>separando y uniendo elementos</strong> en varias cintas transportadoras!<br><br> desc: El <strong>balanceador</strong> multiusos se ha desbloqueado - ¡Se puede usar para construir fábricas más grandes <strong>separando y uniendo elementos</strong> en varias cintas transportadoras!<br><br>
reward_tunnel: reward_tunnel:
title: Túnel title: Túnel
desc: El <strong>túnel</strong> ha sido desbloqueado - ¡Ahora puedes transportar elementos por debajo de edificios u otras cintas! desc: El <strong>túnel</strong> se ha desbloqueado - ¡Ahora puedes transportar elementos por debajo de edificios u otras cintas!
reward_rotater_ccw: reward_rotater_ccw:
title: Rotador Inverso title: Rotador inverso
desc: Has desbloqueado una variante del <strong>rotador</strong> - ¡Te permite rotar en sentido antihorario! Para construirlo selecciona el rotador y <strong>pulsa 'T' para ciclar por sus variantes</strong> desc: Has desbloqueado una variante del <strong>rotador</strong> - ¡Te permite rotar en sentido antihorario! Para construirlo selecciona el rotador y <strong>pulsa 'T' para ciclar por sus variantes</strong>
reward_miner_chainable: reward_miner_chainable:
title: Extractor en Cadena title: Extractor en cadena
desc: ¡Has desbloqueado el <strong>extractor en cadena</strong>! Puede <strong>enviar los recursos</strong> a otros extractores, así puedes extraer recursos más eficientemente desc: ¡Has desbloqueado el <strong>extractor en cadena</strong>! Puede <strong>enviar los recursos</strong> a otros extractores, extrayendo recursos más eficientemente.
reward_underground_belt_tier_2: reward_underground_belt_tier_2:
title: Túnel de Nivel II title: Túnel nivel II
desc: Has desbloqueado una nueva variante del <strong>túnel</strong> - ¡Tiene un <strong>mayor rango</strong>, ahora puedes mezclar los distintos tipos de túneles! desc: Has desbloqueado una nueva variante del <strong>túnel</strong> - ¡Tiene un <strong>mayor rango</strong>, y ahora puedes mezclar los distintos tipos de túneles!
reward_splitter_compact: reward_splitter_compact:
title: Balanceador Compacto title: Balanceador compacto
desc: Has desbloqueado una variante compacta del <strong>balanceador</strong> - ¡Acepta dos entradas y las junta en una salida! desc: Has desbloqueado una variante compacta del <strong>balanceador</strong> - ¡Acepta dos entradas y las junta en una salida!
reward_cutter_quad: reward_cutter_quad:
title: Cortador Cuádruple title: Cortador cuádruple
desc: Has desbloqueado una variante del <strong>cortador</strong> - ¡Permite cortar figuras en <strong>cuatro partes</strong> en vez de solo dos! desc: Has desbloqueado una variante del <strong>cortador</strong> - ¡Permite cortar figuras en <strong>cuatro partes</strong> en vez de solo dos!
reward_painter_double: reward_painter_double:
title: Doble Pintor title: Pintor doble
desc: Has desbloqueado una variante del <strong>pintor</strong> - ¡Funciona como un pintor regular pero procesa <strong>dos formas a la vez</strong>, consumiendo solo un color en vez de dos! desc: Has desbloqueado una variante del <strong>pintor</strong> - ¡Funciona como un pintor normal pero procesa <strong>dos figuras a la vez</strong>, consumiendo solo un color en vez de dos!
reward_painter_quad: reward_painter_quad:
title: Cuádruple Pintor title: Pintor cuádruple
desc: Has desbloqueado una variante del <strong>pintor</strong> - ¡Permite pintar cada parte de una figura individualmente! desc: Has desbloqueado una variante del <strong>pintor</strong> - ¡Permite pintar cada parte de una figura individualmente!
reward_storage: reward_storage:
title: Almacenamiento Intermedio title: Almacenamiento intermedio
desc: Has desbloqueado una variante de la <strong>basura</strong> - ¡Permite almacenar elementos hasta una cierta capacidad! desc: Has desbloqueado una variante del <strong>basurero</strong> - ¡Permite almacenar elementos hasta una cierta capacidad!
reward_freeplay: reward_freeplay:
title: Juego libre title: Juego libre
desc: ¡Lo has conseguido! ¡Has desbloqueado el <strong>Juego Libre</strong>! ¡Esto significa que las figuras son ahora generadas aleatoriamente! (¡No te preocupes, más contenido está planeado para el juego completo!) desc: ¡Lo has conseguido! ¡Has desbloqueado el <strong>Juego Libre</strong>! ¡Esto significa que ahora las figuras se generan aleatoriamente! (¡No te preocupes, hay más contenido planeado para el juego completo!)
reward_blueprints: reward_blueprints:
title: Planos title: Planos
desc: ¡Ahora puedes <strong>copiar y pegar</strong> partes de tu fábrica! Selecciona un área (Mantén pulsado CTRL, después arrastra con el ratón), y pulsa 'C' para copiarlo.<br><br>Pegarlo <strong>no es gratis</strong>, necesitas producir <strong>figuras de planos</strong> para poder permitírtelo (Esas que acabas de entregar). desc: ¡Ahora puedes <strong>copiar y pegar</strong> partes de tu fábrica! Selecciona un área (mantén pulsado CTRL, después arrastra con el ratón), y pulsa 'C' para copiarlo.<br><br>Pegarlo <strong>no es gratis</strong>, necesitas producir <strong>figuras de planos</strong> para poder permitírtelo (Esas que acabas de entregar).
# Special reward, which is shown when there is no reward actually # Special reward, which is shown when there is no reward actually
no_reward: no_reward:
title: Siguiente Nivel title: Siguiente nivel
desc: >- desc: >-
Este nivel no da recompensa, ¡pero el siguiente si! <br><br> PS: Mejor no destruyas la fábrica que tienes - ¡Necesitarás <strong>todas</strong> esas figuras más adelante para <strong>desbloquear mejoras</strong>! Este nivel no da recompensa, ¡pero el siguiente sí! <br><br> PD: Es mejor que no destruyas la fábrica que tienes - ¡Necesitarás <strong>todas</strong> esas figuras más adelante para <strong>desbloquear mejoras</strong>!
no_reward_freeplay: no_reward_freeplay:
title: Siguiente Nivel title: Siguiente nivel
desc: >- desc: >-
¡Felicidades! ¡Por cierto, hay más contenido planeado para el juego completo! ¡Felicidades! ¡Por cierto, hay más contenido planeado para el juego completo!
settings: settings:
title: Opciones title: Opciones
@ -606,15 +647,15 @@ settings:
versionBadges: versionBadges:
dev: Desarrollo dev: Desarrollo
staging: Staging staging: Escenificación
prod: Producción prod: Producción
buildDate: Generado <at-date> buildDate: Generado <at-date>
labels: labels:
uiScale: uiScale:
title: Escala de la Interfaz title: Escala de la interfaz
description: >- description: >-
Cambia el tamaño de la interfaz de usuario. La interfaz seguirá escalando dependiendo de la resolución de tu dispositivo, pero esta opción controla la cantidad de la escala. Cambia el tamaño de la interfaz de usuario. La interfaz se seguirá escalando dependiendo de la resolución de tu dispositivo, pero esta opción controla la cantidad de escalado.
scales: scales:
super_small: Muy pequeño super_small: Muy pequeño
small: Pequeño small: Pequeño
@ -622,24 +663,38 @@ settings:
large: Grande large: Grande
huge: Enorme huge: Enorme
autosaveInterval:
title: Intervalo de autoguardado
description: >-
Controla con qué frecuencia se guarda el juego automáticamente. También se puede desactivar por completo.
intervals:
one_minute: 1 minuto
two_minutes: 2 minutos
five_minutes: 5 minutos
ten_minutes: 10 minutos
twenty_minutes: 20 minutos
disabled: Desactivado
scrollWheelSensitivity: scrollWheelSensitivity:
title: Sensibilidad del zoom title: Sensibilidad del zoom
description: >- description: >-
Cambia cómo de sensible es el zoom (Tanto la rueda del ratón como el trackpad) Cambia cómo de sensible es el zoom (Tanto la rueda del ratón como el panel táctil)
sensitivity: sensitivity:
super_slow: Muy Lento super_slow: Muy lento
slow: Lento slow: Lento
regular: Normal regular: Normal
fast: Rápido fast: Rápido
super_fast: Muy Rápido super_fast: Muy rápido
movementSpeed: movementSpeed:
title: Velocidad de movimiento title: Velocidad de movimiento
description: Cambia qué tan rápido se mueve la cámara al usar el teclado. description: >-
Cambia cómo de rápido se mueve la vista usando el teclado.
speeds: speeds:
super_slow: Super lento super_slow: Super lento
slow: Lento slow: Lento
regular: Regular regular: Normal
fast: Rápido fast: Rápido
super_fast: Súper rápido super_fast: Súper rápido
extremely_fast: Extremadamente rápido extremely_fast: Extremadamente rápido
@ -647,181 +702,171 @@ settings:
language: language:
title: Idioma title: Idioma
description: >- description: >-
Cambia el idioma. Todas las traducciones son contribuciones de los usuarios y pueden estar incompletas! Cambia el idioma. ¡Todas las traducciones son contribuciones de los usuarios y pueden estar incompletas!
enableColorBlindHelper:
title: Modo para daltónicos
description: >-
Activa varias herramientas que facilitan jugar si tienes alguna forma de daltonismo.
fullscreen: fullscreen:
title: Pantalla Completa title: Pantalla Completa
description: >- description: >-
Es recomendado jugar en pantalla completa para conseguir la mejor experiencia. Solo disponible en el juego completo. Se recomienda jugar en pantalla completa para conseguir la mejor experiencia. Solo disponible en el juego completo.
soundsMuted: soundsMuted:
title: Silenciar Sonidos title: Silenciar sonidos
description: >- description: >-
Si está habilitado, silencia todos los efectos de sonido. Si está habilitado, silencia todos los efectos de sonido.
musicMuted: musicMuted:
title: Silenciar Música title: Silenciar música
description: >- description: >-
Si está habilitado, silencia toda la música. Si está habilitado, silencia toda la música.
theme: theme:
title: Tema del Juego title: Tema del juego
description: >- description: >-
Elije el tema del juego (claro/oscuro). Elige el tema del juego (claro/oscuro).
themes: themes:
dark: Oscuro dark: Oscuro
light: Claro light: Claro
refreshRate: refreshRate:
title: Objetivo de Simulación title: Objetivo de simulación
description: >- description: >-
Si tienes un monitor de 144hz, cambia la tasa de refresco. Así el juego se ejecutará correctamente a una mayor tasa de refresco. Esto puede disminuir los FPS si tu ordenador no es lo suficientemente rápido. Si tienes un monitor de 144hz, cambia la tasa de refresco. Así el juego se ejecutará correctamente a una mayor tasa de refresco. Esto puede disminuir los FPS si tu ordenador no es lo suficientemente rápido.
alwaysMultiplace: alwaysMultiplace:
title: Colocación Múltiple title: Colocación múltiple
description: >- description: >-
Si está activado, todos los edificios quedarán seleccionados después de colocarlos hasta que lo canceles. Es equivalente a pulsar SHIFT permanentemente. Si está activado, todos los edificios se quedarán seleccionados después de colocarlos hasta que lo canceles. Equivale a pulsar SHIFT permanentemente.
offerHints: offerHints:
title: Pistas y Tutorial title: Pistas y tutoriales
description: >- description: >-
Activa para recibir pistas y tutoriales mientras juegas. También oculta algunos elementos de la interfaz hasta cierto nivel para hacer más fácil la introducción al juego. Actívalo para recibir pistas y tutoriales mientras juegas. También oculta algunos elementos de la interfaz hasta cierto nivel para hacer más fácil la introducción al juego.
enableTunnelSmartplace: enableTunnelSmartplace:
title: Túneles Inteligentes title: Túneles inteligentes
description: >- description: >-
Si está activado, colocar túneles automáticamente eliminará las cintas transportadoras innecesarias. Esto también permite arrastrar con el ratón y los túneles excedentes serán eliminados. Si está activado, al colocar túneles se eliminará automáticamente las cintas transportadoras innecesarias. También te permite arrastrar con el ratón y los túneles restantes serán eliminados.
vignette: vignette:
title: Viñeta title: Viñeta
description: >- description: >-
Activa el efecto viñeta que oscurece las esquinas de la pantalla y hace el texto más fácil de leer. Activa el efecto viñeta que oscurece las esquinas de la pantalla y hace el texto más fácil de leer.
autosaveInterval: rotationByBuilding:
title: Intervalo de Autoguardado title: Rotación por tipo de edificio
description: >- description: >-
Controla cada cuánto tiempo se guarda el juego automáticamente. Aquí también puedes deshabilitarlo por completo. Cada tipo de edificio recuerda la última rotación que le diste individualmente. Esto puede ser más cómodo si cambias a menudo entre colocar diferentes tipos de edificio.
intervals:
one_minute: 1 Minuto
two_minutes: 2 Minutos
five_minutes: 5 Minutos
ten_minutes: 10 Minutos
twenty_minutes: 20 Minutos
disabled: Deshabilitado
compactBuildingInfo: compactBuildingInfo:
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: >-
Deshabilita los diálogos de advertencia que se muestran cuando se cortan/eliminan más de 100 elementos. Deshabilita los diálogos de advertencia que se muestran cuando se cortan/eliminan más de 100 elementos.
enableColorBlindHelper:
title: Modo para Daltónicos
description: Activa varias herramientas que facilitan jugar si tienes alguna forma de daltonismo.
rotationByBuilding:
title: Rotación por tipo de edificio
description: >-
Cada tipo de edificio recuerda la última rotación que le diste individualmente.
Esto puede ser más cómodo si cambias a menudo entre colocar diferentes tipos de edificio.
keybindings: keybindings:
title: Atajos de Teclado title: Atajos de teclado
hint: >- hint: >-
Pista: Asegúrate de usar CTRL, SHIFT y ALT! Habilitan distintas opciones de colocación. Pista: ¡Asegúrate de usar CTRL, SHIFT y ALT! Habilitan distintas opciones de colocación.
resetKeybindings: Reestablecer Atajos de Teclado
resetKeybindings: Reestablecer atajos de teclado
categoryLabels: categoryLabels:
general: Aplicación general: Aplicación
ingame: Juego ingame: Juego
navigation: Navegación navigation: Navegación
placement: Colocación placement: Colocación
massSelect: Selección Masiva massSelect: Selección masiva
buildings: Atajos de Edificios buildings: Atajos de edificios
placementModifiers: Modificadores de Colocación placementModifiers: Modificadores de colocación
mappings: mappings:
confirm: Confirmar confirm: Confirmar
back: Atrás back: Atrás
mapMoveUp: Mover Arriba mapMoveUp: Mover arriba
mapMoveRight: Mover a la Derecha mapMoveRight: Mover a la derecha
mapMoveDown: Move Abajo mapMoveDown: Mover abajo
mapMoveLeft: Move a la Izquierda mapMoveLeft: Mover a la izquierda
centerMap: Centro del Mapa mapMoveFaster: Mover más rápido
centerMap: Centrar mapa
mapZoomIn: Acercarse mapZoomIn: Acercarse
mapZoomOut: Alejarse mapZoomOut: Alejarse
createMarker: Crear Marca createMarker: Crear marcador
menuOpenShop: Mejoras menuOpenShop: Mejoras
menuOpenStats: Estadísticas menuOpenStats: Estadísticas
menuClose: Cerrar menú
toggleHud: Activar interfáz toggleHud: Activar HUD
toggleFPSInfo: Activa FPS e información de depurado toggleFPSInfo: Activar FPS e información de depurado
switchLayers: Cambiar capas
exportScreenshot: Exportar la base completa como imagen
belt: *belt belt: *belt
splitter: *splitter splitter: *splitter
underground_belt: *underground_belt underground_belt: *underground_belt
miner: *miner miner: *miner
cutter: *cutter cutter: *cutter
advanced_processor: *advanced_processor
rotater: *rotater rotater: *rotater
stacker: *stacker stacker: *stacker
mixer: *mixer mixer: *mixer
energy_generator: *energy_generator
painter: *painter painter: *painter
trash: *trash trash: *trash
wire: *wire
pipette: Pipette
rotateWhilePlacing: Rotar rotateWhilePlacing: Rotar
rotateInverseModifier: >- rotateInverseModifier: >-
Modificador: Rotar inversamente en su lugar Modificador: Rotar inversamente
cycleBuildingVariants: Ciclar variantes cycleBuildingVariants: Ciclar variantes
confirmMassDelete: Confirmar Borrado Masivo confirmMassDelete: Borrar área
cycleBuildings: Ciclar Edificios pasteLastBlueprint: Pegar último plano
lockBeltDirection: Colocar en línea recta cycleBuildings: Ciclar edificios
lockBeltDirection: Activar planificador de cintas transportadoras
switchDirectionLockSide: >-
Planner: Cambiar sentido
massSelectStart: Mantén pulsado y arrastra para empezar massSelectStart: Mantén pulsado y arrastra para empezar
massSelectSelectMultiple: Seleccionar múltiples áreas massSelectSelectMultiple: Seleccionar múltiples áreas
massSelectCopy: Copiar área massSelectCopy: Copiar área
massSelectCut: Cortar área
placementDisableAutoOrientation: Desactivar orientación automática placementDisableAutoOrientation: Desactivar orientación automática
placeMultiple: Permanecer en modo de construcción placeMultiple: Permanecer en modo de construcción
placeInverse: Invierte automáticamente la orientación de las cintas transportadoras placeInverse: Invierte automáticamente la orientación de las cintas transportadoras
pasteLastBlueprint: Pegar último plano
massSelectCut: Cortar área
exportScreenshot: Exportar toda la base como imagen
mapMoveFaster: Mover más rápido
switchDirectionLockSide: "Planner: Switch side"
pipette: Pipette
about: about:
title: Sobre el Juego title: Sobre el juego
body: >- body: >-
Este juego es de código abierto y ha sido desarrollado por <a href="https://github.com/tobspr" Este juego es de código abierto y ha sido desarrollado por <a href="https://github.com/tobspr" target="_blank">Tobias Springer</a> (Ese soy yo).<br><br>
target="_blank">Tobias Springer</a> (Ese soy yo).<br><br>
Si quieres contribuir revisa <a href="<githublink>" Si quieres contribuir, revisa <a href="<githublink>" target="_blank">shapez.io en github</a>.<br><br>
target="_blank">shapez.io en github</a>.<br><br>
Este juego no habría sido posible si no fuera por la gran comunidad de Discord Este juego no habría sido posible si no fuera por la gran comunidad de Discord en mis juegos - ¡Deberías unirte al <a href="<discordlink>" target="_blank">servidor de Discord</a>!<br><br>
sobre mis juegos - ¡Deberías unirte al <a href="<discordlink>"
target="_blank">servidor de Discord</a>!<br><br>
La banda sonora ha sido creada por <a href="https://soundcloud.com/pettersumelius" La banda sonora ha sido creada por <a href="https://soundcloud.com/pettersumelius" target="_blank">Peppsen</a> - Es genial.<br><br>
target="_blank">Peppsen</a> - Él es genial.<br><br>
Finalmente muchísimas gracias a mi amigo <a Por último, muchísimas gracias a mi amigo <a href="https://github.com/niklas-dahl" target="_blank">Niklas</a> - Sin nuestras sesiones de Factorio, este juego nunca existiría.
href="https://github.com/niklas-dahl" target="_blank">Niklas</a> - Sin nuestras sesiones
de Factorio este juego nunca existiría.
changelog: changelog:
title: Historial de Cambios title: Historial de cambios
demo: demo:
features: features:
restoringGames: Recuperando partidas guardadas restoringGames: Recuperando partidas guardadas
importingGames: Importando partidas guardadas importingGames: Importando partidas guardadas
oneGameLimit: Limitado a una partida guardada oneGameLimit: Limitado a una partida guardada
customizeKeybindings: Personalizando Atajos de Teclado customizeKeybindings: Personalizando atajos de teclado
exportingBase: Exportando base entera como captura de pantalla 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

@ -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
@ -73,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -134,28 +155,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 +259,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 +267,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 +305,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 +546,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 +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: Johdot
desc: TODO
no_reward_freeplay: no_reward_freeplay:
title: Seuraava taso title: Seuraava taso
desc: >- desc: >-
@ -833,6 +841,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,49 +30,69 @@ 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 est un jeu ou il faut construire des usines pour automatiser la création et la transformation de formes de plus en plus complexes sur une carte infinie.
En livrant les bonnes formes tu vas progresser dans le jeu et débloquer des améliorations pour accélerer ton usine.
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] ! Comme la demande de formes augmente, il vas falloir agrandir ton usine pour produire plus - N'oublie pas les resources, il vas falloir s'étendre tout autour de la [b]carte infinie[/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. Puis il vas falloir mélanger les couleurs et peindres tes formes avec - Combine du rouge, du bleu et du vert pour produire différente couleurs et peindre des formes pour satisfaire la demande.
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 ! Ce jeu propose 18 niveaux progressifs (qui devraient vous occuper pendant des heures!) et j'ajoute constament plus de contenu - Il y en as beaucoup qui arrive!
Acheter le jeu te donnes accès à la version hors-ligne qui as plus de contenu et tu recevras l'accès aux nouvelles fonctionnalités.
[b]Avantage de la version complète[/b] [b]Avantages de la version hors-ligne[/b]
[list] [list]
[*] Balises [*] Mode sombre
[*] Nombre illimité de sauvegardes [*] Balises infinies
[*] Thème sombre [*] Sauvegardes infinies
[*] Plus de paramètres de configuration [*] Plus de setting
[*] Acheter la version complète m'aide à poursuivre le développement de shapez.io ❤️ [*] Arrive bientôt: Cables et éléctricité! Sort en Juillet 2020.
[*] Encore plus de fonctionnalités à l'avenir ! [*] Arrive bientôt: Plus de niveaux
[*] Me permet de plus déveloper le jeu ❤️
[/list] [/list]
[b]Fonctionnalités planifiées & suggestions de la communauté[/b] [b]Mises à jours futures[/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. Je fait souvent des mises à jours et essaye d'en sortir une part semaine!
[list] [list]
[*] Mode Histoire où les batiments ont un coût en formes [*] Plusieurs cartes et challenges (e.g. carte avec des obstacles)
[*] Plus de niveaux et de batiments (en exclusivité dans la version complète) [*] Puzzles (Livrer les formes avec des batiments limités/une carte limitée)
[*] Différentes cartes, contenant éventuellement des obstacles [*] Un mode histoire ou les bâtiments on un coût
[*] 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) [*] Générateur de carte configurable (Configure les ressources/formes leur taille, densité et plus)
[*] Davantage de types de formes [*] Plus de formes
[*] Performance améliorée (bien que le jeu tourne déjà de manière tout à fait décente !) [*] Meilleures performances (Le jeu est déja très optimisé!)
[*] Adaptation de l'affichage des couleurs à différentes formes de daltonisme [*] Et bien plus!
[*] 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]Ce jeu est open source![/b]
Tout le monde peut contribuer, je suis très impliqué dans la communeauté et essaye de regarder toutes les suggestions et prendre les retours si possible.
Vas voir mon trello pour plus d'informations!
[b]Liens[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Discord officiel[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Trello[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/url]
[*] [url=https://github.com/tobspr/shapez.io]Code source (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Aide à traduire[/url]
[/list]
discordLink: Discord officiel - Parles avec moi!
global: global:
loading: Chargement loading: Chargement
error: Erreur error: Erreur
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. cf wikipedia système international d'unité # The suffix for large numbers, e.g. 1.3k, 400.2M, etc. cf wikipedia système international d'unité
# For french: https://fr.wikipedia.org/wiki/Pr%C3%A9fixes_du_Syst%C3%A8me_international_d%27unit%C3%A9s # For french: https://fr.wikipedia.org/wiki/Pr%C3%A9fixes_du_Syst%C3%A8me_international_d%27unit%C3%A9s
@ -132,28 +152,6 @@ 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 +260,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 +270,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 +296,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 +411,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 +525,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 +826,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
@ -104,6 +120,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: " " thousandsDivider: " "
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -168,29 +187,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 +259,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 +293,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 +301,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
@ -577,6 +579,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 +665,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: >-
@ -814,7 +819,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 +875,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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: E thousands: E
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +523,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 +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
@ -799,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: 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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +197,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 +296,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 +343,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 +412,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 +524,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 +756,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 +828,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: ロード中
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +252,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 +296,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 +412,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 +524,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 +752,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 +825,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: 로딩중
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -130,29 +150,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 +258,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 +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
@ -292,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)
@ -407,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:
@ -517,6 +523,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 +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

@ -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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +524,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 +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
@ -799,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

@ -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 een spel dat draait om het bouwen van fabrieken om steeds complexere vormen te produceren en deze productie te automatiseren in een oneindig groot speelveld.
Door het leveren van de gevraagde vormen, kom je verder in het spel en ontgrendel je upgrades waar je fabriek sneller van wordt.
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! De vraag naar vormen wordt steeds groter, wat betekent dat je de fabriek moet uitbreiden om de vraag tegemoet te komen. Om de juiste grondstoffen te delven zul je steeds verder in het [b]oneindig grote speelveld[/b] moeten gaan werken!
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. 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.
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! 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!
Wanneer je het spel koopt dan krijg je toegang tot de standalone versie. Deze heeft extra functies en je krijgt ook toegang tot nieuwe ontwikkelingen.
[b]Standalone voordelen[/b] [b]Standalone Voordelen[/b]
[list] [list]
[*] Markeringen
[*] Oneindig veel Savegames
[*] Donkere modus [*] Donkere modus
[*] Meer opties [*] Oneindig veel markeringen
[*] Met jouw steun kan ik shapez.io verder ontwikkelen ❤️ [*] Oneindig veel savegames
[*] Meer functies in de toekomst! [*] Extra opties
[*] Binnenkort: Kabels & Energie! Hopelijk vanaf eind juli 2020.
[*] Binnenkort: Meer Levels
[*] Helpt mij om shapez.io verder te ontwikkelen ❤️
[/list] [/list]
[b]Geplande functies & suggesties van de community[/b] [b]Geplande 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. Ik update het spel regelmatig en probeer dit zeker eenmaal per week te doen!
[list] [list]
[*] Verhaalmodus, waar gebouwen specifieke vormen kosten om te bouwen [*] Verschillende speelvelden en uitdagingen (bijv. obstakels)
[*] Meer levels & gebouwen (exclusief in de standalone) [*] Puzzels (Bezorg de gevraagde vorm binnen een afgesloten gebied of met bepaalde gebouwen)
[*] Verschillende mappen en misschien obstakels in mappen [*] Een verhaalmodus waar gebouwen iets kosten
[*] Aangepaste mappen aanmaken (Het kiezen van de hoeveelheid en de grootte van de grondstofbronnen, seeds, en meer) [*] Aanpasbare speelveldgenerator (Kies de hoeveelheid en grootte van grondstoffen, seed en meer)
[*] Meer soorten vormen [*] Meer soorten vormen
[*] Meer prestatieverbeteringen (Hoewel het spel al vrij goed loopt!) [*] Prestatieverbeteringen (Het spel loopt al vrij goed!)
[*] Kleurenblindmodus
[*] En nog veel meer! [*] En nog veel meer!
[/list] [/list]
Bekijk mijn trello-bord voor het volledige stappenplan! https://trello.com/b/ISQncpJP/shapezio [b]Dit spel is open source![/b]
Iedreen kan bijdragen. Ik ben actief in de community en probeer naar alle suggesties en feedback te kijken en deze mee te nemen in de ontwikkeling.
Bekijk mijn trello-bord voor het volledige stappenplan!
[b]Links[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Stappenplan[/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 met vertalen[/url]
[/list]
discordLink: Officiële Discord - Chat met mij!
global: global:
loading: Laden loading: Laden
@ -74,11 +91,14 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: "."
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: K thousands: k
millions: M millions: M
billions: G billions: B
trillions: T trillions: T
# Shown for infinitely big numbers # Shown for infinitely big numbers
@ -131,28 +151,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>
@ -170,7 +169,7 @@ dialogs:
deleteGame: Ik weet wat ik doe deleteGame: Ik weet wat ik doe
viewUpdate: Zie Update viewUpdate: Zie Update
showUpgrades: Zie Upgrades showUpgrades: Zie Upgrades
showKeybindings: Zie sneltoetsen showKeybindings: Zie Sneltoetsen
importSavegameError: importSavegameError:
title: Import Error title: Import Error
@ -255,6 +254,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 +268,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: Bevestig knippen
desc: Je kunt het je niet veroorloven om de selectie te plakken! Weet je zeker dat je het wil knippen?
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
@ -283,13 +287,14 @@ ingame:
placeBuilding: Plaats gebouw placeBuilding: Plaats gebouw
createMarker: Plaats markering createMarker: Plaats markering
delete: Vernietig delete: Vernietig
pasteLastBlueprint: Plak de laatst gekopiëerde blauwdruk pasteLastBlueprint: Plak laatst gekopiëerde blauwdruk
lockBeltDirection: Maak gebruik van de lopende band planner lockBeltDirection: Gebruik lopende band planner
plannerSwitchSide: Draai de richting van de planner plannerSwitchSide: Draai de richting van de planner
cutSelection: Knip cutSelection: Knip
copySelection: Kopieer copySelection: Kopieer
clearSelection: Cancel selectie clearSelection: Annuleer selectie
pipette: Pipet pipette: Pipet
switchLayers: Wissel lagen
# 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)
@ -366,7 +371,7 @@ ingame:
buttons: buttons:
continue: Verder spelen continue: Verder spelen
settings: Opties settings: Opties
menu: Terug naar het menu menu: Terug naar het Menu
# Bottom left tutorial hints # Bottom left tutorial hints
tutorialHints: tutorialHints:
@ -405,9 +410,11 @@ ingame:
cyan: Cyaan cyan: Cyaan
white: Wit white: Wit
uncolored: Geen kleur uncolored: Geen kleur
black: Zwart
shapeViewer: shapeViewer:
title: Lagen title: Lagen
empty: Leeg empty: Leeg
copyKey: Kopiëer sleutel
# All shop upgrades # All shop upgrades
shopUpgrades: shopUpgrades:
@ -515,6 +522,27 @@ buildings:
deliver: Lever deliver: Lever
toUnlock: om te ontgrendelen toUnlock: om te ontgrendelen
levelShortcut: LVL levelShortcut: LVL
wire:
default:
name: Energiekabel
description: Voor transport van energie.
advanced_processor:
default:
name: Kleur-omkeerder
description: Keert de kleur om van een voorwerp.
energy_generator:
deliver: Lever
toGenerateEnergy: Voor
default:
name: Energiegenerator
description: Wekt energie op door vormen te consumeren.
wire_crossings:
default:
name: Kabelsplijter
description: Splijt één kabel in twee.
merger:
name: Kabelvoeger
description: Voegt twee kabels samen tot één.
storyRewards: storyRewards:
# Those are the rewards gained from completing the store # Those are the rewards gained from completing the store
@ -565,7 +593,7 @@ storyRewards:
Je hebt een compacte variant van de <strong>verdeler</strong> ontgrendeld - Dit voegt twee lopende banden samen tot één. Je hebt een compacte variant van de <strong>verdeler</strong> ontgrendeld - Dit voegt twee lopende banden samen tot één.
reward_cutter_quad: reward_cutter_quad:
title: Quad Cutting title: Quad Knippen
desc: Je hebt een variant van de <strong>knipper</strong> ontgrendeld - Dit knipt vormen in <strong>vier stukken</strong> in plaats van twee! desc: Je hebt een variant van de <strong>knipper</strong> ontgrendeld - Dit knipt vormen in <strong>vier stukken</strong> in plaats van twee!
reward_painter_double: reward_painter_double:
@ -577,7 +605,7 @@ storyRewards:
desc: Je hebt een variant van de <strong>verver</strong> ontgrendeld - Het verft elk kwadrant van de vorm een andere kleur! desc: Je hebt een variant van de <strong>verver</strong> ontgrendeld - Het verft elk kwadrant van de vorm een andere kleur!
reward_storage: reward_storage:
title: Opslag buffer title: Opslagbuffer
desc: Je hebt een variant van de <strong>vuilnisbak</strong> ontgrendeld - Het slaat voorwerpen op tot een zekere hoeveelheid! desc: Je hebt een variant van de <strong>vuilnisbak</strong> ontgrendeld - Het slaat voorwerpen op tot een zekere hoeveelheid!
reward_freeplay: reward_freeplay:
@ -797,6 +825,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: Sluit Menu
switchLayers: Lagen omwisselen
advanced_processor: Kleur-omvormer
energy_generator: Energiegenerator
wire: Energiekabel
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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +259,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 +267,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 +293,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 +409,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 +521,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 +754,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 +826,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 to gra o budowie fabryk, która automatyzuje tworzenie i przetwarzanie coraz bardziej złożonych kształtów na nieskończenie powiększającej się mapie.
Po dostarczeniu wymaganych kształtów będziesz postępować w grze i odblokowywać ulepszenia, aby przyspieszyć fabrykę.
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! Wraz ze wzrostem zapotrzebowania na kształty, będziesz musiał powiększyć swoją fabrykę, aby zaspokoić popyt - Nie zapominaj jednak o zasobach, będziesz musiał rozwinąć się na [b] nieskończonej mapie [/ 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. Wkrótce będziesz musiał mieszać kolory i malować nimi kształty - Połącz zasoby kolorów czerwonego, zielonego i niebieskiego, aby uzyskać różne kolory i pomalować kształty, aby zaspokoić popyt.
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! Ta gra oferuje 18 poziomów progresywnych (które powinny być zajęte przez wiele godzin!), Ale ciągle dodam nowe treści - Wiele jest zaplanowanych!
Zakup gry daje dostęp do samodzielnej wersji, która ma dodatkowe funkcje, a także dostęp do nowo opracowanych funkcji.
[b]Zalety pełnej wersji[/b] [b]Samodzielne zalety[/b]
[list] [list]
[*] Znaczniki [*] Tryb ciemny
[*] Nielimitowana ilość zapisanych gier [*] Nieograniczone punkty trasy
[*] Ciemny motyw gry [*] Nieograniczona liczba zapisanych gier
[*] Więcej ustawień [*] Dodatkowe ustawienia
[*] Pomożesz mi w dalszym rozwijaniu shapez.io ❤️ [*] Wkrótce: przewody i energia! Dążenie do (z grubsza) końca lipca 2020 r.
[*] Więcej zawartości niedługo! [*] Wkrótce: Więcej poziomów
[*] Pozwala mi dalej rozwijać shapez.io ❤️
[/list] [/list]
[b]Zaplanowana zawartość & Sugestie społeczności[/b] [b]Przyszłe aktualizacje[/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. Aktualizuję grę bardzo często i staram się przesyłać aktualizacje przynajmniej co tydzień!
[list] [list]
[*] Kampania, gdzie do budowy potrzeba kształtów [*] Różne mapy i wyzwania (np. Mapy z przeszkodami)
[*] Więcej poziomów i budynków (tylko w pełnej wersji) [*] Puzzle (Dostarcz żądany kształt z ograniczonym obszarem / zestawem budynków)
[*] Inne mapy, może z przeszkodami [*] Tryb fabularny, w którym budynki kosztują
[*] Możliwość modyfikowania parametrów generowanej mapy (ilość i rozmiar surowców, ziarno świata, itd.) [*] Konfigurowalny generator map (Konfiguruj rozmiar / gęstość zasobu / kształtu, ziarno i więcej)
[*] Więcej rodzajów kształtów [*] Dodatkowe typy kształtów
[*] Optymalizacja (mimo wszystko gra już działa dość płynnie!) [*] Ulepszenia wydajności (gra działa już całkiem dobrze!)
[*] Tryb dla ślepoty barw
[*] I wiele więcej! [*] I wiele więcej!
[/list] [/list]
Sprawdź tablicę trello i zobacz nad czym teraz pracuję! https://trello.com/b/ISQncpJP/shapezio [b]Ta gra jest open source![/b]
Każdy może się przyłączyć, jestem aktywnie zaangażowany w społeczność i staram się przejrzeć wszystkie sugestie i wziąć pod uwagę opinie tam, gdzie to możliwe.
Zapoznaj się z moją tablicą trello, aby zobaczyć pełną mapę drogową!
[b]Linki[/b]
[list]
[*] [url=https://discord.com/invite/HN7EVzV]Oficjalna 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]Kod źródłowy (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Pomóż w tłumaczeniu[/url]
[/list]
discordLink: Oficjalna Discord - Porozmawiaj ze mną!
global: global:
loading: Ładowanie loading: Ładowanie
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: " " thousandsDivider: " "
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
# Translator note: We don't use SI size units for common speak, but if you want to keep it SI # Translator note: We don't use SI size units for common speak, but if you want to keep it SI
# ...also, Polish has wierd nature of diffrent number naming, we have "million" and "milliard"-thing wich actually is billion in English # ...also, Polish has wierd nature of diffrent number naming, we have "million" and "milliard"-thing wich actually is billion in English
@ -136,29 +156,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,7 +257,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: Edytuj Znacznik
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 +273,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: Potwierdź cięcie
desc: Nie możesz sobie pozwolić na wklejenie tego obszaru! Czy na pewno chcesz to wyciąć?
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 +299,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 +311,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)
@ -353,7 +357,7 @@ ingame:
# 2nd translator's note: I think translating this to "level" is better (and that's how Google Translate translates it :)) # 2nd translator's note: I think translating this to "level" is better (and that's how Google Translate translates it :))
tier: Poziom <x> tier: Poziom <x>
# The roman number for each tier # The roman numeral 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: POZIOM MAKSYMALNY (Szybkość x<currentMult>) maximumLevel: POZIOM MAKSYMALNY (Szybkość x<currentMult>)
@ -410,6 +414,7 @@ ingame:
shapeViewer: shapeViewer:
title: Poziomy title: Poziomy
empty: Puste empty: Puste
copyKey: Copy Key
# Interactive tutorial # Interactive tutorial
interactiveTutorial: interactiveTutorial:
@ -529,6 +534,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
@ -750,14 +776,14 @@ settings:
100 budynków. 100 budynków.
enableColorBlindHelper: enableColorBlindHelper:
title: Color Blind Mode title: Tryb ślepy na kolory
description: Enables various tools which allow to play the game if you are color blind. description: Włącza różne narzędzia, które pozwalają ci grać, jeśli jesteś daltonistą.
rotationByBuilding: rotationByBuilding:
title: Rotation by building type title: Obrót według typu budynku
description: >- description: >-
Each building type remembers the rotation you last set it to individually. Każdy typ budynku pamięta obrót, który ostatnio ustawiłeś indywidualnie.
This may be more comfortable if you frequently switch between placing Może to być wygodniejsze, jeśli często przełączasz się między umieszczaniem
different building types. różne typy budynków.
keybindings: keybindings:
title: Klawiszologia title: Klawiszologia
@ -825,6 +851,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: Zamknij Menu
switchLayers: zamknij menu
advanced_processor: Kolor Falownika
energy_generator: Generator Energii
wire: Drut Energetyczny
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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: "."
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: K thousands: K
@ -130,28 +150,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 +254,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 +269,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 +296,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 +411,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 +525,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 +756,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 +827,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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +269,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 +295,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 +411,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 +522,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 +754,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 +826,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ă
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +267,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 +294,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 +410,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 +521,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 +819,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: Загрузка
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -132,28 +152,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 +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 своих маркера в демо-версии. Приобретите полную версию для безлимитных маркеров.
@ -272,6 +272,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 +298,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 +414,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 +525,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 +756,11 @@ settings:
title: Режим Дальтоника title: Режим Дальтоника
description: Включает различные инструменты, которые позволяют играть в игру дальтоникам. description: Включает различные инструменты, которые позволяют играть в игру дальтоникам.
rotationByBuilding: rotationByBuilding:
title: Поворот по типу здания title: Поворот по типу здания
description: >- description: >-
Каждый тип здания запоминает поворот, который в последний раз был установлен. Каждый тип здания запоминает поворот, который в последний раз был установлен.
С этой настройкой может быть удобнее, при частом переключении между С этой настройкой может быть удобнее, при частом переключении между
различными типами зданий. различными типами зданий.
keybindings: keybindings:
title: Настройки управления title: Настройки управления
@ -800,6 +828,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

@ -21,10 +21,10 @@
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 is a game about building factories to automate the creation and processing of increasingly complex shapes across an infinitely expanding map. shortText: shapez.io je igra grajenja tovarne katere cilj je avtomatiziranje kreiranja in procesiranja vse bolj zapletenih oblik na neskončni ravnini.
# This is the text shown above the discord link # This is the text shown above the discord link
discordLink: Official Discord - Chat with me! discordLink: Uradni Discord - Pridruži se klepetu!
# 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:
@ -33,56 +33,55 @@ 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 processing of increasingly complex shapes across an infinitely expanding map. shapez.io je igra grajenja tovarne katere cilj je avtomatiziranje kreiranja in procesiranja vse bolj zapletenih oblik na neskončni ravnini.
Upon delivering the requested shapes you will progress within the game and unlock upgrades to speed up your factory. Ob dostavi zahtevanih oblik boste napredovali v igri in odklenili nadgradnje, da boste pospešili tovarno.
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]! Ko se bo povpraševanje po oblikah povečalo, boste morali prilagoditi svojo tovarno, da bo zadostilo povpraševanju. Ne pozabite na vire, morali pa se boste razširiti čez [b]neskončno ravnino[/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. Kmalu boste morali mešati barve in z njimi barvati svoje oblike - Združite rdeče, zelene in modre barvne vire, da ustvarite različne barve in z njimi barvate oblike, da zadostite povpraševanju.
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! V tej igri je 18 progresivnih stopenj (ki vas bodo zaposlile za več ur!), Vendar nenehno dodajam novo vsebino - načrtovanih novosti je veliko!
Nakup igre vam omogoča dostop do samostojne različice, ki ima dodatne funkcije, prav tako pa boste imeli dostop do novo razvitih funkcij.
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] [img]{STEAM_APP_IMAGE}/extras/header_standalone_advantages.png[/img]
[list] [list]
[*] Dark Mode [*] Temna tema
[*] Unlimited Waypoints [*] Neomejeno označb
[*] Unlimited Savegames [*] Neomejeno shranjenih tovarn
[*] Additional settings [*] Dodatne nastavitve
[*] Coming soon: Wires & Energy! Aiming for (roughly) end of July 2020. [*] Prihaja kmalu: Žice in energija! Prihajajo (približno) konec julija 2020.
[*] Coming soon: More Levels [*] Prihaja kmalu: Več stopenj
[*] Allows me to further develop shapez.io ❤️ [*] Omogoča mi nadaljni razvoj shapez.io ❤️
[/list] [/list]
[img]{STEAM_APP_IMAGE}/extras/header_future_updates.png[/img] [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! Igro posodabljam zelo pogosto in poskušam dodati novosti vsaj vsak teden!
[list] [list]
[*] Different maps and challenges (e.g. maps with obstacles) [*] Različni zemljevidi in izzivi (npr. Zemljevidi z ovirami)
[*] Puzzles (Deliver the requested shape with a restricted area / set of buildings) [*] Izzivi (vnesite želeno obliko z omejenim območjem / nizom zgradb)
[*] A story mode where buildings have a cost [*] Način zgodbe, kjer imajo stavbe stroške/cene
[*] Configurable map generator (Configure resource/shape size/density, seed and more) [*] Nastavljiv generator zemljevidov (konfigurirajte velikost / gostoto oblik /, seme in več)
[*] Additional types of shapes [*] Dodatne vrste oblik
[*] Performance improvements (The game already runs pretty well!) [*] Izboljšanje zmogljivosti (igra že sedaj deluje zelo dobro!)
[*] And much more! [*] In veliko več!
[/list] [/list]
[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. Vsakdo lahko prispeva, aktivno sem vključen v skupnost in poskušam pregledati vse predloge in upoštevati povratne informacije, kjer je to mogoče.
Be sure to check out my trello board for the full roadmap! Bodite prepričani, da si oglejte mojo Trello ploščo za celoten načrt!
[img]{STEAM_APP_IMAGE}/extras/header_links.png[/img] [img]{STEAM_APP_IMAGE}/extras/header_links.png[/img]
[list] [list]
[*] [url=https://discord.com/invite/HN7EVzV]Official Discord[/url] [*] [url=https://discord.com/invite/HN7EVzV]Uradni Discord[/url]
[*] [url=https://trello.com/b/ISQncpJP/shapezio]Roadmap[/url] [*] [url=https://trello.com/b/ISQncpJP/shapezio]Načrtovane posodobitve[/url]
[*] [url=https://www.reddit.com/r/shapezio]Subreddit[/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]Izvorna Koda (GitHub)[/url]
[*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Help translate[/url] [*] [url=https://github.com/tobspr/shapez.io/blob/master/translations/README.md]Pomagaj pri prevodu[/url]
[/list] [/list]
global: global:
@ -92,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -153,29 +155,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
@ -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,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

@ -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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "." thousandsDivider: "."
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: ","
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: k thousands: k
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +523,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 +755,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 +826,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
@ -74,6 +91,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "," thousandsDivider: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: b thousands: b
@ -131,28 +151,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 +254,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 +270,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 +296,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 +412,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 +524,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 +756,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 +828,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

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

@ -0,0 +1,877 @@
#
# 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: ","
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# 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: 加载中
@ -103,6 +119,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: "" thousandsDivider: ""
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# TODO: Chinese translation: suffix changes every 10000 in Chinese numbering system. # TODO: Chinese translation: suffix changes every 10000 in Chinese numbering system.
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
@ -161,28 +180,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 +286,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 +300,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 +326,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 +444,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 +555,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 +870,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: 加載中
@ -102,6 +118,9 @@ global:
# How big numbers are rendered, e.g. "10,000" # How big numbers are rendered, e.g. "10,000"
thousandsDivider: " " thousandsDivider: " "
# What symbol to use to seperate the integer part from the fractional part of a number, e.g. "0.4"
decimalSeparator: "."
# The suffix for large numbers, e.g. 1.3k, 400.2M, etc. # The suffix for large numbers, e.g. 1.3k, 400.2M, etc.
suffix: suffix:
thousands: thousands:
@ -159,28 +178,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 +281,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 +295,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 +321,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 +439,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 +550,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 +858,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: 關於遊戲