README 518 B

1234567891011121314151617
  1. German Translation for GitPHP by Andy Tandler <tandler@adaptik.de>
  2. To Install the Language you need only few Steps:
  3. 1. Copy Directory de_DE into locale, where the File gitphp.pot is located.
  4. 2. Open include/Resource.class.php and search for function LocaleToName.
  5. Add this case to the switch:
  6. case 'de_DE':
  7. return 'Deutsch';
  8. 3. If you want that German is the pre-selected Language in your GitPHP,
  9. open config/gitphp.conf.php and add this Line:
  10. $gitphp_conf['locale'] = 'de_DE';