Skip to content

Commit

Permalink
VOXEDIT: missing translation markers
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Aug 10, 2024
1 parent bfe714f commit b896d42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tools/voxedit/modules/voxedit-util/SceneManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1577,9 +1577,9 @@ void SceneManager::construct() {
_sceneRenderer->construct();
_movement.construct();

_autoSaveSecondsDelay = core::Var::get(cfg::VoxEditAutoSaveSeconds, "180", -1, "Delay in second between autosaves - 0 disables autosaves");
_autoSaveSecondsDelay = core::Var::get(cfg::VoxEditAutoSaveSeconds, "180", -1, _("Delay in second between autosaves - 0 disables autosaves"));
_movementSpeed = core::Var::get(cfg::VoxEditMovementSpeed, "180.0f");
_transformUpdateChildren = core::Var::get(cfg::VoxEditTransformUpdateChildren, "true", -1, "Update the children of a node when the transform of the node changes");
_transformUpdateChildren = core::Var::get(cfg::VoxEditTransformUpdateChildren, "true", -1, _("Update the children of a node when the transform of the node changes"));

command::Command::registerCommand("resizetoselection", [&](const command::CmdArgs &args) {
const voxel::Region &region = accumulate(modifier().selections());
Expand Down Expand Up @@ -1613,7 +1613,7 @@ void SceneManager::construct() {
for (int i = 0; i < lengthof(DIRECTIONS); ++i) {
command::Command::registerActionButton(
core::string::format("movecursor%s", DIRECTIONS[i].postfix),
_move[i], "Move the cursor by keys, not but viewport mouse trace");
_move[i], _("Move the cursor by keys, not but viewport mouse trace"));

This comment has been minimized.

Copy link
@mgerhardy

mgerhardy Aug 11, 2024

Author Collaborator

There is a typo in here

}
command::Command::registerCommand("palette_changeintensity", [&] (const command::CmdArgs& args) {
if (args.empty()) {
Expand Down

0 comments on commit b896d42

Please sign in to comment.