by soennar » Thu Mar 29, 2012 12:23 am
Following that site:
I Still don't understand...about to make indonesian php
in Step 1 n 2..
Sorry I'm still newbie n wanna to make a new.. need some help..
How to Create a language pack
Using "german" language as my example
STEP 1: Make copies of the original language file structure
ORIGINAL:
catalog/language/english
admin/language/english
COPY:
catalog/language/german
admin/language/german
Inside your new folder, eg: german, rename the file english.php to german.php
STEP 2: Change all the values within the new copy files to the translated language.
For example, english.php has:
Code:
.....
// Button
$_['button_list'] = 'List';
$_['button_insert'] = 'Insert';
$_['button_update'] = 'Update';
$_['button_delete'] = 'Delete';
$_['button_save'] = 'Save';
.....
In the german.php file it would be:
Code:
.....
// Buttons
$_['button_list'] = 'Liste';
$_['button_insert'] = 'Einfügen';
$_['button_update'] = 'Aktualisieren';
$_['button_delete'] = 'Löschen';
$_['button_save'] = 'Speichern';
.....