@@ 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 ) { |
@@ 1199-1237 (lines=39) @@ | ||
1196 | * @param string $lang Language code. |
|
1197 | * @return string|bool |
|
1198 | */ |
|
1199 | function guess_locale_from_lang( $lang ) { |
|
1200 | if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) { |
|
1201 | return 'en_US'; |
|
1202 | } |
|
1203 | ||
1204 | if ( ! class_exists( 'GP_Locales' ) ) { |
|
1205 | if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
|
1206 | return false; |
|
1207 | } |
|
1208 | ||
1209 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
|
1210 | } |
|
1211 | ||
1212 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
|
1213 | // WP.com: get_locale() returns 'it' |
|
1214 | $locale = GP_Locales::by_slug( $lang ); |
|
1215 | } else { |
|
1216 | // Jetpack: get_locale() returns 'it_IT'; |
|
1217 | $locale = GP_Locales::by_field( 'facebook_locale', $lang ); |
|
1218 | } |
|
1219 | ||
1220 | if ( ! $locale ) { |
|
1221 | return false; |
|
1222 | } |
|
1223 | ||
1224 | if ( empty( $locale->facebook_locale ) ) { |
|
1225 | if ( empty( $locale->wp_locale ) ) { |
|
1226 | return false; |
|
1227 | } else { |
|
1228 | // Facebook SDK is smart enough to fall back to en_US if a |
|
1229 | // locale isn't supported. Since supported Facebook locales |
|
1230 | // can fall out of sync, we'll attempt to use the known |
|
1231 | // wp_locale value and rely on said fallback. |
|
1232 | return $locale->wp_locale; |
|
1233 | } |
|
1234 | } |
|
1235 | ||
1236 | return $locale->facebook_locale; |
|
1237 | } |
|
1238 | ||
1239 | /** |
|
1240 | * Get the locale. |