Making WordPress.org

Changeset 3617


Ignore:
Timestamp:
07/02/2016 12:44:24 AM (9 years ago)
Author:
iandunn
Message:

WordCamp Budgets: Internationalize strings in Vendor Payment status metabox.

Fixes #1791
Props Kenshino

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/payment-request/metabox-status.php

    r3105 r3617  
    6161
    6262            <div class="misc-pub-section hide-if-js wcb-mark-incomplete-notes">
    63                 <label for="wcp_mark_incomplete_notes">What information is needed?</label>
    64                 <textarea id="wcp_mark_incomplete_notes" name="wcp_mark_incomplete_notes" class="large-text" rows="5"
    65                     placeholder="Need to attach receipt, etc" <?php echo $incomplete_readonly; ?>><?php echo esc_textarea( $incomplete_notes ); ?></textarea>
     63                <label for="wcp_mark_incomplete_notes">
     64                    <?php esc_html_e( 'What information is needed?', 'wordcamporg' ); ?>
     65                </label>
     66
     67                <textarea
     68                    id="wcp_mark_incomplete_notes"
     69                    name="wcp_mark_incomplete_notes"
     70                    class="large-text"
     71                    rows="5"
     72                    placeholder="<?php esc_html_e( 'Need to attach receipt, etc', 'wordcamporg' ); ?>"
     73                    <?php echo $incomplete_readonly; ?>
     74                ><?php
     75                    echo esc_textarea( $incomplete_notes );
     76                ?></textarea>
    6677            </div>
    6778
Note: See TracChangeset for help on using the changeset viewer.