- set pagetitle in php not js, hu_HU locale

release-0.6
alecpl 15 years ago
parent 2471d3a979
commit a08708509a

@ -0,0 +1,18 @@
<?php
$labels = array();
$labels['changepasswd'] = 'Jelszóváltás';
$labels['curpasswd'] = 'Jelenlegi jelszó:';
$labels['newpasswd'] = 'Új jelszó:';
$labels['confpasswd'] = 'Új jelszó mégegyszer:';
$messages = array();
$messages['nopassword'] = 'Kérjük adja meg az új jelszót.';
$messages['nocurpassword'] = 'Kérjük adja meg a jelenlegi jelszót.';
$messages['passwordincorrect'] = 'Érvénytelen a jelenlegi jelszó.';
$messages['passwordinconsistency'] = 'A két új jelszó nem egyezik.';
$messages['nocryptfunction'] = 'Hiba történt a kérés feldolgozása során.';
$messages['internalerror'] = 'Hiba történt a kérés feldolgozása során.';
$messages['errorsaving'] = 'Hiba történt a kérés feldolgozása során.';
?>

@ -33,12 +33,4 @@ if (window.rcmail) {
}
}, true);
})
// set page title
if (rcmail.env.action == 'plugin.password' && rcmail.env.task == 'settings') {
var title = rcmail.gettext('changepasswd','password')
if (rcmail.env.product_name)
title = rcmail.env.product_name + ' :: ' + title;
rcmail.set_pagetitle(title);
}
}

@ -97,15 +97,18 @@ class password extends rcube_plugin
function password_init()
{
$this->add_texts('localization/');
rcmail::get_instance()->output->send('plugin');
$rcmail = rcmail::get_instance();
$rcmail->output->set_pagetitle($this->gettext('changepasswd'));
$rcmail->output->send('plugin');
}
function password_save()
{
$rcmail = rcmail::get_instance();
$confirm = $rcmail->config->get('password_confirm_current');
$this->add_texts('localization/');
$confirm = $rcmail->config->get('password_confirm_current');
$rcmail->output->set_pagetitle($this->gettext('changepasswd'));
if (($confirm && !isset($_POST['_curpasswd'])) || !isset($_POST['_newpasswd']))
$rcmail->output->command('display_message', $this->gettext('nopassword'), 'error');
@ -123,7 +126,7 @@ class password extends rcube_plugin
}
rcmail_overwrite_action('plugin.password');
rcmail::get_instance()->output->send('plugin');
$rcmail->output->send('plugin');
}
function password_form()
@ -135,10 +138,9 @@ class password extends rcube_plugin
$rcmail->output->add_label(
'password.nopassword',
'password.nocurpassword',
'password.passwordinconsistency',
'password.changepasswd'
'password.passwordinconsistency'
);
// $rcmail->output->set_pagetitle($this->gettext('changepasswd'));
$rcmail->output->set_env('product_name', $rcmail->config->get('product_name'));
// allow the following attributes to be added to the <table> tag

Loading…
Cancel
Save