diff options
author | gweltas <gweltas@piwigo.org> | 2004-09-19 22:26:41 +0000 |
---|---|---|
committer | gweltas <gweltas@piwigo.org> | 2004-09-19 22:26:41 +0000 |
commit | 288818b06d7d7e2a9030722114e30a9fad32c736 (patch) | |
tree | ab64d6daaa4c9377e1baf6bc7635848330edc5e3 /profile.php | |
parent | 094bbe3cee63806dbdfba108f81817e3a85dada9 (diff) |
- dispatch of configuration
git-svn-id: http://piwigo.org/svn/trunk@527 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'profile.php')
-rw-r--r-- | profile.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/profile.php b/profile.php index 40cbb5fa7..8eb2ee0b8 100644 --- a/profile.php +++ b/profile.php @@ -53,19 +53,19 @@ if ( isset( $_POST['submit'] ) ) and ( !preg_match( $int_pattern, $_POST['maxwidth'] ) or $_POST['maxwidth'] < 50 ) ) { - array_push( $errors, $lang['err_maxwidth'] ); + array_push( $errors, $lang['maxwidth_error'] ); } if ( $_POST['maxheight'] and ( !preg_match( $int_pattern, $_POST['maxheight'] ) or $_POST['maxheight'] < 50 ) ) { - array_push( $errors, $lang['err_maxheight'] ); + array_push( $errors, $lang['maxheight_error'] ); } // periods must be integer values, they represents number of days if (!preg_match($int_pattern, $_POST['recent_period']) or $_POST['recent_period'] <= 0) { - array_push( $errors, $lang['err_periods'] ); + array_push( $errors, $lang['periods_error'] ); } $mail_error = validate_mail_address( $_POST['mail_address'] ); if ( $mail_error != '' ) array_push( $errors, $mail_error ); @@ -138,13 +138,13 @@ $template->assign_vars(array( 'L_NEW' => $lang['new'], 'L_CONFIRM' => $lang['reg_confirm'], 'L_COOKIE' => $lang['create_cookie'], - 'L_LANG_SELECT'=>$lang['customize_language'], - 'L_NB_IMAGE_LINE'=>$lang['customize_nb_image_per_row'], - 'L_NB_ROW_PAGE'=>$lang['customize_nb_row_per_page'], - 'L_STYLE_SELECT'=>$lang['customize_theme'], - 'L_RECENT_PERIOD'=>$lang['customize_recent_period'], - 'L_EXPAND_TREE'=>$lang['customize_expand'], - 'L_NB_COMMENTS'=>$lang['customize_show_nb_comments'], + 'L_LANG_SELECT'=>$lang['language'], + 'L_NB_IMAGE_LINE'=>$lang['nb_image_per_row'], + 'L_NB_ROW_PAGE'=>$lang['nb_row_per_page'], + 'L_STYLE_SELECT'=>$lang['theme'], + 'L_RECENT_PERIOD'=>$lang['recent_period'], + 'L_EXPAND_TREE'=>$lang['auto_expand'], + 'L_NB_COMMENTS'=>$lang['show_nb_comments'], 'L_YES'=>$lang['yes'], 'L_NO'=>$lang['no'], 'L_SUBMIT'=>$lang['submit'], |