Skip to content

Commit

Permalink
Merge pull request #22537 from Jojo-Schmitz/trans
Browse files Browse the repository at this point in the history
Make some more strings translatable (master)
  • Loading branch information
RomanPudashkin committed Apr 23, 2024
2 parents cdf58ee + fa26c48 commit 8526264
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/framework/diagnostics/internal/diagnosticsactions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const UiActionList DiagnosticsActions::m_actions = {
UiAction("diagnostic-accessible-tree-dump",
muse::ui::UiCtxAny,
muse::shortcuts::CTX_ANY,
TranslatableString::untranslatable("Accessible &dump")
TranslatableString("action", "Accessible &dump")
),
UiAction("diagnostic-show-engraving-elements",
muse::ui::UiCtxAny,
Expand Down
14 changes: 7 additions & 7 deletions src/notation/internal/notationuiactions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2416,43 +2416,43 @@ const UiActionList NotationUiActions::m_engravingDebuggingActions = {
UiAction("show-element-bounding-rects",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Show element bounding rectangles"),
TranslatableString("action", "Show element bounding rectangles"),
Checkable::Yes
),
UiAction("color-element-shapes",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Color element shapes"),
TranslatableString("action", "Color element shapes"),
Checkable::Yes
),
UiAction("show-segment-shapes",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Show segment shapes"),
TranslatableString("action", "Show segment shapes"),
Checkable::Yes
),
UiAction("color-segment-shapes",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Color segment shapes"),
TranslatableString("action", "Color segment shapes"),
Checkable::Yes
),
UiAction("show-skylines",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Show skylines"),
TranslatableString("action", "Show skylines"),
Checkable::Yes
),
UiAction("show-system-bounding-rects",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Show system bounding rectangles"),
TranslatableString("action", "Show system bounding rectangles"),
Checkable::Yes
),
UiAction("show-corrupted-measures",
mu::context::UiCtxNotationOpened,
mu::context::CTX_NOTATION_OPENED,
TranslatableString::untranslatable("Show corrupted measures"),
TranslatableString("action", "Show corrupted measures"),
Checkable::Yes
),
UiAction("edit-strings",
Expand Down

0 comments on commit 8526264

Please sign in to comment.