diff options
| author | Mürsel Türk | 2020-08-05 15:02:40 +0200 |
|---|---|---|
| committer | Mürsel Türk | 2020-08-05 15:02:40 +0200 |
| commit | 3d24548a6363cded6c234c634c09f26963bf0bb1 (patch) | |
| tree | fe84ac6a1c25fe43aca1cd1dd912a4c22161c0c6 /dozentenmodul/src/main/java | |
| parent | [client] Add turkish translation for thrift (diff) | |
| download | tutor-module-3d24548a6363cded6c234c634c09f26963bf0bb1.tar.gz tutor-module-3d24548a6363cded6c234c634c09f26963bf0bb1.tar.xz tutor-module-3d24548a6363cded6c234c634c09f26963bf0bb1.zip | |
[client] Add turkish translation for window
Diffstat (limited to 'dozentenmodul/src/main/java')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/BwIdmLinkWindow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/BwIdmLinkWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/BwIdmLinkWindow.java index 9e804812..04fc2beb 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/BwIdmLinkWindow.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/BwIdmLinkWindow.java @@ -40,7 +40,7 @@ public class BwIdmLinkWindow extends JDialog implements UiFeedback { * Don't use this, use static function open instead! */ public BwIdmLinkWindow(Frame modalParent) { - super(modalParent, I18n.WINDOW.getString("BwIdmLink.Dialog.title", Branding.getServiceName()), + super(modalParent, I18n.WINDOW.getString("BwIdmLink.Dialog.title"), modalParent != null ? ModalityType.APPLICATION_MODAL : ModalityType.MODELESS); final BwIdmLinkWindow me = this; @@ -53,7 +53,7 @@ public class BwIdmLinkWindow extends JDialog implements UiFeedback { GridManager grid = new GridManager(contentPanel, 1); // infotext - JLabel infoLabel = new JLabel(I18n.WINDOW.getString("BwIdmLink.Label.info.text")); + JLabel infoLabel = new JLabel(I18n.WINDOW.getString("BwIdmLink.Label.info.text", Branding.getServiceName())); infoLabel.setBorder(BorderFactory.createTitledBorder(I18n.WINDOW.getString("BwIdmLink.Label.info.title"))); grid.add(infoLabel).fill(true, true).expand(true, true).anchor(GridBagConstraints.CENTER); grid.nextRow(); |
