Hello,
sorry for my bad English. I am German but I try my best to explain my problem.
I downloaded the FIZZ Theme. I tryed to translate it in German with the Codestyling Localization Plugin.
1. I did not found a Language Folder in the FIZZ Theme or an .mo or .po file.
2. I made a new Folder called “languages” and made a new .mo and .po file with the help of the plugin.
3. I made not changes in the functions.php
That is written in the functions.php:
//load_theme_textdomain( ‘site5framework’, get_template_directory().’/languages’ );
load_theme_textdomain( ‘site5framework’, TEMPLATEPATH.’/languages’ );
$locale = get_locale();
$locale_file = TEMPLATEPATH.”/languages/$locale.php”;
//$locale_file = get_template_directory().”/languages/$locale.php”;
if ( is_readable( $locale_file ) ) require_once( $locale_file );
—-> the translation did not work (was not shown on the page)
Can you tell me why it did not work?
Thank you