Networks and Sites: Replace "N/A" with "Not applicable" in choose_primary_blog()

This changeset replaces "N/A" with "Not applicable" in the `choose_primary_blog()` function. It also makes the text string translatable.

Props kowsar89, SergeyBiryukov, audrasjb, mukesh27.
Fixes #57040.


git-svn-id: https://develop.svn.wordpress.org/trunk@54832 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2022-11-13 22:29:39 +00:00
parent 12a079e69b
commit efb7e7b563

View File

@ -783,7 +783,7 @@ function choose_primary_blog() {
update_user_meta( get_current_user_id(), 'primary_blog', $blog->userblog_id );
}
} else {
echo 'N/A';
_e( 'Not available' );
}
?>
</td>