From commits-return-33820-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Wed Mar 14 14:53:12 2012 Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 20EA797C2 for ; Wed, 14 Mar 2012 14:53:12 +0000 (UTC) Received: (qmail 23496 invoked by uid 500); 14 Mar 2012 14:53:11 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 23434 invoked by uid 500); 14 Mar 2012 14:53:11 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 23422 invoked by uid 99); 14 Mar 2012 14:53:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Mar 2012 14:53:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Mar 2012 14:53:10 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 350D12388C7E for ; Wed, 14 Mar 2012 14:52:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1300574 - /directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java Date: Wed, 14 Mar 2012 14:52:50 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120314145250.350D12388C7E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Wed Mar 14 14:52:49 2012 New Revision: 1300574 URL: http://svn.apache.org/viewvc?rev=1300574&view=rev Log: Removed specific externalization tags applied on strings that have not been externalized yet. Modified: directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java Modified: directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java?rev=1300574&r1=1300573&r2=1300574&view=diff ============================================================================== --- directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java (original) +++ directory/studio/trunk/plugins/apacheds.configuration.v2/src/main/java/org/apache/directory/studio/apacheds/configuration/v2/editor/ServerConfigurationEditorUtils.java Wed Mar 14 14:52:49 2012 @@ -162,8 +162,8 @@ public class ServerConfigurationEditorUt if ( externalFile.exists() ) { String question = NLS.bind( - "The file \"{0}\" already exists. Do you want to replace the existing file?", path ); //$NON-NLS-1$ - MessageDialog overwriteDialog = new MessageDialog( shell, "Question", null, question, //$NON-NLS-1$ + "The file \"{0}\" already exists. Do you want to replace the existing file?", path ); + MessageDialog overwriteDialog = new MessageDialog( shell, "Question", null, question, MessageDialog.QUESTION, new String[] { IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL, IDialogConstants.CANCEL_LABEL }, 0 ); int overwrite = openDialogInUIThread( overwriteDialog );