Update rename-a-country.md

This commit is contained in:
Niels Lange 2023-08-22 16:11:37 +02:00 committed by GitHub
parent cd654d5378
commit 7803b6e165
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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