translations support for mobile version
This commit is contained in:
parent
ed0551c274
commit
7c33dbd479
|
@ -53,6 +53,12 @@
|
|||
$lang = $_COOKIE["ttrss_lang"];
|
||||
}
|
||||
|
||||
/* In login action of mobile version */
|
||||
if ($_POST["language"] && defined('MOBILE_VERSION')) {
|
||||
$lang = $_POST["language"];
|
||||
$_COOKIE["ttrss_lang"] = $lang;
|
||||
}
|
||||
|
||||
if ($lang) {
|
||||
if (defined('LC_MESSAGES')) {
|
||||
_setlocale(LC_MESSAGES, $lang);
|
||||
|
@ -61,7 +67,13 @@
|
|||
} else {
|
||||
die("can't setlocale(): please set ENABLE_TRANSLATIONS to false in config.php");
|
||||
}
|
||||
_bindtextdomain("messages", "locale");
|
||||
|
||||
if (defined('MOBILE_VERSION')) {
|
||||
_bindtextdomain("messages", "../locale");
|
||||
} else {
|
||||
_bindtextdomain("messages", "locale");
|
||||
}
|
||||
|
||||
_textdomain("messages");
|
||||
_bind_textdomain_codeset("messages", "UTF-8");
|
||||
}
|
||||
|
|
|
@ -3,14 +3,50 @@
|
|||
<title>Tiny Tiny RSS : Login</title>
|
||||
<link rel="stylesheet" type="text/css" href="mobile.css">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript" charset="utf-8" src="mobile.js"></script>
|
||||
</head>
|
||||
|
||||
<script type="text/javascript">
|
||||
function init() {
|
||||
|
||||
if (arguments.callee.done) return;
|
||||
arguments.callee.done = true;
|
||||
|
||||
var login = document.forms["loginForm"].login;
|
||||
var click = document.forms["loginForm"].click;
|
||||
|
||||
login.focus();
|
||||
click.disabled = false;
|
||||
|
||||
}
|
||||
function languageChange(elem) {
|
||||
try {
|
||||
document.forms['loginForm']['click'].disabled = true;
|
||||
|
||||
var lang = elem[elem.selectedIndex].value;
|
||||
setCookie("ttrss_lang", lang, <?php print SESSION_COOKIE_LIFETIME ?>);
|
||||
window.location.reload();
|
||||
} catch (e) {
|
||||
exception_error("languageChange", e);
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener("DOMContentLoaded", init, null);
|
||||
}
|
||||
window.onload = init;
|
||||
</script>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<div id="content">
|
||||
<div id="heading">Tiny Tiny RSS</div>
|
||||
|
||||
<form action="tt-rss.php" method="POST">
|
||||
<form action="tt-rss.php" method="POST" name="loginForm">
|
||||
<input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>">
|
||||
<input type="hidden" name="login_action" value="do_login">
|
||||
|
||||
|
@ -23,8 +59,16 @@
|
|||
<tr><td align='right'><?php echo __("Login:") ?></td><td><input name="login"></td>
|
||||
<tr><td align='right'><?php echo __("Password:") ?></td><td><input type="password" name="password"></tr>
|
||||
|
||||
<tr><td align="right"><?php echo __("Language:") ?></td>
|
||||
<td>
|
||||
<?php
|
||||
print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
|
||||
"style='width : 100%' onchange='languageChange(this)'");
|
||||
|
||||
?>
|
||||
</td></tr>
|
||||
<tr><td colspan='2'>
|
||||
<input type="submit" class="button" value="Login">
|
||||
<input type="submit" class="button" value="<?php echo __('Log in') ?>" name="click">
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
function debug(msg) {
|
||||
// no-op
|
||||
}
|
||||
|
||||
function setCookie(name, value, lifetime, path, domain, secure) {
|
||||
|
||||
var d = false;
|
||||
|
||||
if (lifetime) {
|
||||
d = new Date();
|
||||
d.setTime(d.getTime() + (lifetime * 1000));
|
||||
}
|
||||
|
||||
debug("setCookie: " + name + " => " + value + ": " + d);
|
||||
|
||||
int_setCookie(name, value, d, path, domain, secure);
|
||||
|
||||
}
|
||||
|
||||
function int_setCookie(name, value, expires, path, domain, secure) {
|
||||
document.cookie= name + "=" + escape(value) +
|
||||
((expires) ? "; expires=" + expires.toGMTString() : "") +
|
||||
((path) ? "; path=" + path : "") +
|
||||
((domain) ? "; domain=" + domain : "") +
|
||||
((secure) ? "; secure" : "");
|
||||
}
|
||||
|
||||
function exception_error(location, e, silent) {
|
||||
var msg;
|
||||
|
||||
if (e.fileName) {
|
||||
var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
|
||||
|
||||
msg = "Exception: " + e.name + ", " + e.message +
|
||||
"\nFunction: " + location + "()" +
|
||||
"\nLocation: " + base_fname + ":" + e.lineNumber;
|
||||
|
||||
} else if (e.description) {
|
||||
msg = "Exception: " + e.description + "\nFunction: " + location + "()";
|
||||
} else {
|
||||
msg = "Exception: " + e + "\nFunction: " + location + "()";
|
||||
}
|
||||
|
||||
if (!silent) {
|
||||
alert(msg);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
||||
|
||||
define('MOBILE_VERSION', true);
|
||||
|
||||
require_once "../config.php";
|
||||
require_once "functions.php";
|
||||
require_once "../functions.php";
|
||||
|
|
Loading…
Reference in New Issue