Update rename-a-country.md

This commit is contained in:
Niels Lange 2023-08-23 12:48:03 +02:00 committed by GitHub
parent e39e15d202
commit a387e6840a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ if ( ! function_exists( 'YOUR_PREFIX_rename_country' ) ) {
* @return array $countries Updated country name(s)
*/
function YOUR_PREFIX_rename_country( $countries ) {
$countries['IE'] = __( 'Ireland', 'YOUR-TEXTDOMAIN' );
$countries['IE'] = __( 'Ireland (Changed)', 'YOUR-TEXTDOMAIN' );
return $countries;
}