From 739a4656ac36f179b4771049d613b6ae92e84d43 Mon Sep 17 00:00:00 2001 From: webchick Date: Mon, 26 Nov 2012 10:44:28 -0800 Subject: [PATCH] Issue #1838006 by Bojhan: Re-phrase 'Are you sure you want to break this lock?'. --- core/modules/views/views_ui/admin.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/views/views_ui/admin.inc b/core/modules/views/views_ui/admin.inc index 1c67ceb9a1b..2e632d78b96 100644 --- a/core/modules/views/views_ui/admin.inc +++ b/core/modules/views/views_ui/admin.inc @@ -295,10 +295,10 @@ function views_ui_break_lock_confirm($form, &$form_state, ViewUI $view) { $account = user_load($view->locked->owner); $form = confirm_form($form, - t('Are you sure you want to break the lock on view %name?', + t('Do you want to break the lock on view %name?', array('%name' => $view->get('name'))), $cancel, - t('By breaking this lock, any unsaved changes made by !user will be lost!', array('!user' => theme('username', array('account' => $account)))), + t('By breaking this lock, any unsaved changes made by !user will be lost.', array('!user' => theme('username', array('account' => $account)))), t('Break lock'), t('Cancel')); $form['actions']['submit']['#submit'][] = array($view, 'submitBreakLock');