{% extends "base.html" %} {% block content %} {{ include ('install/steps.html', {active: 'locale'}) }}
{% include('templates/successerror.html') %}
{% import "templates/inputerror.html" as inputerror %}
AJAX Guestbook Installation (Step 3 - Locale Settings)
TimeZone and Language
{{ inputerror.checkInput("timezoneerror") }}
{% set gbtz = post.timezone ?? installlocale[':timezone'] ?: "UTC" %} {% set gblang = post.language ?? installlocale[':language'] ?: "en" %}
{{ inputerror.checkInput("languageerror") }}
Note :- If there is no language definition file found in the language folder for the selected language then only date and time will be displayed in selected language. Also only the variables defined in the language file will be overridden and displayed in selected language. Variables which are not defined will be displayed in default English language.
Please go through help file section Adding Custom Language for creating language definition file.
Pevious
{% endblock %}