Making WordPress.org


Ignore:
Timestamp:
02/21/2017 12:03:58 AM (8 years ago)
Author:
iandunn
Message:

WordCamp Payments: Internationalize strings

I also converted uses of non-escapted i18n functions -- e.g., __() -- to their escaped counterparts -- e.g., esc_html__().

Fixes 2229
Props thomas-vitale

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php

    r4524 r4967  
    2323
    2424        register_post_status( 'wcb-incomplete', array (
    25             'label' => _x( 'Incomplete', 'payment request', 'wordcamporg' ),
     25            'label' => esc_html_x( 'Incomplete', 'payment request', 'wordcamporg' ),
    2626            'public' => false,
    2727            'protected' => true,
     
    3434
    3535        register_post_status( 'wcb-pending-approval', array (
    36             'label' => _x( 'Pending Approval', 'payment request', 'wordcamporg' ),
     36            'label' => esc_html_x( 'Pending Approval', 'payment request', 'wordcamporg' ),
    3737            'public' => false,
    3838            'protected' => true,
     
    4545
    4646        register_post_status( 'wcb-approved', array (
    47             'label' => _x( 'Approved', 'payment request', 'wordcamporg' ),
     47            'label' => esc_html_x( 'Approved', 'payment request', 'wordcamporg' ),
    4848            'public' => false,
    4949            'protected' => true,
     
    5656
    5757        register_post_status( 'wcb-pending-payment', array (
    58             'label' => _x( 'Payment Sent', 'payment request', 'wordcamporg' ),
     58            'label' => esc_html_x( 'Payment Sent', 'payment request', 'wordcamporg' ),
    5959            'public' => false,
    6060            'protected' => true,
     
    6767
    6868        register_post_status( 'wcb-paid', array (
    69             'label' => _x( 'Paid', 'payment request', 'wordcamporg' ),
     69            'label' => esc_html_x( 'Paid', 'payment request', 'wordcamporg' ),
    7070            'public' => false,
    7171            'protected' => true,
     
    7878
    7979        register_post_status( 'wcb-failed', array (
    80             'label' => _x( 'Failed', 'payment request', 'wordcamporg' ),
     80            'label' => esc_html_x( 'Failed', 'payment request', 'wordcamporg' ),
    8181            'public' => false,
    8282            'protected' => true,
     
    8989
    9090        register_post_status( 'wcb-cancelled', array (
    91             'label' => _x( 'Cancelled', 'payment request', 'wordcamporg' ),
     91            'label' => esc_html_x( 'Cancelled', 'payment request', 'wordcamporg' ),
    9292            'public' => false,
    9393            'protected' => true,
     
    109109    public function register_budgets_menu() {
    110110        add_menu_page(
    111             __( 'WordCamp Budget', 'wordcamporg' ),
    112             __( 'Budget',          'wordcamporg' ),
     111            esc_html__( 'WordCamp Budget', 'wordcamporg' ),
     112            esc_html__( 'Budget',          'wordcamporg' ),
    113113            'manage_options',
    114114            'wordcamp-budget',
     
    145145            'wcbLocalizedStrings',      // todo merge into WordCampBudgets var
    146146            array(
    147                 'uploadModalTitle'  => __( 'Attach Supporting Documentation', 'wordcamporg' ),
    148                 'uploadModalButton' => __( 'Attach Files', 'wordcamporg' ),
     147                'uploadModalTitle'  => esc_html__( 'Attach Supporting Documentation', 'wordcamporg' ),
     148                'uploadModalButton' => esc_html__( 'Attach Files', 'wordcamporg' ),
    149149            )
    150150        );
     
    746746    public static function get_payment_categories() {
    747747        return array(
    748             'after-party'     => __( 'After Party',                    'wordcamporg' ),
    749             'audio-visual'    => __( 'Audio Visual',                   'wordcamporg' ),
    750             'camera-shipping' => __( 'Camera Shipping',                'wordcamporg' ),
    751             'food-beverages'  => __( 'Food & Beverage',                'wordcamporg' ),
    752             'office-supplies' => __( 'Office Supplies',                'wordcamporg' ),
    753             'signage-badges'  => __( 'Signage & Badges',               'wordcamporg' ),
    754             'speaker-event'   => __( 'Speaker Event',                  'wordcamporg' ),
    755             'swag'            => __( 'Swag (t-shirts, stickers, etc)', 'wordcamporg' ),
    756             'venue'           => __( 'Venue',                          'wordcamporg' ),
    757             'other'           => __( 'Other',                          'wordcamporg' ), // This one is intentionally last, regardless of alphabetical order
     748            'after-party'     => esc_html__( 'After Party',                    'wordcamporg' ),
     749            'audio-visual'    => esc_html__( 'Audio Visual',                   'wordcamporg' ),
     750            'camera-shipping' => esc_html__( 'Camera Shipping',                'wordcamporg' ),
     751            'food-beverages'  => esc_html__( 'Food & Beverage',                'wordcamporg' ),
     752            'office-supplies' => esc_html__( 'Office Supplies',                'wordcamporg' ),
     753            'signage-badges'  => esc_html__( 'Signage & Badges',               'wordcamporg' ),
     754            'speaker-event'   => esc_html__( 'Speaker Event',                  'wordcamporg' ),
     755            'swag'            => esc_html__( 'Swag (t-shirts, stickers, etc)', 'wordcamporg' ),
     756            'venue'           => esc_html__( 'Venue',                          'wordcamporg' ),
     757            'other'           => esc_html__( 'Other',                          'wordcamporg' ), // This one is intentionally last, regardless of alphabetical order
    758758        );
    759759    }
Note: See TracChangeset for help on using the changeset viewer.