modules/notes.php 1 location
|
@@ 154-158 (lines=5) @@
|
| 151 |
|
|
| 152 |
|
$wpcom_locale = get_locale(); |
| 153 |
|
|
| 154 |
|
if ( !class_exists( 'GP_Locales' ) ) { |
| 155 |
|
if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 156 |
|
require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 157 |
|
} |
| 158 |
|
} |
| 159 |
|
|
| 160 |
|
if ( class_exists( 'GP_Locales' ) ) { |
| 161 |
|
$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', $wpcom_locale ); |
modules/sharedaddy/sharing-sources.php 1 location
|
@@ 898-904 (lines=7) @@
|
| 895 |
|
return 'en_US'; |
| 896 |
|
} |
| 897 |
|
|
| 898 |
|
if ( ! class_exists( 'GP_Locales' ) ) { |
| 899 |
|
if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 900 |
|
return false; |
| 901 |
|
} |
| 902 |
|
|
| 903 |
|
require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 904 |
|
} |
| 905 |
|
|
| 906 |
|
if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
| 907 |
|
// WP.com: get_locale() returns 'it' |
modules/masterbar/masterbar.php 1 location
|
@@ 165-169 (lines=5) @@
|
| 162 |
|
public function get_locale() { |
| 163 |
|
$wpcom_locale = get_locale(); |
| 164 |
|
|
| 165 |
|
if ( ! class_exists( 'GP_Locales' ) ) { |
| 166 |
|
if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 167 |
|
require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 168 |
|
} |
| 169 |
|
} |
| 170 |
|
|
| 171 |
|
if ( class_exists( 'GP_Locales' ) ) { |
| 172 |
|
$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', get_locale() ); |
class.jetpack.php 1 location
|
@@ 853-859 (lines=7) @@
|
| 850 |
|
return 'en_US'; |
| 851 |
|
} |
| 852 |
|
|
| 853 |
|
if ( ! class_exists( 'GP_Locales' ) ) { |
| 854 |
|
if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 855 |
|
return false; |
| 856 |
|
} |
| 857 |
|
|
| 858 |
|
require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 859 |
|
} |
| 860 |
|
|
| 861 |
|
if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
| 862 |
|
// WP.com: get_locale() returns 'it' |