Skip to content

Commit

Permalink
Changed the constant comments for the encryption task return messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
uuzxs committed Feb 6, 2022
1 parent ab6af44 commit 2fd848f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/main/java/org/kryptojagd/level/tasks/EncryptionTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,28 @@
public class EncryptionTask implements Task {

/**
* The constant WRONGCOUNTLETTER.
* The constant WRONGCOUNTLETTER
* (if there are more or less letters in answer compared to correct answer).
*/
public static final String WRONGCOUNTLETTER = "Pass auf, dass du genau so viele Buchstaben verschlüsselst wie auch in der Nachricht vorkommen.";
/**
* The constant WRONGCOUNTLETTER.
* The constant WRONGBACKWARDS
* (if whole text is encrypted backwards instead of word by word).
*/
public static final String WRONGBACKWARDS = "Pass auf, jedes Wort sollte einzeln verschlüsselt werden.";
/**
* The constant WRONGCOUNTLETTER.
* The constant WRONGFLIP
* (if the answer is encrypted correctly except of one or two letter-flips).
*/
public static final String WRONGFLIP = "Pass auf, es scheint so als hätten sich ein oder zwei Buchstabendreher bei dir eingeschlichen.";
/**
* The constant WRONGCOUNTLETTER.
* The constant TYPINGERROR
* (if there are one, two or three typing errors).
*/
public static final String TYPINGERROR = "Pass auf, es scheint so als hätten sich ein paar Tippfehler bei dir eingeschlichen.";
/**
* The constant WRONGCOUNTLETTER.
* The constant WRONGCOUNTLETTER
* (if the answer has too many mistakes).
*/
public static final String ALLWRONG = "Schade, dass ist leider nicht richtig verschlüsselt, versuche es noch einmal.";

Expand Down

0 comments on commit 2fd848f

Please sign in to comment.