Skip to content

Commit

Permalink
[25992] add input field can not be empty message
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas committed Dec 12, 2023
1 parent 90dd56c commit 4b1851f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4941,6 +4941,7 @@ public class Messages extends NLS {
public static String iMedAction_nameAction;
public static String xChangeContributor_thisIsAnOmnivoreDoc;
public static String Prefs_DefaultMessageRecipient;
public static String Inputfield_empty;
static { // load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4585,6 +4585,8 @@ Info_NoPatient_Message = Bitte selektieren Sie vor dem Druck einen Patienten.

InputDirectory = Input Directory

Inputfield_empty = Input field can not be empty.

Install_Feature = Install Features

Install_Installing = Installing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4585,6 +4585,8 @@ Info_NoPatient_Message = Bitte selektieren Sie vor dem Druck einen Patienten.

InputDirectory = Eingabeverzeichnis

Inputfield_empty = Eingabefeld darf nicht leer sein.

Install_Feature = Install Features

Install_Installing = Installing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public ICustomService getResult() {
@Override
protected void okPressed() {
if (StringUtils.isBlank(tName.getText()) && StringUtils.isBlank(tKurz.getText())) {
setMessage(Messages.Template_not_editable_empty, IMessageProvider.ERROR);
setMessage(Messages.Inputfield_empty, IMessageProvider.ERROR);
return;
}
Money moneyNet = new Money();
Expand Down

0 comments on commit 4b1851f

Please sign in to comment.