Skip to content

Commit fb0878f

Browse files
committed
Fix category for strings
1 parent ea99da0 commit fb0878f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/qml/AppToolBar.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ ToolBar {
6464

6565
MenuItem {
6666
objectName: "rdm_import_connections_btn"
67-
text: qsTranslate("RDM","Import Connections")
67+
text: qsTranslate("RESP","Import Connections")
6868
onTriggered: importConnectionsDialog.open()
6969
}
7070
MenuItem {
7171
objectName: "rdm_export_connections_btn"
72-
text: qsTranslate("RDM","Export Connections")
72+
text: qsTranslate("RESP","Export Connections")
7373
onTriggered: exportConnectionsDialog.open()
7474
}
7575
}

src/qml/value-editor/editors/MultilineEditor.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,8 @@ Item
590590
imgWidth: imgBtnWidth * 0.8
591591
imgHeight: imgBtnHeight * 0.8
592592

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

596596
onClicked: {
597597
editor.state = editor.state === "default"? "full_screen" : "default"

0 commit comments

Comments
 (0)