I18N: Provide gettext context to disambiguate translation strings for "Notes".

"Notes" translation string is used in both the Notes features and in the Link Manager, and they can have different meaning in some Locales, like in German for example. This changeset helps disambuguating these different contexts.

Props westonruter, dmsnell, johnbillion.
Fixes #64980.


Built from https://develop.svn.wordpress.org/trunk@62185


git-svn-id: http://core.svn.wordpress.org/trunk@61465 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb
2026-03-31 19:26:41 +00:00
parent e8a10622c6
commit 883d5d7bc6
2 changed files with 9 additions and 2 deletions

View File

@@ -1453,7 +1453,14 @@ function link_advanced_meta_box( $link ) {
<td><input name="link_rss" class="code" type="text" id="rss_uri" maxlength="255" value="<?php echo ( isset( $link->link_rss ) ? esc_attr( $link->link_rss ) : '' ); ?>" /></td>
</tr>
<tr>
<th scope="row"><label for="link_notes"><?php _e( 'Notes' ); ?></label></th>
<th scope="row">
<label for="link_notes">
<?php
/* translators: Label for the Notes textarea in the Link Manager edit screen. */
_ex( 'Notes', 'Link manager notes field label' );
?>
</label>
</th>
<td><textarea name="link_notes" id="link_notes" rows="10"><?php echo $link->link_notes ?? ''; // textarea_escaped ?></textarea></td>
</tr>
<tr>

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '7.1-alpha-62184';
$wp_version = '7.1-alpha-62185';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.