enable translations by default; misc fixes

This commit is contained in:
Andrew Dolgov 2010-01-25 23:12:08 +03:00
parent b62f7265cc
commit 0456176a44
3 changed files with 10 additions and 18 deletions

View File

@ -539,9 +539,8 @@
print "</select>";
$_SESSION = array();
}
break;
}
} // Select action according to $op value.

View File

@ -100,9 +100,8 @@
// If update daemon and update_feeds should send digests
// Disable if you prefer querying special URL (see wiki)
define('ENABLE_TRANSLATIONS', false);
// Enable experimental support for interface translations
// based on PHP-Gettext. This is of no much use right now.
define('ENABLE_TRANSLATIONS', true);
// Enable support for interface translations
define('MYSQL_CHARSET', '');
// Connection charset for MySQL. Only enable if having charset-related

View File

@ -14,20 +14,15 @@
<script type="text/javascript">
function init() {
if (arguments.callee.done) return;
arguments.callee.done = true;
var login = document.forms["loginForm"].login;
var limit_set = getCookie("ttrss_bwlimit");
if (limit_set == "true") {
document.forms["loginForm"].bw_limit.checked = true;
}
login.focus();
document.forms["loginForm"].login.focus();
}
function fetchProfiles() {
try {
var params = Form.serialize('loginForm');
@ -102,10 +97,9 @@ function validateLoginForm(f) {
</script>
<script type="text/javascript">
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, null);
}
window.onload = init;
Event.observe(window, 'load', function() {
init();
});
</script>
<form action="" method="POST" id="loginForm" name="loginForm" onsubmit="return validateLoginForm(this)">
@ -125,11 +119,11 @@ window.onload = init;
<table>
<tr><td align="right"><?php echo __("Login:") ?></td>
<td align="right"><input name="login"
onchange="fetchProfiles()"
onchange="fetchProfiles()" onfocus="fetchProfiles()"
value="<?php echo $_SERVER["REMOTE_USER"] ?>"></td></tr>
<tr><td align="right"><?php echo __("Password:") ?></td>
<td align="right"><input type="password" name="password"
onchange="fetchProfiles()"
onchange="fetchProfiles()" onfocus="fetchProfiles()"
value="<?php echo $_SERVER["REMOTE_USER"] ?>"></td></tr>
<?php if (ENABLE_TRANSLATIONS) { ?>
<tr><td align="right"><?php echo __("Language:") ?></td>