Mam mały problem ze zrozumieniem instrukcji chodzi o plik lang_main.php
Kod:
FIND:
NOTE --- This is a partial match, the whole lines for the english version look like this:
$lang['Read_profile'] = 'View user\'s profile';
$lang['Send_email'] = 'Send e-mail to user';
$lang['Read_profile'] =
$lang['Send_email'] =
REPLACE WITH:
NOTE --- We are just removing the definition for $lang['Send_email']
$lang['Read_profile'] = 'View user\'s profile';
I tu mam problem mój kod wygląda
Kod:
$lang['Read_profile'] = 'View user\'s profile';
$lang['Send_email'] = 'Send e-mail to user';
Z tego co rozumiem zamianie ma ulec tylko $lang['Send_email'] = 'Send e-mail to user';, a to da rezultat, że te pliki beda miały idetynczy człon po =
Chyba, że tak ma być
Drugi problem to
Kod:
FIND:
NOTE --- This is a partial match, the whole lines for the english version look like this:
$lang['Email'] = 'E-mail';
$lang['Send_private_message'] = 'Send private message';
$lang['Hidden_email'] = '[ Hidden ]';
$lang['Search_user_posts'] = 'Search for posts by this user';
$lang['Email'] =
$lang['Send_private_message'] =
$lang['Hidden_email'] =
$lang['Search_user_posts'] =
REPLACE WITH:
NOTE --- We are just removing the definition for $lang['Email'] and $lang['Search_user_posts']
$lang['Send_private_message'] = 'Send private message';
$lang['Hidden_email'] = '[ Hidden ]';
Oto mój kod
Kod:
$lang['Email'] = 'E-mail';
$lang['Send_private_message'] = 'Send private message';
$lang['Hidden_email'] = '[ Hidden ]';
$lang['Search_user_posts'] = 'Search for posts by this user';
który, po zamianie o ile dobrze rozumiem polecenia ma wygladać tak???
Kod:
$lang['Send_private_message'] = 'Send private message';
$lang['Send_private_message'] = 'Send private message';
$lang['Hidden_email'] = '[ Hidden ]';
$lang['Hidden_email'] = '[ Hidden ]';
W tej sytuacji pliki sie dublują i juz sama nie wiem, czy tak ma byc?
Wole zapytać zanim wywali mi jakiś błąd