Hier die Anleitung:
Code: Alles auswählen
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line for the english version looks like this:
# $lang['Stylesheet'] = 'CSS Stylesheet';
#
$lang['Stylesheet'] =
#
#-----[ AFTER, ADD ]---------------------------------------------
#
$lang['Stylesheet_explain'] = 'Filename for CSS stylesheet to use for this theme.';
Code: Alles auswählen
$lang['Stylesheet'] =$lang['Stylesheet_explain'] = 'Filename for CSS stylesheet to use for this theme.'; 'CSS Stylesheet';
Code: Alles auswählen
$lang['Stylesheet'] = $lang['Stylesheet_explain'] = 'Filename for CSS stylesheet to use for this theme.'; 'CSS Stylesheet';
2. Beispiel
Hier die Anleitung:
Code: Alles auswählen
#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed languages!
#
language/lang_english/lang_main.php
#
#-----[ 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';
Code: Alles auswählen
$lang['Read_profile'] = 'View user\'s profile'; = 'View user\'s profile';
$lang['Read_profile'] = 'View user\'s profile'; = 'Send e-mail to user';