@@ -176,7 +176,7 @@ function determine_locale() {
176176 * *Note:* Don't use translate() directly, use __() or related functions.
177177 *
178178 * @since 2.2.0
179- * @since 5.5.0 Introduced gettext-{$domain} filter.
179+ * @since 5.5.0 Introduced ` gettext-{$domain}` filter.
180180 *
181181 * @param string $text Text to translate.
182182 * @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings.
@@ -242,7 +242,7 @@ function before_last_bar( $string ) {
242242 * *Note:* Don't use translate_with_gettext_context() directly, use _x() or related functions.
243243 *
244244 * @since 2.8.0
245- * @since 5.5.0 Introduced gettext_with_context-{$domain} filter.
245+ * @since 5.5.0 Introduced ` gettext_with_context-{$domain}` filter.
246246 *
247247 * @param string $text Text to translate.
248248 * @param string $context Context information for the translators.
@@ -463,7 +463,7 @@ function esc_html_x( $text, $context, $domain = 'default' ) {
463463 * printf( _n( '%s person', '%s people', $count, 'text-domain' ), number_format_i18n( $count ) );
464464 *
465465 * @since 2.8.0
466- * @since 5.5.0 Introduced ngettext-{$domain} filter.
466+ * @since 5.5.0 Introduced ` ngettext-{$domain}` filter.
467467 *
468468 * @param string $single The text to be used if the number is singular.
469469 * @param string $plural The text to be used if the number is plural.
@@ -521,7 +521,7 @@ function _n( $single, $plural, $number, $domain = 'default' ) {
521521 * printf( _nx( '%s group', '%s groups', $animals, 'group of animals', 'text-domain' ), number_format_i18n( $animals ) );
522522 *
523523 * @since 2.8.0
524- * @since 5.5.0 Introduced ngettext_with_context-{$domain} filter.
524+ * @since 5.5.0 Introduced ` ngettext_with_context-{$domain}` filter.
525525 *
526526 * @param string $single The text to be used if the number is singular.
527527 * @param string $plural The text to be used if the number is plural.
@@ -1022,9 +1022,9 @@ function load_theme_textdomain( $domain, $path = false ) {
10221022}
10231023
10241024/**
1025- * Loads the child themes translated strings.
1025+ * Loads the child theme's translated strings.
10261026 *
1027- * If the current locale exists as a .mo file in the child themes
1027+ * If the current locale exists as a .mo file in the child theme's
10281028 * root directory, it will be included in the translated strings by the $domain.
10291029 *
10301030 * The .mo files must be named based on the locale exactly.
@@ -1361,7 +1361,8 @@ function translate_user_role( $name, $domain = 'default' ) {
13611361 *
13621362 * @param string $dir A directory to search for language files.
13631363 * Default WP_LANG_DIR.
1364- * @return string[] An array of language codes or an empty array if no languages are present. Language codes are formed by stripping the .mo extension from the language file names.
1364+ * @return string[] An array of language codes or an empty array if no languages are present.
1365+ * Language codes are formed by stripping the .mo extension from the language file names.
13651366 */
13661367function get_available_languages ( $ dir = null ) {
13671368 $ languages = array ();
0 commit comments