| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\Metabox
- */
- /**
- * Button to show the premium upsell.
- */
- class WPSEO_Metabox_Keyword_Synonyms_Config {
- /**
- * Enqueues the translations necessary for the synonyms modal + button
- *
- * @return void
- */
- public function enqueue_translations() {
- $keyword_synonyms_modal_config = array(
- 'openButtonIcon' => '',
- 'intl' => array(
- 'open' => '+ ' . __( 'Add synonyms', 'wordpress-seo' ),
- 'modalAriaLabel' =>
- /* translators: %s expands to 'Yoast SEO Premium'. */
- sprintf( __( 'Get %s now!', 'wordpress-seo' ), 'Yoast SEO Premium' ),
- 'heading' =>
- /* translators: %s expands to 'Yoast SEO Premium'. */
- sprintf( __( 'Get %s now!', 'wordpress-seo' ), 'Yoast SEO Premium' ),
- ),
- 'classes' => array(
- 'openButton' => 'wpseo-keyword-synonyms button-link',
- ),
- 'content' => 'KeywordSynonyms',
- );
- $translations = new WPSEO_Keyword_Synonyms_Modal();
- $translations->enqueue_translations();
- Yoast_Modal::add( $keyword_synonyms_modal_config );
- }
- }
|