summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php')
-rw-r--r--plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php b/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php
index 4047cfbc..6cd6b94c 100644
--- a/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php
+++ b/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php
@@ -147,21 +147,6 @@ class Jetpack_React_Page extends Jetpack_Admin_Page {
}
}
- function get_i18n_data() {
-
- $i18n_json = JETPACK__PLUGIN_DIR . 'languages/json/jetpack-' . jetpack_get_user_locale() . '.json';
-
- if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) {
- $locale_data = @file_get_contents( $i18n_json );
- if ( $locale_data ) {
- return $locale_data;
- }
- }
-
- // Return empty if we have nothing to return so it doesn't fail when parsed in JS
- return '{}';
- }
-
/**
* Gets array of any Jetpack notices that have been dismissed.
*
@@ -303,6 +288,7 @@ class Jetpack_React_Page extends Jetpack_Admin_Page {
*/
'showPromotions' => apply_filters( 'jetpack_show_promotions', true ),
'isAtomicSite' => jetpack_is_atomic_site(),
+ 'plan' => Jetpack::get_active_plan(),
),
'themeData' => array(
'name' => $current_theme->get( 'Name' ),
@@ -311,7 +297,7 @@ class Jetpack_React_Page extends Jetpack_Admin_Page {
'infinite-scroll' => current_theme_supports( 'infinite-scroll' ) || in_array( $current_theme->get_stylesheet(), $inf_scr_support_themes ),
),
),
- 'locale' => $this->get_i18n_data(),
+ 'locale' => Jetpack::get_i18n_data_json(),
'localeSlug' => join( '-', explode( '_', jetpack_get_user_locale() ) ),
'jetpackStateNotices' => array(
'messageCode' => Jetpack::state( 'message' ),