Skip to content

Commit

Permalink
Insure undo/redo are translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jan 12, 2025
1 parent e729423 commit 67082b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qml/qgismobileapp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -2431,7 +2431,7 @@ ApplicationWindow {
height: 48
width: parent.width / 2
anchors.left: parent.left
text: "Undo"
text: qsTr("Undo")
icon.source: Theme.getThemeVectorIcon("ic_undo_black_24dp")
leftPadding: Theme.menuItemLeftPadding

Expand Down Expand Up @@ -2459,7 +2459,7 @@ ApplicationWindow {
height: 48
width: parent.width / 2
anchors.right: parent.right
text: "Redo"
text: qsTr("Redo")
icon.source: Theme.getThemeVectorIcon("ic_redo_black_24dp")

contentItem: IconLabel {
Expand Down

0 comments on commit 67082b6

Please sign in to comment.