Tests: Update the `es_ES` string used in `wp_send_user_request()` tests to match the current translation.

Props a2hosting.
Fixes #50741.

git-svn-id: https://develop.svn.wordpress.org/trunk@48581 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-07-23 18:21:13 +00:00
parent 6c17894e5e
commit b554928e83
3 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,12 @@
# This file is distributed under the same license as the Development (5.2.x) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2019-03-28 19:43+0300\n"
"PO-Revision-Date: 2020-07-23 21:12+0300\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Poedit 2.2.1\n"
"X-Generator: Poedit 2.3\n"
"Project-Id-Version: Development (5.2.x)\n"
"Language: es_ES\n"
"POT-Creation-Date: \n"
@ -43,7 +43,7 @@ msgstr "(Actualmente fijado en: %s)"
#. translators: Privacy data request subject. 1: Site name, 2: Name of the action
#: wp-includes/user.php:3445
msgid "[%1$s] Confirm Action: %2$s"
msgstr "[%1$s] Confirma la acción: %2$s"
msgstr "[%1$s] Confirmar la acción: %2$s"
#. translators: %s: Site name.
#: wp-includes/user.php:3175

View File

@ -292,7 +292,7 @@ class Tests_User_WpSendUserRequest extends WP_UnitTestCase {
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertContains( 'Confirma la', $mailer->get_sent()->subject );
$this->assertContains( 'Confirmar la', $mailer->get_sent()->subject );
}
/**
@ -336,7 +336,7 @@ class Tests_User_WpSendUserRequest extends WP_UnitTestCase {
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertContains( 'Confirma la', $mailer->get_sent()->subject );
$this->assertContains( 'Confirmar la', $mailer->get_sent()->subject );
}
/**
@ -401,6 +401,6 @@ class Tests_User_WpSendUserRequest extends WP_UnitTestCase {
wp_send_user_request( $request_id );
$mailer = tests_retrieve_phpmailer_instance();
$this->assertContains( 'Confirma la', $mailer->get_sent()->subject );
$this->assertContains( 'Confirmar la', $mailer->get_sent()->subject );
}
}