You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -733,11 +733,18 @@ public function template_new_token_key_pair() {
733
733
<?php
734
734
printf(
735
735
/* translators: %s: JSON Web Token */
736
-
esc_html_x( 'Your new JSON Web Token is: %s', 'JSON Web Token', 'jwt-auth' ),
736
+
esc_html_x( 'Your new access token is: %s', 'Access Token', 'jwt-auth' ),
737
737
'<kbd>{{ data.access_token }}</kbd>'
738
738
);
739
739
?>
740
-
<p><?phpesc_attr_e( 'Be sure to save this JSON Web Token in a safe location, you will not be able to retrieve it ever again. Once you click dismiss it is gone forever.', 'jwt-auth' ); ?></p>
740
+
<?php
741
+
printf(
742
+
/* translators: %s: JSON Web Token */
743
+
esc_html_x( 'Your new refresh token is: %s', 'Refresh Token', 'jwt-auth' ),
744
+
'<kbd>{{ data.refresh_token }}</kbd>'
745
+
);
746
+
?>
747
+
<p><?phpesc_attr_e( 'Be sure to save these JSON Web Tokens in a safe location, you will not be able to retrieve them ever again. Once you click dismiss they\'re is gone forever.', 'jwt-auth' ); ?></p>
0 commit comments