Making WordPress.org


Ignore:
Timestamp:
01/18/2019 08:23:53 PM (6 years ago)
Author:
iandunn
Message:

WordCamp Post Type: Migrate to wordcamporg text domain.

This makes it consistent with all the other code, and makes it available in GlotPress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-meetup/class-meetup-admin.php

    r8085 r8104  
    9090            $columns = array(
    9191                'cb'                   => '<input type="checkbox" />',
    92                 'title'                => __( 'Title', 'wcpt' ),
    93                 'taxonomy-meetup_tags' => __( 'Meetup Tags', 'wcpt' ),
    94                 'organizer'            => __( 'Organizer', 'wcpt' ),
    95                 'date'                 => __( 'Date', 'wcpt' ),
    96                 'meetup.com_url'       => __( 'Meetup URL', 'wcpt' ),
    97                 'helpscout_url'        => __( 'HelpScout Link', 'wcpt' ),
     92                'title'                => __( 'Title',          'wordcamporg' ),
     93                'taxonomy-meetup_tags' => __( 'Meetup Tags',    'wordcamporg' ),
     94                'organizer'            => __( 'Organizer',      'wordcamporg' ),
     95                'date'                 => __( 'Date',           'wordcamporg' ),
     96                'meetup.com_url'       => __( 'Meetup URL',     'wordcamporg' ),
     97                'helpscout_url'        => __( 'HelpScout Link', 'wordcamporg' ),
    9898            );
    9999
     
    185185            add_meta_box(
    186186                'wcpt_meetup_meetup_information',
    187                 __( 'Meetup Information', 'wcpt' ),
     187                __( 'Meetup Information', 'wordcamporg' ),
    188188                array( $this, 'wcpt_meetup_information_metabox' ),
    189189                Meetup_Application::POST_TYPE,
     
    193193            add_meta_box(
    194194                'wcpt_meetup_application',
    195                 __( 'Application Information', 'wcpt' ),
     195                __( 'Application Information', 'wordcamporg' ),
    196196                array( $this, 'wcpt_application_metabox' ),
    197197                Meetup_Application::POST_TYPE,
     
    201201            add_meta_box(
    202202                'wcpt_meetup_organizer_info',
    203                 __( 'Organizer Information', 'wcpt' ),
     203                __( 'Organizer Information', 'wordcamporg' ),
    204204                array( $this, 'wcpt_organizer_info_metabox' ),
    205205                Meetup_Application::POST_TYPE,
     
    209209            add_meta_box(
    210210                'wcpt_meetup_swag',
    211                 __( 'Swag Information', 'wcpt' ),
     211                __( 'Swag Information', 'wordcamporg' ),
    212212                array( $this, 'wcpt_swag_metabox' ),
    213213                Meetup_Application::POST_TYPE,
     
    217217            add_meta_box(
    218218                'wcpt_meetup_metadata',
    219                 __( 'Meetup.com API sync', 'wcpt' ),
     219                __( 'Meetup.com API sync', 'wordcamporg' ),
    220220                array( $this, 'wcpt_meetup_sync' ),
    221221                Meetup_Application::POST_TYPE,
Note: See TracChangeset for help on using the changeset viewer.