Making WordPress.org


Ignore:
Timestamp:
12/12/2015 12:12:06 AM (9 years ago)
Author:
iandunn
Message:

WordCamp Coming Soon Page: Internationalize all strings.

Fixes #1441
Props zodiac1978

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wccsp-settings.php

    r382 r2186  
    7373        add_submenu_page(
    7474            'options-general.php',
    75             'Coming Soon',
    76             'Coming Soon',
     75            __( 'Coming Soon', 'wordcamporg' ),
     76            __( 'Coming Soon', 'wordcamporg' ),
    7777            self::REQUIRED_CAPABILITY,
    7878            'wccsp_settings',
     
    8888            require_once( dirname( __DIR__ ) . '/views/settings-screen.php' );
    8989        } else {
    90             wp_die( 'Access denied.' );
     90            wp_die( __( 'Access denied.', 'wordcamporg' ) );
    9191        }
    9292    }
     
    106106        add_settings_field(
    107107            'wccsp_enabled',
    108             'Enabled',
     108            __( 'Enabled', 'wordcamporg' ),
    109109            array( $this, 'markup_fields' ),
    110110            'wccsp_settings',
     
    115115        add_settings_field(
    116116            'wccsp_body_background_color',
    117             'Body Background Color',
     117            __( 'Body Background Color', 'wordcamporg' ),
    118118            array( $this, 'markup_fields' ),
    119119            'wccsp_settings',
     
    124124        add_settings_field(
    125125            'wccsp_container_background_color',
    126             'Container Background Color',
     126            __( 'Container Background Color', 'wordcamporg' ),
    127127            array( $this, 'markup_fields' ),
    128128            'wccsp_settings',
     
    133133        add_settings_field(
    134134            'wccsp_text_color',
    135             'Text Color',
     135            __( 'Text Color', 'wordcamporg' ),
    136136            array( $this, 'markup_fields' ),
    137137            'wccsp_settings',
     
    142142        add_settings_field(
    143143            'wccsp_image_id',
    144             'Image',
     144            __( 'Image', 'wordcamporg' ),
    145145            array( $this, 'markup_fields' ),
    146146            'wccsp_settings',
     
    226226        $inactive_required_modules = array();
    227227        $required_modules          = array(
    228             'subscriptions' => 'Subscriptions',
    229             'contact-form'  => 'Contact Form',
     228            'subscriptions' => __( 'Subscriptions', 'wordcamporg' ),
     229            'contact-form'  => __( 'Contact Form',  'wordcamporg' ),
    230230        );
    231231       
Note: See TracChangeset for help on using the changeset viewer.