mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 10:20:41 +00:00
Fixed off by one error for english error message
This commit is contained in:
parent
e621875ea4
commit
3477bff512
@ -61,19 +61,20 @@ public class ErrorView extends VerticalLayout implements LocaleChangeObserver {
|
||||
case UNEXPECTED_TOKEN:
|
||||
Optional<Token> cause = error.getCause();
|
||||
if (cause.isPresent()) {
|
||||
additionalInformation.add(new Span(new Pre(getTranslation("root.term") + term)));
|
||||
additionalInformation.add(new Span(new Pre(getTranslation("root.termForError") + term)));
|
||||
additionalInformation.add(
|
||||
new Span(new Pre(" ".repeat(Math.max(getTranslation("root.term").length(),
|
||||
cause.get().getPos() + "root.term".length()))
|
||||
new Span(new Pre(" ".repeat(Math.max(getTranslation("root.termForError").length(),
|
||||
cause.get().getPos() + getTranslation("root.termForError").length()))
|
||||
+ "^ " + getTranslation("root.wrongCharacter") + cause.get().getText())));
|
||||
}
|
||||
break;
|
||||
case UNEXPECTED_CHARACTER:
|
||||
char c = error.getWrongCharacter();
|
||||
if (c != '\0') {
|
||||
additionalInformation.add(new Span(new Pre(getTranslation("root.term") + term)));
|
||||
additionalInformation.add(new Span(new Pre(" ".repeat(Math.max(getTranslation("root.term").length(),
|
||||
error.getPosition() + "root.term".length()))
|
||||
additionalInformation.add(new Span(new Pre(getTranslation("root.termForError") + term)));
|
||||
additionalInformation.add(new Span(
|
||||
new Pre(" ".repeat(Math.max(getTranslation("root.termForError").length(),
|
||||
error.getPosition() + getTranslation("root.termForError").length()))
|
||||
+ "^ " + getTranslation("root.wrongCharacter") + c)));
|
||||
} else {
|
||||
return summary;
|
||||
|
@ -106,7 +106,7 @@ root.tooFewTokensHelp=Überprüfe, ob alle Let-, Abs- und App-Terme über die n
|
||||
root.UNEXPECTED_TOKEN=Die Eingabe entspricht nicht der im Info-Dialog spezifizierten Syntax!
|
||||
root.UNEXPECTED_CHARACTER=Die Eingabe enthält ein Zeichen, welches an dieser Stelle nicht erlaubt ist!
|
||||
error.heading=Syntaktisch falsche Eingabe!
|
||||
root.term=Eingabe:\u0020
|
||||
root.termForError=Eingabe:\u0020
|
||||
root.wrongCharacter=Falsches Zeichen:\u0020
|
||||
error.expectedToken=Erwartet: {0}
|
||||
error.hint=Die Grammatiken, die die korrekte Syntax eines Terms und der Typannahmen beschreiben, \
|
||||
|
@ -100,7 +100,7 @@ root.UNEXPECTED_TOKEN=The input does not match the syntax specified in the info
|
||||
root.UNEXPECTED_CHARACTER=The input contains a character which is not allowed at this position.
|
||||
error.heading=Input is syntactically wrong!
|
||||
root.wrongCharacter=Wrong character:\u0020
|
||||
root.term=Input:\u0020
|
||||
root.termForError=Input:\u0020
|
||||
error.expectedToken=Expected: {0}
|
||||
error.hint=The grammars describing the correct syntax of a term or a type assumption can also be reached \
|
||||
via the info icon.
|
||||
|
Loading…
Reference in New Issue
Block a user