Skip to content

Commit

Permalink
Fix category for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Feb 3, 2022
1 parent ea99da0 commit fb0878f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/qml/AppToolBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ ToolBar {

MenuItem {
objectName: "rdm_import_connections_btn"
text: qsTranslate("RDM","Import Connections")
text: qsTranslate("RESP","Import Connections")
onTriggered: importConnectionsDialog.open()
}
MenuItem {
objectName: "rdm_export_connections_btn"
text: qsTranslate("RDM","Export Connections")
text: qsTranslate("RESP","Export Connections")
onTriggered: exportConnectionsDialog.open()
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/qml/value-editor/editors/MultilineEditor.qml
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,8 @@ Item
imgWidth: imgBtnWidth * 0.8
imgHeight: imgBtnHeight * 0.8

tooltip: (editor.state === "default"? "" : qsTranslate("RDM","Exit "))
+ qsTranslate("RDM","Full Screen Mode")
tooltip: (editor.state === "default"? "" : qsTranslate("RESP","Exit "))
+ qsTranslate("RESP","Full Screen Mode")

onClicked: {
editor.state = editor.state === "default"? "full_screen" : "default"
Expand Down

0 comments on commit fb0878f

Please sign in to comment.