Skip to content

Commit f4a5ce1

Browse files
committed
[28343] fix typo on ArticleDetailDialog
1 parent 39dc348 commit f4a5ce1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bundles/at.medevit.ch.artikelstamm.ui/src/at/medevit/ch/artikelstamm/ui/internal/ArticleDetailDialog.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ protected Control createDialogArea(Composite parent) {
7575
}
7676

7777
Label lIndication = new Label(ret, SWT.NONE);
78-
lIndication.setText("Indikaitonscode");
78+
lIndication.setText("Indikationscode");
7979

8080
bIndication = new Button(ret, SWT.PUSH);
8181
bIndication.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
8282
bIndication.setText(Objects.toString(billed.getExtInfo(Constants.FLD_EXT_INDICATIONCODE), "..."));
8383
if (!article.isInSLList()) {
84-
bIndication.setText("Indikaitonscode nur bei SL");
84+
bIndication.setText("Indikationscode nur bei SL");
8585
bIndication.setEnabled(false);
8686
} else if (!article.isPm()) {
87-
bIndication.setText("Indikaitonscode nur bei Preismodell");
87+
bIndication.setText("Indikationscode nur bei Preismodell");
8888
bIndication.setEnabled(false);
8989
} else {
9090
bIndication.setEnabled(true);

0 commit comments

Comments
 (0)