Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 15th, 2010 | Syntax: PHP | Size: 0.35 KB | Hits: 56 | Expires: Never
Copy text to clipboard
  1. <?php
  2. $directory = dirname(__FILE__).'/locale';
  3. $domain = 'messages';
  4. $locale ="de_DE";
  5.  
  6. //putenv("LANG=".$locale); //not needed for my tests, but people say it's useful for windows
  7.  
  8. setlocale( LC_MESSAGES, $locale);
  9. bindtextdomain($domain, $directory);
  10. textdomain($domain);
  11. bind_textdomain_codeset($domain, 'UTF-8');
  12.  
  13. echo _("Hello, world!");
  14. ?>