@@ 1113-1151 (lines=39) @@ | ||
1110 | public function display_header() { |
|
1111 | } |
|
1112 | ||
1113 | function guess_locale_from_lang( $lang ) { |
|
1114 | if ( 'en' == $lang || 'en_US' == $lang || ! $lang ) { |
|
1115 | return 'en_US'; |
|
1116 | } |
|
1117 | ||
1118 | if ( ! class_exists( 'GP_Locales' ) ) { |
|
1119 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
|
1120 | return false; |
|
1121 | } |
|
1122 | ||
1123 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
|
1124 | } |
|
1125 | ||
1126 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
|
1127 | // WP.com: get_locale() returns 'it' |
|
1128 | $locale = GP_Locales::by_slug( $lang ); |
|
1129 | } else { |
|
1130 | // Jetpack: get_locale() returns 'it_IT'; |
|
1131 | $locale = GP_Locales::by_field( 'wp_locale', $lang ); |
|
1132 | } |
|
1133 | ||
1134 | if ( ! $locale ) { |
|
1135 | return false; |
|
1136 | } |
|
1137 | ||
1138 | if ( empty( $locale->facebook_locale ) ) { |
|
1139 | if ( empty( $locale->wp_locale ) ) { |
|
1140 | return false; |
|
1141 | } else { |
|
1142 | // Facebook SDK is smart enough to fall back to en_US if a |
|
1143 | // locale isn't supported. Since supported Facebook locales |
|
1144 | // can fall out of sync, we'll attempt to use the known |
|
1145 | // wp_locale value and rely on said fallback. |
|
1146 | return $locale->wp_locale; |
|
1147 | } |
|
1148 | } |
|
1149 | ||
1150 | return $locale->facebook_locale; |
|
1151 | } |
|
1152 | ||
1153 | public function get_display( $post ) { |
|
1154 | if ( $this->smart ) { |
@@ 1313-1351 (lines=39) @@ | ||
1310 | * @param string $lang Language code. |
|
1311 | * @return string|bool |
|
1312 | */ |
|
1313 | function guess_locale_from_lang( $lang ) { |
|
1314 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
|
1315 | return 'en_US'; |
|
1316 | } |
|
1317 | ||
1318 | if ( ! class_exists( 'GP_Locales' ) ) { |
|
1319 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
|
1320 | return false; |
|
1321 | } |
|
1322 | ||
1323 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
|
1324 | } |
|
1325 | ||
1326 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
|
1327 | // WP.com: get_locale() returns 'it' |
|
1328 | $locale = GP_Locales::by_slug( $lang ); |
|
1329 | } else { |
|
1330 | // Jetpack: get_locale() returns 'it_IT'; |
|
1331 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
|
1332 | } |
|
1333 | ||
1334 | if ( ! $locale ) { |
|
1335 | return false; |
|
1336 | } |
|
1337 | ||
1338 | if ( empty( $locale->facebook_locale ) ) { |
|
1339 | if ( empty( $locale->wp_locale ) ) { |
|
1340 | return false; |
|
1341 | } else { |
|
1342 | // Facebook SDK is smart enough to fall back to en_US if a |
|
1343 | // locale isn't supported. Since supported Facebook locales |
|
1344 | // can fall out of sync, we'll attempt to use the known |
|
1345 | // wp_locale value and rely on said fallback. |
|
1346 | return $locale->wp_locale; |
|
1347 | } |
|
1348 | } |
|
1349 | ||
1350 | return $locale->facebook_locale; |
|
1351 | } |
|
1352 | ||
1353 | /** |
|
1354 | * Get the locale. |