diff --git a/src/wp-includes/rest-api.php b/src/wp-includes/rest-api.php
index c18c63ec2a..b13b242155 100644
--- a/src/wp-includes/rest-api.php
+++ b/src/wp-includes/rest-api.php
@@ -94,7 +94,7 @@ function register_rest_route( $namespace, $route, $args = array(), $override = f
__FUNCTION__,
sprintf(
/* translators: 1. The REST API route being registered. 2. The argument name. 3. The suggested function name. */
- __( 'The REST API route definition for %1$s is missing the required %2$s argument. For REST API routes that are intended to be public, use %3$s as the permission callback.', 'LION' ),
+ __( 'The REST API route definition for %1$s is missing the required %2$s argument. For REST API routes that are intended to be public, use %3$s as the permission callback.' ),
'' . $clean_namespace . '/' . trim( $route, '/' ) . '',
'permission_callback',
'__return_true'