Translation Files
-
Hi there,
first at all, thank you for the plugin! It’s a great one.
I have the problem, that i cannot translate this plugin into german version. I just need following fields:
first name*:
last name*:Both fields are on the registration form, when a new user register.
I searched in a lot of fields, and changed hard coded translations in following files:
user-reg-aide-display-name.php
user-reg-aide-options
user-reg-aide-registrationForm
user-reg-aide-dashWidgetI also translated the text in the translation files, in the translation folder of the plugin.
I also read the post from a year ago, but i don’t get it working changing these texts.
I changed the text for the password policies without problems, as it was hard coded, too. But with these two fields i really have problems.
Can you please give me a hint?
Thank you in advance,
GNewmann
-
Hi, those are kept in the WordPress Options table as they are default WordPress Fields. Around line 261 of user-reg-aide-options.php file is where those are set in hard code. In the default Options table in the database is where those field keys and field names are stored in an array. The option_name is csds_userRegAide_knownFields and you could conceivably also change them there if you have access to it. Otherwise in the user-reg-aide-registrationForm.php file there is where the registration form fields are read and displayed.
Forget that option.
You will also look in the csds_userRegAide_registrationFields in the wordpress options table as they will be stored in there as well. I would suggest the if/else but I found that you would have to change a bunch of stuff for that to work. Try what I just suggested first, and if not I can write up another user-reg-aide-registrationForm.php for you until I can get it into an update so you can easily change it there. I wrote that along time ago and could have written that portion better, but it will be addressed in the upcoming update soon to be released. I will make sure that it will be easy for you to hack or change those fields or edit them outright instead of hacking the core.
Just in case that doesn’t work either, here is the modified code starting at line 61 in the user-reg-aide-registrationForm.php file ( if( is_array( $regFields ) ){ and goes to the end of the if around line 201 and before the if($options[‘show_custom_agreement_message’] == “1”){ on or around line 203. Just replace the code in their with the following code.
if( is_array( $regFields ) ){ if( !empty($regFields ) ){ foreach( $regFields as $fieldKey => $fieldName ){ if( $fieldKey == 'first_name' ){ $fieldName = 'YOUR TRANSLATION HERE'; }elseif( $fieldKey == 'last_name' ){ $fieldName = 'YOUR TRANSLATION HERE'; } if( !empty( $_POST[$fieldKey] ) ){ foreach( $_POST as $id => $value ){ if( $id == $fieldKey ){ if(!is_plugin_active('theme-my-login/theme-my-login.php')){ // Compensates for theme my login bug if( $fieldKey == 'user_pass' ){ // adding password fields to form ?> <p> <label for="pass1"><?php _e( 'Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass1" id="pass1" value="" type="password" /></label></p> <br /> <p> <label><?php _e( 'Confirm Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass2" id="pass2" value="" type="password" /></label></p> <div id="pass-strength-result"><?php _e( 'Strength indicator', 'csds_userRegAide' ); ?></div> <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> <br class="clear" /> <?php }elseif( $fieldKey == 'description' ){ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?></label> <br /> <textarea name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="<?php echo esc_textarea( $value );?>" rows="5" style="font-size: 20px; width: 97%; padding: 3px; margin-right: 6px;" ></textarea> </p> <?php }else{ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?><br /> <input autocomplete="on" type="text" name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="<?php echo $value;?>" size="25" style="font-size: 20px; width: 97%; padding: 3px; margin-right: 6px;" /></label> </p> <?php } }else{ if( $fieldKey == 'user_pass' ){ ?> <p> <label for="pass1"><?php _e( 'Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass1" id="pass1" value="" type="password" /></label></p> <br /> <p> <label><?php _e( 'Confirm Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass2" id="pass2" value="" type="password" /></label></p> <div id="pass-strength-result"><?php _e( 'Strength indicator', 'csds_userRegAide' ); ?></div> <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> <br class="clear" /> <?php }elseif( $fieldKey == 'description' ){ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?></label> <br /> <textarea name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="<?php echo esc_textarea( $value );?>" rows="5" style="font-size: 20px; width: 97%; padding: 3px; margin-right: 6px;" ></textarea> </p> <?php }else{ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?><br /> <input autocomplete="on" type="text" name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="" size="25" /></label> </p> <?php } } } } }else{ if(!is_plugin_active('theme-my-login/theme-my-login.php')){ //compensates for theme my login bug if( $fieldKey == 'user_pass' ){ ?> <p> <label for="pass1"><?php _e( 'Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass1" id="pass1" value="" type="password" /></label></p> <br /> <p> <label><?php _e( 'Confirm Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass2" id="pass2" value="" type="password" /></label></p> <div id="pass-strength-result"><?php _e( 'Strength indicator', 'csds_userRegAide' ); ?></div> <p class="description indicator-hint"><?php _e( 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).' ); ?></p> <br class="clear" /> <?php }elseif( $fieldKey == 'description' ){ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?></label> <br /> <textarea name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="<?php echo esc_textarea( $value );?>" rows="5" style="font-size: 20px; width: 97%; padding: 3px; margin-right: 6px;" ></textarea> </p> <?php }else{ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?><br /> <input autocomplete="on" type="text" name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="" size="25" /></label> </p> <?php } }else{ if( $fieldKey == 'user_pass' ){ ?> <p> <label for="pass1"><?php _e( 'Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass1" id="pass1" value="" type="password" /></label></p> <br /> <p> <label><?php _e( 'Confirm Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass2" id="pass2" value="" type="password" /></label></p> <div id="pass-strength-result"><?php _e( 'Strength indicator', 'csds_userRegAide' ); ?></div> <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> <br class="clear" /> <?php }elseif( $fieldKey == 'description' ){ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?></label> <br /> <textarea name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="<?php echo esc_textarea( $value );?>" rows="5" style="font-size: 20px; width: 97%; padding: 3px; margin-right: 6px;" ></textarea> </p> <?php }else{ ?> <p> <label><?php _e( $fieldName.'*:', 'csds_userRegAide' ); ?><br /> <input autocomplete="on" type="text" name="<?php echo $fieldKey; ?>" id="<?php echo $fieldKey; ?>" class="input" value="" size="25" /></label> </p> <?php } } } } } }
The code formatting didn’t turn out so well so you may want to reformat it on a text editor or php editor before you add it to the actual plugin by the way. The tabs and formatting are all messed up on here.
oops just wanted to tick the notify me by email for follow ups
Hi bnovotny,
thank you for the fast answer. I changed the code and it worked!
But since updating my wordpress and my theme, i got the problem, that the field for password confirmation doesn’t work.
If i try to confirm the password, and I type something inside the “confirm password” textbox, it transfers it to the original “password” box. At all it’s not possible for me to confirm the password.
Do you probably got a hint on this one?
Thank you in advance,
Greg
Okay, that is in the new update, they altered the Password stuff, so there is no password confirm anymore. I will release an update soon for that. I have included a spot of the registrationForm.php for your code hard coded in right after the foreach so it will be easy for you just to change that for your translation. I also included a new array that will supposedly be able to be used in the translation file however not sure if that will work yet, but it won’t hurt anything. I was really new to PHP and WordPRess when I started this so some of this old code is a little dated and have been working on updates for almost a year now and am ready to release that soon. The new update for the password should be out tomorrow at the latest, I will try to do it today but want to do a little more testing first.
IN the mean time until the update is released either take the password off the registration form or if you are so inclined go to the user-reg-aide-registrationForm.php file and delete the 4 sections that look like this in the function csds_userRegAide_addFields:
<p> <label><?php _e( 'Confirm Password*:', 'csds_userRegAide' );?><br /> <input autocomplete="off" name="pass2" id="pass2" value="" type="password" /></label></p>
That is after the >br /> and before the
<div id="pass-strength-result"><?php _e( 'Strength indicator', 'csds_userRegAide' ); ?></div>
Then you will need to go down to the csds_userRegAide_checkFields function on line 637 and starting on line 681 or so where there is the
}elseif( $fieldKey == "user_pass" ){
line, you will need to remove all references to $_POST[‘pass2’] including the or || or other operators like != so it may be best to wait for the update.Okay. I updated it, on line 64 of user-reg-aide-registrationForm.phpI already added this:
/* if( $fieldKey == 'first_name' ){ $fieldName = 'YOUR TRANSLATION HERE'; }elseif( $fieldKey = 'last_name' ){ $fieldName = 'YOUR TRANSLATION HERE'; } */
All you need to do is take out the comments ( /* */ ) and enter your translation.
Thank you bnovotny! That solved my problem ??
- The topic ‘Translation Files’ is closed to new replies.