Skip to content
Snippets Groups Projects
Commit 2155a99a authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #332 - localization message format is not working

parent 6a15c6e9
No related branches found
No related tags found
No related merge requests found
Pipeline #257 passed
...@@ -36,6 +36,12 @@ public class Main implements ApplicationRunner ...@@ -36,6 +36,12 @@ public class Main implements ApplicationRunner
{ {
return "languages/"; return "languages/";
} }
@Override
public boolean useMessageFormatter()
{
return true;
}
}); });
Localization.load(); Localization.load();
......
...@@ -31,4 +31,10 @@ public class LocalizationService implements Localization.LocalizationDelegate ...@@ -31,4 +31,10 @@ public class LocalizationService implements Localization.LocalizationDelegate
{ {
return "languages/"; return "languages/";
} }
@Override
public boolean useMessageFormatter()
{
return true;
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment