From 0a9951a3b930b70069561d1ae6fb3209bf4ebf5c Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Tue, 29 Mar 2016 21:10:39 +0000 Subject: [PATCH] Editor: Make the tooltip for the 'apply' button in the inline link dialog translatable. Props SergeyBiryukov. Fixes #36366. git-svn-id: https://develop.svn.wordpress.org/trunk@37091 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-editor.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-editor.php b/src/wp-includes/class-wp-editor.php index 6a14a4b342..2babfa9052 100644 --- a/src/wp-includes/class-wp-editor.php +++ b/src/wp-includes/class-wp-editor.php @@ -1044,7 +1044,8 @@ final class _WP_Editors { 'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar 'Edit ' => __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar 'Paste URL or type to search' => __( 'Paste URL or type to search' ), // Placeholder for the inline link dialog - 'Link options' => __( 'Link options' ), + 'Apply' => __( 'Apply' ), // Tooltip for the 'apply' button in the inline link dialog + 'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog // Shortcuts help modal 'Keyboard Shortcuts' => __( 'Keyboard Shortcuts' ),