Skip to content

Commit fd6a87e

Browse files
committed
CSSTUDIO-2572 Add label 'Messages.LogEntryID'.
1 parent ac8c477 commit fd6a87e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/LogEntryDisplayController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void initialize() {
116116
goForwardButtonDisabledPropertyChangeListener.changed(goForwardButton.disableProperty(), false, true);
117117
}
118118

119-
jumpToLogEntryTextField.setPromptText("Log Entry ID");
119+
jumpToLogEntryTextField.setPromptText(Messages.LogEntryID);
120120
jumpToLogEntryTextField.focusedProperty().addListener((property, oldValue, newValue) -> {
121121
if (oldValue && !newValue) {
122122
// When clicking away without first pressing enter, restore the current value of jumpToLogEntryTextField:

app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/Messages.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public class Messages
4444
LogbooksSearchFailTitle,
4545
LogbookServiceUnavailableTitle,
4646
LogbookServiceHasNoLogbooks,
47+
LogEntryID,
4748
NewLogEntry,
4849
NoAttachments,
4950
NoClipboardContent,

app/logbook/olog/ui/src/main/resources/org/phoebus/logbook/olog/ui/messages.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ LogbookServiceHasNoLogbooks=Logbook service "{0}" has no logbooks or is not avai
6464
LogbooksSearchFailTitle=Logbook Search Error
6565
LogbooksTitle=Select Logbooks
6666
LogbooksTooltip=Add logbook to the log entry.
67+
LogEntryID=Log Entry ID
6768
NoClipboardContent=Clipboard does not contain any content that may be added as attachment.
6869
NoAttachments=No Attachments
6970
NoProperties=No Properties

0 commit comments

Comments
 (0)