Advertisement
MsGamerHD

Untitled

Jul 10th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1.     public static String getTranslatedString(String string){
  2.         string = ChatColor.translateAlternateColorCodes('&', string);
  3.         string = string.replace("%ue", "ü");
  4.         string = string.replace("%oe", "ö");
  5.         string = string.replace("%ae", "ä");
  6.         string = string.replace("%ss", "ß");
  7.         string = string.replace("<3", "?");
  8.         string = string.replace("->", "?");
  9.         string = string.replace(">", "»");
  10.         string = string.replace("<", "«");
  11.         string = string.replace("*", "?");
  12.        
  13.         return string;
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement