model = $model; } /** * Prepares and exports the selected strings translations. * * @since 3.6 * * @param PLL_Export_Container $container Export container. * @param PLL_Language $target_language The target language. * @param string $group String translation context to export. * @return WP_Error A `WP_Error` object. Note: an "empty" `WP_Error` object is returned on success. */ public function send_to_export( PLL_Export_Container $container, PLL_Language $target_language, string $group ): WP_Error { $source_language = $this->model->get_default_language(); if ( empty( $source_language ) ) { return new WP_Error( 'pll_export_no_source_language', __( 'Error: Default language not defined.', 'polylang-pro' ) ); } $translations = new PLL_Export_Strings( $this->model ); $sources = PLL_Admin_Strings::get_strings(); if ( '' !== $group ) { $sources = array_filter( $sources, function ( $source ) use ( $group ) { return $group === $source['context']; } ); } if ( empty( $sources ) ) { return new WP_Error( 'pll_export_no_strings', __( 'Error: No strings found.', 'polylang-pro' ) ); } $translations->add_items( $container, $sources, $target_language ); return new WP_Error(); } }