minor message fix
This commit is contained in:
parent
ff6e38d97f
commit
1b9b201da9
1 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@ import org.springframework.context.annotation.Lazy;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
|
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
|
||||||
|
import ch.ethz.seb.sebserver.gbl.util.Utils;
|
||||||
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
|
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
|
||||||
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
|
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
|
||||||
import ch.ethz.seb.sebserver.gui.service.page.ComposerService;
|
import ch.ethz.seb.sebserver.gui.service.page.ComposerService;
|
||||||
|
@ -131,7 +132,7 @@ public class ComposerServiceImpl implements ComposerService {
|
||||||
final MessageBox logoutSuccess = new Message(
|
final MessageBox logoutSuccess = new Message(
|
||||||
pageContext.getShell(),
|
pageContext.getShell(),
|
||||||
this.i18nSupport.getText("sebserver.logout"),
|
this.i18nSupport.getText("sebserver.logout"),
|
||||||
this.i18nSupport.getText("sebserver.logout.invalid-session.message"),
|
Utils.formatLineBreaks(this.i18nSupport.getText("sebserver.logout.invalid-session.message")),
|
||||||
SWT.ICON_INFORMATION,
|
SWT.ICON_INFORMATION,
|
||||||
this.i18nSupport);
|
this.i18nSupport);
|
||||||
logoutSuccess.open(null);
|
logoutSuccess.open(null);
|
||||||
|
|
Loading…
Reference in a new issue