template_service = $template_service; } public function get_core_message( $issues ) { if ( $issues ) { $strings = array( 'title' => __( 'Your WPML installation may cause problems with Block editor', 'sitepress' ), 'message' => __( 'You are using WPML Translation Management without String Translation. Some of the translations may not work this way. Please download and install WPML String Translation before you translate the content from Block editor.', 'sitepress' ), ); return $this->get_shared_message( $strings, $issues ); } return null; } public function get_message( $issues, $limit = 0 ) { if ( $issues ) { $strings = array( 'title' => sprintf( __( 'To easily translate %s, you need to add the following WPML components:', 'sitepress' ), $this->get_product_names( $issues ) ), ); return $this->get_shared_message( $strings, $issues, $limit ); } return null; } private function get_shared_message( $strings, $issues, $limit = 0 ) { $strings = array_merge( array( 'download' => __( 'Download', 'sitepress' ), 'install' => __( 'Install', 'sitepress' ), 'activate' => __( 'Activate', 'sitepress' ), 'activating' => __( 'Activating...', 'sitepress' ), 'activated' => __( 'Activated', 'sitepress' ), 'error' => __( 'Error', 'sitepress' ), ), $strings ); $model = array( 'strings' => $strings, 'shared' => array( 'install_link' => get_admin_url( null, 'plugin-install.php?tab=commercial' ), ), 'options' => array( 'limit' => $limit, ), 'data' => $issues, ); return $this->template_service->show( $model, 'plugins-status.twig' ); } public function get_settings( $integrations ) { if ( $integrations ) { $model = array( 'strings' => array( /* translators: %s will be replaced with a list of plugins or themes. */ 'title' => sprintf( __( 'One more step before you can translate on %s', 'sitepress' ), $this->build_items_in_sentence( $integrations ) ), 'message' => __( "You need to enable WPML's Translation Editor, to translate conveniently.", 'sitepress' ), 'enable_done' => __( 'Done.', 'sitepress' ), 'enable_error' => __( 'Something went wrong. Please try again or contact the support.', 'sitepress' ), ), 'nonces' => array( 'enable' => wp_create_nonce( 'wpml_set_translation_editor' ), ), ); return $this->template_service->show( $model, 'integrations-tm-settings.twig' ); } return null; } /** * @param array $issues * * @return string */ private function get_product_names( $issues ) { $products = wp_list_pluck( $issues['causes'], 'name' ); return $this->build_items_in_sentence( $products ); } /** * @param array $items * * @return string */ private function build_items_in_sentence( $items ) { if ( count( $items ) <= 2 ) { /* translators: Used between elements of a two elements list */ $product_names = implode( ' ' . _x( 'and', 'Used between elements of a two elements list', 'sitepress' ) . ' ', $items ); return $product_names; } $last = array_slice( $items, - 1 ); $first = implode( ', ', array_slice( $items, 0, - 1 ) ); $both = array_filter( array_merge( array( $first ), $last ), 'strlen' ); /* translators: Used before the last element of a three or more elements list */ $product_names = implode( _x( ', and', 'Used before the last element of a three or more elements list', 'sitepress' ) . ' ', $both ); return $product_names; } }