diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index 6d85cd4d34..73f8093a15 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -486,7 +486,7 @@ wavemode.health = health editor.default = [lightgray] details = Details... -edit = Edit... +edit = Edit variables = Vars editor.name = Name: editor.spawn = Spawn Unit diff --git a/core/src/mindustry/ui/dialogs/SchematicsDialog.java b/core/src/mindustry/ui/dialogs/SchematicsDialog.java index 8c7430a07d..2cb7212aec 100644 --- a/core/src/mindustry/ui/dialogs/SchematicsDialog.java +++ b/core/src/mindustry/ui/dialogs/SchematicsDialog.java @@ -793,7 +793,7 @@ public class SchematicsDialog extends BaseDialog{ buttons.defaults().size(Core.graphics.isPortrait() ? 150f : 210f, 64f); buttons.button("@back", Icon.left, this::hide); buttons.button("@editor.export", Icon.upload, () -> showExport(schem)); - buttons.button("@schematic.edit", Icon.edit, () -> showEdit(schem)); + buttons.button("@edit", Icon.edit, () -> showEdit(schem)); show(); }