Skip to content

Commit

Permalink
Correct a translation context
Browse files Browse the repository at this point in the history
  • Loading branch information
cbjeukendrup committed Feb 22, 2025
1 parent e9d5903 commit 8cef5fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions share/locale/musescore_en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19568,11 +19568,6 @@ Fret %1 on strings %2</translation>
<source>Create</source>
<translation type="unfinished">Create</translation>
</message>
<message>
<location filename="../../src/notation/view/percussionpanel/percussionpanelpadmodel.cpp" line="98"/>
<source>Delete pad</source>
<translation type="unfinished">Delete pad</translation>
</message>
</context>
<context>
<name>iex_capella</name>
Expand Down Expand Up @@ -25510,6 +25505,11 @@ In addition, Mastering MuseScore features a supportive community of musicians, w
<source>Never</source>
<translation type="unfinished">Never</translation>
</message>
<message>
<location filename="../../src/notation/view/percussionpanel/percussionpanelpadmodel.cpp" line="98"/>
<source>Delete pad</source>
<translation type="unfinished">Delete pad</translation>
</message>
</context>
<context>
<name>notation/staffpartproperties</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ QList<QVariantMap> PercussionPanelPadModel::contextMenuItems() const
// { { "id", DUPLICATE_PAD_CODE }, { "title", muse::qtrc("global", "Duplicate") },
// { "icon", duplicatePadIcon }, { "enabled", true } },

{ { "id", DELETE_PAD_CODE }, { "title", muse::qtrc("global", "Delete pad") },
{ { "id", DELETE_PAD_CODE }, { "title", muse::qtrc("notation/percussion", "Delete pad") },
{ "icon", deletePadIcon }, { "enabled", true } },
};

Expand Down

3 comments on commit 8cef5fe

@Jojo-Schmitz
Copy link
Contributor

@Jojo-Schmitz Jojo-Schmitz commented on 8cef5fe Feb 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has this been pushed to Transifex? I don't see that string there

@cbjeukendrup
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR where the string was introduced was only merged to master and not yet to 4.5

@Jojo-Schmitz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, actually this seems missing from 4.5.0, together with another change, to the string itself.

Please sign in to comment.