= Localized past testing files for indicator, choose, coliru, 8ball

This commit is contained in:
Matthew Cech
2019-04-06 22:51:09 -07:00
parent 8efadf63ea
commit b04e26cbc6
6 changed files with 77 additions and 17 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ public class CommandDoWork extends Command
public CommandDoWork(KittyRole level, KittyRating rating) { super(level, rating); }
@Override
public String HelpText() { return "Occupies a core for a few seconds"; }
public String HelpText() { return Localizer.Stub("Occupies a core for a few seconds"); }
// Called when the command is run!
@Override
@@ -28,6 +28,6 @@ public class CommandDoWork extends Command
thispieceofshit += Math.log((double)i);
}
res.Call("I finished with my work! :D");
res.Call(Localizer.Stub("I finished with my work! :D"));
}
}