alecpl
2009-05-16 a08708509a9e4187a0dbed32c76c50ecf16df3dc
- set pagetitle in php not js, hu_HU locale


1 files added
2 files modified
40 ■■■■■ changed files
plugins/password/localization/hu_HU.inc 18 ●●●●● patch | view | raw | blame | history
plugins/password/password.js 8 ●●●●● patch | view | raw | blame | history
plugins/password/password.php 14 ●●●●● patch | view | raw | blame | history
plugins/password/localization/hu_HU.inc
New file
@@ -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.';
?>
plugins/password/password.js
@@ -33,12 +33,4 @@
    }
    }, 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);
    }
}
plugins/password/password.php
@@ -97,15 +97,18 @@
  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 @@
    }
    rcmail_overwrite_action('plugin.password');
    rcmail::get_instance()->output->send('plugin');
    $rcmail->output->send('plugin');
  }
  function password_form()
@@ -135,10 +138,9 @@
    $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