Revision bbb67c4a
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
2 | 2 |
|
3 | 3 |
use strict; |
4 | 4 |
|
5 |
# Force scripts/locales.pl to parse these templates: |
|
6 |
# parse_html_template('login_screen/auth_db_unreachable') |
|
7 |
# parse_html_template('login_screen/user_login') |
|
8 |
# parse_html_template('generic/error') |
|
9 |
|
|
5 | 10 |
BEGIN { |
6 | 11 |
use SL::System::Process; |
7 | 12 |
my $exe_dir = SL::System::Process::exe_dir; |
Auch abrufbar als: Unified diff
Ermöglichen, dass Templates in SL/Dispatcher.pm übersetzt werden
In Dispatcher.pm erledigt die Sub "show_error" das Rendern. Ihr wird
der Name des Templates übergeben. Das erkennt aber
"scripts/locales.pl" nicht als Render-Anweisung und übersetzt die
Templates deshalb nicht automatisch. Also muss Dispatcher.pm etwas
nachhelfen und explizit erwähnen, dass diese Templates übersetzt
werden sollen.