translation.php 451 B

12345678910111213141516171819202122232425
  1. <?php
  2. /* Welcome to Bones :)
  3. Thanks to the fantastic work by Bones users, we've now
  4. the ability to translate Bones into different languages.
  5. Developed by: Eddie Machado
  6. URL: http://themble.com/bones/
  7. */
  8. // Adding Translation Option
  9. load_theme_textdomain( 'bonestheme', TEMPLATEPATH.'/languages' );
  10. $locale = get_locale();
  11. $locale_file = TEMPLATEPATH."/languages/$locale.php";
  12. if ( is_readable($locale_file) ) require_once($locale_file);
  13. ?>