Skip to content

Commit 503c5b1

Browse files
fix clear run history tool tip
- use "run history" instead of "history" - use correct constant in RunnerPanel
1 parent 842dbd3 commit 503c5b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.xtend

+1-1
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ class RunnerPanel implements ActionListener, MouseListener, HyperlinkListener {
751751
runComboBox.addActionListener(this)
752752
toolbar.add(runComboBox)
753753
clearButton = new ToolbarButton(UtplsqlResources.getIcon("CLEAR_ICON"))
754-
clearButton.toolTipText = UtplsqlResources.getString("RUNNER_CLEAR_HISTORY_BUTTON")
754+
clearButton.toolTipText = UtplsqlResources.getString("RUNNER_CLEAR_BUTTON")
755755
clearButton.border = buttonBorder
756756
clearButton.addActionListener(this)
757757
toolbar.add(clearButton)

sqldev/src/main/resources/org/utplsql/sqldev/resources/UtplsqlResources.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ WORKSHEET_TITLE=utPLSQL
7070
RUNNER_VIEW_TITLE=utPLSQL
7171
RUNNER_REFRESH_TOOLTIP=Reset ordering and refresh
7272
RUNNER_RERUN_TOOLTIP=Rerun all tests
73-
RUNNER_CLEAR_BUTTON=Clear history
73+
RUNNER_CLEAR_BUTTON=Clear run history
7474
RUNNER_RERUN_WORKSHEET_TOOLTIP=Rerun all tests in a new worksheet
7575
RUNNER_TESTS_LABEL=Tests
7676
RUNNER_FAILURES_LABEL=Failures

sqldev/src/main/resources/org/utplsql/sqldev/resources/UtplsqlResources_de.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUNNER_VIEW_TITLE=utPLSQL
4848
RUNNER_REFRESH_TOOLTIP=Sortierung zurücksetzen und aktualisieren
4949
RUNNER_RERUN_TOOLTIP=Alle Tests erneut ausführen
5050
RUNNER_RERUN_WORKSHEET_TOOLTIP=Alle Tests in einem neuen Arbeitsblatt erneut ausführen
51-
RUNNER_CLEAR_BUTTON=History löschen
51+
RUNNER_CLEAR_BUTTON=Run History löschen
5252
RUNNER_TESTS_LABEL=Tests
5353
RUNNER_FAILURES_LABEL=Fehlschläge
5454
RUNNER_ERRORS_LABEL=Fehler

0 commit comments

Comments
 (0)