Skip to content

Commit

Permalink
Merge pull request #3703 from WordImpress/issue/3699
Browse files Browse the repository at this point in the history
fix: Clarify language of Dry Run messages #3699
  • Loading branch information
ravinderk committed Sep 20, 2018
2 parents c24a79d + ccfc053 commit 426eb40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions includes/admin/tools/import/class-give-import-donations.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,31 +248,31 @@ public function import_success() {
$report_html = array(
'duplicate_donor' => array(
__( '%s duplicate %s detected', 'give' ),
__( '%s duplicate %s will be detected', 'give' ),
__( '%s duplicate %s detected', 'give' ),
__( 'donor', 'give' ),
__( 'donors', 'give' ),
),
'create_donor' => array(
__( '%s %s created', 'give' ),
__( '%s %s will be going to get created', 'give' ),
__( '%s %s will be created', 'give' ),
__( 'donor', 'give' ),
__( 'donors', 'give' ),
),
'create_form' => array(
__( '%s donation %s created', 'give' ),
__( '%s donation %s will be going to get created', 'give' ),
__( '%s donation %s will be created', 'give' ),
__( 'form', 'give' ),
__( 'forms', 'give' ),
),
'duplicate_donation' => array(
__( '%s duplicate %s detected', 'give' ),
__( '%s duplicate %s will be detected', 'give' ),
__( '%s duplicate %s detected', 'give' ),
__( 'donation', 'give' ),
__( 'donations', 'give' ),
),
'create_donation' => array(
__( '%s %s imported', 'give' ),
__( '%s %s will going to get imported', 'give' ),
__( '%s %s will be imported', 'give' ),
__( 'donation', 'give' ),
__( 'donations', 'give' ),
),
Expand Down

0 comments on commit 426eb40

Please sign in to comment.