summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-29 15:41:19 +0400
committerAndrew Dolgov <[email protected]>2013-05-29 15:41:19 +0400
commit67e0cf9a371fca46405e7df26ccc970ce6b408cc (patch)
tree21f4b934f4635509352f38fa5ef29c87888d37df
parent642432fc39956e92b599f204d64e0b365f36edf2 (diff)
add startup_gettext() calls to several endpoints for unregistered users so the output would be translated based on accept-language header
-rw-r--r--classes/handler/public.php4
-rw-r--r--include/login_form.php5
-rw-r--r--register.php2
3 files changed, 9 insertions, 2 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 3e868d56e..727976a82 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -732,6 +732,8 @@ class Handler_Public extends Handler {
}
function forgotpass() {
+ startup_gettext();
+
header('Content-Type: text/html; charset=utf-8');
print "<html><head><title>Tiny Tiny RSS</title>";
@@ -825,6 +827,8 @@ class Handler_Public extends Handler {
}
function dbupdate() {
+ startup_gettext();
+
if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
$_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
render_login_form();
diff --git a/include/login_form.php b/include/login_form.php
index b401fdac0..891e25e13 100644
--- a/include/login_form.php
+++ b/include/login_form.php
@@ -1,3 +1,4 @@
+<?php startup_gettext(); ?>
<html>
<head>
<title>Tiny Tiny RSS : Login</title>
@@ -108,14 +109,14 @@ function init() {
require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
parser.parse();
- //show tooltip node only after this widget is instaniated.
+ //show tooltip node only after this widget is instaniated.
dojo.query('div[dojoType="dijit.Tooltip"]').style({
display:''
});
fetchProfiles();
dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
document.forms.loginForm.login.focus();
- });
+ });
}
diff --git a/register.php b/register.php
index f50ef14a4..eaab98e04 100644
--- a/register.php
+++ b/register.php
@@ -15,6 +15,8 @@
require_once "config.php";
require_once "db.php";
+ startup_gettext();
+
$action = $_REQUEST["action"];
if (!init_plugins()) return;