EnderFramework
EnderFramework copied to clipboard
Support languages
Replace %%STUFF%% strings with their JSON value.
Example:
<html>
<head></head>
<body>
<h1>%%HomePage.Welcome%%</h1>
</body>
</html>
and
{
"HomePage": {
"Welcome": "Hello!",
[...]
},
[...]
}
will be:
<html>
<head></head>
<body>
<h1>Hello!</h1>
</body>
</html>