Making WordPress.org

Changeset 2331


Ignore:
Timestamp:
01/19/2016 10:03:13 PM (8 years ago)
Author:
iandunn
Message:

WordCamp Budgets: Move uploadModalTitle string into wcbLocalizedStrings.

It's generic enough to be used by all modules, so each module doesn't need to set a unique title.

Location:
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments
Files:
4 edited

Legend:

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

    r2327 r2331  
    200200            wp_enqueue_script( 'wcb-attached-files' );
    201201        }
    202 
    203         wp_localize_script(
    204             'payment-requests',
    205             'wcpLocalizedStrings',      // todo merge into WordCampBudgets var
    206             array(
    207                 'uploadModalTitle'  => __( 'Attach Supporting Documentation', 'wordcamporg' ),
    208             )
    209         );
    210202    }
    211203
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php

    r2327 r2331  
    6060            'wcbLocalizedStrings',      // todo merge into WordCampBudgets var
    6161            array(
     62                'uploadModalTitle'  => __( 'Attach Supporting Documentation', 'wordcamporg' ),
    6263                'uploadModalButton' => __( 'Attach Files', 'wordcamporg' ),
    6364            )
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/javascript/payment-requests.js

    r2330 r2331  
    2323        registerEventHandlers : function() {
    2424            var paymentCategory = $( '#payment_category' );
    25            
     25
    2626            $( '#wcp_payment_details' ).find( 'input[name=payment_method]' ).change( wcb.togglePaymentMethodFields );
    2727            paymentCategory.change( app.toggleOtherCategoryDescription );
    2828            paymentCategory.trigger( 'change' );   // Set the initial state
    29             $( '#wcp_files' ).find( 'a.wcp-insert-media' ).click( { title : wcpLocalizedStrings.uploadModalTitle }, wcb.showUploadModal );
     29            $( '#wcp_files' ).find( 'a.wcp-insert-media' ).click( wcb.showUploadModal );
    3030            $( '#wcp_mark_incomplete_checkbox' ).click( app.requireNotes );
    3131        },
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/javascript/wordcamp-budgets.js

    r2327 r2331  
    3030                // Create the frame
    3131                app.fileUploadFrame = wp.media( {
    32                     title: event.data.title,
     32                    title: wcbLocalizedStrings.uploadModalTitle,
    3333                    multiple: true,
    3434                    button: {
Note: See TracChangeset for help on using the changeset viewer.