Skip to content

Instantly share code, notes, and snippets.

@jdevalk
Created May 21, 2012 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdevalk/2762524 to your computer and use it in GitHub Desktop.
Save jdevalk/2762524 to your computer and use it in GitHub Desktop.
<?php
// catch some weird locales served out by WP.
$locales = array(
'ar'=> 'ar_ar',
'ca'=> 'ca_es',
'en'=> 'en_us',
'el'=> 'el_gr',
'et'=> 'et_ee',
'fi'=> 'fi_fi',
'ja'=> 'ja_jp',
'sq'=> 'sq_al',
'uk'=> 'uk_ua',
'vi'=> 'vi_vn',
'zh'=> 'zh_cn'
);
if ( isset( $locales[ $locale ] ) )
$locale = $locales[$locale];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment