@@ 1251-1289 (lines=39) @@ | ||
1248 | * @param string $lang Language code. |
|
1249 | * @return string|bool |
|
1250 | */ |
|
1251 | function guess_locale_from_lang( $lang ) { |
|
1252 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
|
1253 | return 'en_US'; |
|
1254 | } |
|
1255 | ||
1256 | if ( ! class_exists( 'GP_Locales' ) ) { |
|
1257 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
|
1258 | return false; |
|
1259 | } |
|
1260 | ||
1261 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
|
1262 | } |
|
1263 | ||
1264 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
|
1265 | // WP.com: get_locale() returns 'it' |
|
1266 | $locale = GP_Locales::by_slug( $lang ); |
|
1267 | } else { |
|
1268 | // Jetpack: get_locale() returns 'it_IT'; |
|
1269 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
|
1270 | } |
|
1271 | ||
1272 | if ( ! $locale ) { |
|
1273 | return false; |
|
1274 | } |
|
1275 | ||
1276 | if ( empty( $locale->facebook_locale ) ) { |
|
1277 | if ( empty( $locale->wp_locale ) ) { |
|
1278 | return false; |
|
1279 | } else { |
|
1280 | // Facebook SDK is smart enough to fall back to en_US if a |
|
1281 | // locale isn't supported. Since supported Facebook locales |
|
1282 | // can fall out of sync, we'll attempt to use the known |
|
1283 | // wp_locale value and rely on said fallback. |
|
1284 | return $locale->wp_locale; |
|
1285 | } |
|
1286 | } |
|
1287 | ||
1288 | return $locale->facebook_locale; |
|
1289 | } |
|
1290 | ||
1291 | /** |
|
1292 | * Get the locale. |
@@ 985-1023 (lines=39) @@ | ||
982 | public function display_header() { |
|
983 | } |
|
984 | ||
985 | function guess_locale_from_lang( $lang ) { |
|
986 | if ( 'en' == $lang || 'en_US' == $lang || ! $lang ) { |
|
987 | return 'en_US'; |
|
988 | } |
|
989 | ||
990 | if ( ! class_exists( 'GP_Locales' ) ) { |
|
991 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
|
992 | return false; |
|
993 | } |
|
994 | ||
995 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
|
996 | } |
|
997 | ||
998 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
|
999 | // WP.com: get_locale() returns 'it' |
|
1000 | $locale = GP_Locales::by_slug( $lang ); |
|
1001 | } else { |
|
1002 | // Jetpack: get_locale() returns 'it_IT'; |
|
1003 | $locale = GP_Locales::by_field( 'wp_locale', $lang ); |
|
1004 | } |
|
1005 | ||
1006 | if ( ! $locale ) { |
|
1007 | return false; |
|
1008 | } |
|
1009 | ||
1010 | if ( empty( $locale->facebook_locale ) ) { |
|
1011 | if ( empty( $locale->wp_locale ) ) { |
|
1012 | return false; |
|
1013 | } else { |
|
1014 | // Facebook SDK is smart enough to fall back to en_US if a |
|
1015 | // locale isn't supported. Since supported Facebook locales |
|
1016 | // can fall out of sync, we'll attempt to use the known |
|
1017 | // wp_locale value and rely on said fallback. |
|
1018 | return $locale->wp_locale; |
|
1019 | } |
|
1020 | } |
|
1021 | ||
1022 | return $locale->facebook_locale; |
|
1023 | } |
|
1024 | ||
1025 | public function get_display( $post ) { |
|
1026 | if ( $this->smart ) { |