Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 94508 invoked from network); 27 Nov 2008 21:36:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Nov 2008 21:36:28 -0000 Received: (qmail 14550 invoked by uid 500); 27 Nov 2008 21:36:39 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 14516 invoked by uid 500); 27 Nov 2008 21:36:39 -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 14507 invoked by uid 99); 27 Nov 2008 21:36:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Nov 2008 13:36:39 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 27 Nov 2008 21:35:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1128C238899A; Thu, 27 Nov 2008 13:35:37 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r721282 [2/2] - in /directory/studio/trunk/ldapbrowser-ui/src/main: java/org/apache/directory/studio/ldapbrowser/ui/wizards/ resources/org/apache/directory/studio/ldapbrowser/ui/wizards/ Date: Thu, 27 Nov 2008 21:35:35 -0000 To: commits@directory.apache.org From: felixk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081127213537.1128C238899A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/ImportLdifMainWizardPage.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/ImportLdifMainWizardPage.java?rev=721282&r1=721281&r2=721282&view=diff ============================================================================== --- directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/ImportLdifMainWizardPage.java (original) +++ directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/ImportLdifMainWizardPage.java Thu Nov 27 13:35:34 2008 @@ -49,15 +49,15 @@ /** The continue on error flag key */ public static final String CONTINUE_ON_ERROR_DIALOGSETTING_KEY = ImportLdifMainWizardPage.class.getName() - + ".continueOnError"; + + ".continueOnError"; //$NON-NLS-1$ /** The update if entry exists flag key */ public static final String UPDATE_IF_ENTRY_EXISTS_DIALOGSETTING_KEY = ImportLdifMainWizardPage.class.getName() - + ".updateIfEntryExists"; + + ".updateIfEntryExists"; //$NON-NLS-1$ /** The valid extension. */ private static final String[] EXTENSIONS = new String[] - { "*.ldif", "*.*" }; + { "*.ldif", "*.*" }; //$NON-NLS-1$ //$NON-NLS-2$ /** The wizard. */ private ImportLdifWizard wizard; @@ -102,8 +102,8 @@ public ImportLdifMainWizardPage( String pageName, ImportLdifWizard wizard ) { super( pageName ); - setTitle( "LDIF Import" ); - setDescription( "Please select a connection and the LDIF to import" ); + setTitle( Messages.getString( "ImportLdifMainWizardPage.LDIFImport" ) ); //$NON-NLS-1$ + setDescription( Messages.getString( "ImportLdifMainWizardPage.PleaseSelectConnectionAndLDIF" ) ); //$NON-NLS-1$ setImageDescriptor( BrowserUIPlugin.getDefault().getImageDescriptor( BrowserUIConstants.IMG_IMPORT_LDIF_WIZARD ) ); setPageComplete( false ); @@ -120,19 +120,19 @@ boolean ok = true; File ldifFile = new File( ldifFileBrowserWidget.getFilename() ); - if ( "".equals( ldifFileBrowserWidget.getFilename() ) ) + if ( "".equals( ldifFileBrowserWidget.getFilename() ) ) //$NON-NLS-1$ { setErrorMessage( null ); ok = false; } else if ( !ldifFile.isFile() || !ldifFile.exists() ) { - setErrorMessage( "Selected LDIF file doesn't exist." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorSelectedLDIFNotExist" ) ); //$NON-NLS-1$ ok = false; } else if ( !ldifFile.canRead() ) { - setErrorMessage( "Selected LDIF file is not readable." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorSelectedLDIFNotReadable" ) ); //$NON-NLS-1$ ok = false; } else if ( enableLoggingButton.getSelection() ) @@ -142,32 +142,34 @@ if ( logFile.equals( ldifFile ) ) { - setErrorMessage( "LDIF file and Logfile must not be equal." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorLDIFAndLogEqual" ) ); //$NON-NLS-1$ ok = false; } else if ( logFile.isDirectory() ) { - setErrorMessage( "Selected logfile is no file." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorSelectedLogFileNotFile" ) ); //$NON-NLS-1$ ok = false; } else if ( logFile.exists() && !overwriteLogfileButton.getSelection() ) { - setErrorMessage( "Selected logfile already exists. Select option 'Overwrite existing logfile' if you want to overwrite the logfile." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorSelectedLogFileExist" ) ); //$NON-NLS-1$ ok = false; } else if ( logFile.exists() && !logFile.canWrite() ) { - setErrorMessage( "Selected logfile is not writeable." ); + setErrorMessage( Messages.getString( "ImportLdifMainWizardPage.ErrorSelectedLogFileNotWritable" ) ); //$NON-NLS-1$ ok = false; } else if ( logFile.getParentFile() == null ) { - setErrorMessage( "Selected logfile directory is not writeable." ); + setErrorMessage( Messages + .getString( "ImportLdifMainWizardPage.ErrorSelectedLogFileDirectoryNotWritable" ) ); //$NON-NLS-1$ ok = false; } else if ( !logFile.exists() && ( logFileDirectory == null || !logFileDirectory.canWrite() ) ) { - setErrorMessage( "Selected logfile directory is not writeable." ); + setErrorMessage( Messages + .getString( "ImportLdifMainWizardPage.ErrorSelectedLogFileDirectoryNotWritable" ) ); //$NON-NLS-1$ ok = false; } } @@ -194,8 +196,9 @@ Composite composite = BaseWidgetUtils.createColumnContainer( parent, 3, 1 ); // LDIF file - BaseWidgetUtils.createLabel( composite, "LDIF File:", 1 ); - ldifFileBrowserWidget = new FileBrowserWidget( "Select LDIF File", EXTENSIONS, FileBrowserWidget.TYPE_OPEN ); + BaseWidgetUtils.createLabel( composite, Messages.getString( "ImportLdifMainWizardPage.LDIFFile" ), 1 ); //$NON-NLS-1$ + ldifFileBrowserWidget = new FileBrowserWidget( + Messages.getString( "ImportLdifMainWizardPage.SelectLDIFFile" ), EXTENSIONS, FileBrowserWidget.TYPE_OPEN ); //$NON-NLS-1$ ldifFileBrowserWidget.createWidget( composite ); ldifFileBrowserWidget.addWidgetModifyListener( new WidgetModifyListener() { @@ -204,14 +207,14 @@ wizard.setLdifFilename( ldifFileBrowserWidget.getFilename() ); if ( useDefaultLogfileButton.getSelection() ) { - logFileBrowserWidget.setFilename( ldifFileBrowserWidget.getFilename() + ".log" ); + logFileBrowserWidget.setFilename( ldifFileBrowserWidget.getFilename() + ".log" ); //$NON-NLS-1$ } validate(); } } ); // Connection - BaseWidgetUtils.createLabel( composite, "Import into:", 1 ); + BaseWidgetUtils.createLabel( composite, Messages.getString( "ImportLdifMainWizardPage.ImportTo" ), 1 ); //$NON-NLS-1$ browserConnectionWidget = new BrowserConnectionWidget( wizard.getImportConnection() ); browserConnectionWidget.createWidget( composite ); browserConnectionWidget.addWidgetModifyListener( new WidgetModifyListener() @@ -225,10 +228,12 @@ // Logging Composite loggingOuterComposite = BaseWidgetUtils.createColumnContainer( composite, 1, 3 ); - Group loggingGroup = BaseWidgetUtils.createGroup( loggingOuterComposite, "Logging", 1 ); + Group loggingGroup = BaseWidgetUtils.createGroup( loggingOuterComposite, Messages + .getString( "ImportLdifMainWizardPage.Logging" ), 1 ); //$NON-NLS-1$ Composite loggingContainer = BaseWidgetUtils.createColumnContainer( loggingGroup, 3, 1 ); - enableLoggingButton = BaseWidgetUtils.createCheckbox( loggingContainer, "Enable logging", 3 ); + enableLoggingButton = BaseWidgetUtils.createCheckbox( loggingContainer, Messages + .getString( "ImportLdifMainWizardPage.EnableLogging" ), 3 ); //$NON-NLS-1$ enableLoggingButton.setSelection( true ); wizard.setEnableLogging( enableLoggingButton.getSelection() ); enableLoggingButton.addSelectionListener( new SelectionAdapter() @@ -246,14 +251,15 @@ } ); BaseWidgetUtils.createRadioIndent( loggingContainer, 1 ); - useDefaultLogfileButton = BaseWidgetUtils.createRadiobutton( loggingContainer, "Use default logfile", 2 ); + useDefaultLogfileButton = BaseWidgetUtils.createRadiobutton( loggingContainer, Messages + .getString( "ImportLdifMainWizardPage.UseDefaultLogFile" ), 2 ); //$NON-NLS-1$ useDefaultLogfileButton.setSelection( true ); useDefaultLogfileButton.addSelectionListener( new SelectionAdapter() { public void widgetSelected( SelectionEvent event ) { String temp = customLogfileName; - logFileBrowserWidget.setFilename( ldifFileBrowserWidget.getFilename() + ".log" ); + logFileBrowserWidget.setFilename( ldifFileBrowserWidget.getFilename() + ".log" ); //$NON-NLS-1$ logFileBrowserWidget.setEnabled( false ); customLogfileName = temp; validate(); @@ -261,20 +267,22 @@ } ); BaseWidgetUtils.createRadioIndent( loggingContainer, 1 ); - useCustomLogfileButton = BaseWidgetUtils.createRadiobutton( loggingContainer, "Use custom logfile", 2 ); + useCustomLogfileButton = BaseWidgetUtils.createRadiobutton( loggingContainer, Messages + .getString( "ImportLdifMainWizardPage.UseCustomLogFile" ), 2 ); //$NON-NLS-1$ useCustomLogfileButton.setSelection( false ); useCustomLogfileButton.addSelectionListener( new SelectionAdapter() { public void widgetSelected( SelectionEvent event ) { - logFileBrowserWidget.setFilename( customLogfileName != null ? customLogfileName : "" ); + logFileBrowserWidget.setFilename( customLogfileName != null ? customLogfileName : "" ); //$NON-NLS-1$ logFileBrowserWidget.setEnabled( true ); validate(); } } ); BaseWidgetUtils.createRadioIndent( loggingContainer, 1 ); - logFileBrowserWidget = new FileBrowserWidget( "Select Logfile", null, FileBrowserWidget.TYPE_SAVE ); + logFileBrowserWidget = new FileBrowserWidget( + Messages.getString( "ImportLdifMainWizardPage.SelectLogFile" ), null, FileBrowserWidget.TYPE_SAVE ); //$NON-NLS-1$ logFileBrowserWidget.createWidget( loggingContainer ); logFileBrowserWidget.addWidgetModifyListener( new WidgetModifyListener() { @@ -288,7 +296,8 @@ logFileBrowserWidget.setEnabled( false ); BaseWidgetUtils.createRadioIndent( loggingContainer, 1 ); - overwriteLogfileButton = BaseWidgetUtils.createCheckbox( loggingContainer, "Overwrite existing logfile", 2 ); + overwriteLogfileButton = BaseWidgetUtils.createCheckbox( loggingContainer, Messages + .getString( "ImportLdifMainWizardPage.OverwriteExistingLogFile" ), 2 ); //$NON-NLS-1$ overwriteLogfileButton.addSelectionListener( new SelectionAdapter() { public void widgetSelected( SelectionEvent event ) @@ -299,14 +308,15 @@ // Options Composite optionsOuterComposite = BaseWidgetUtils.createColumnContainer( composite, 1, 3 ); - Group optionsGroup = BaseWidgetUtils.createGroup( optionsOuterComposite, "Options", 1 ); + Group optionsGroup = BaseWidgetUtils.createGroup( optionsOuterComposite, Messages + .getString( "ImportLdifMainWizardPage.Options" ), 1 ); //$NON-NLS-1$ Composite optionsContainer = BaseWidgetUtils.createColumnContainer( optionsGroup, 3, 1 ); - updateIfEntryExistsButton = BaseWidgetUtils.createCheckbox( optionsContainer, "Update existing entries", + updateIfEntryExistsButton = BaseWidgetUtils.createCheckbox( optionsContainer, Messages + .getString( "ImportLdifMainWizardPage.UpdateExistingEntires" ), //$NON-NLS-1$ 3 ); updateIfEntryExistsButton - .setToolTipText( "This options applies for LDIF content records and LDIF add records. " - + "If enabled and the entry to add already exists it will be updated with the attributes defined in the LDIF record." ); + .setToolTipText( Messages.getString( "ImportLdifMainWizardPage.OptionsAppliesForLdif" ) ); //$NON-NLS-1$ if ( BrowserUIPlugin.getDefault().getDialogSettings().get( UPDATE_IF_ENTRY_EXISTS_DIALOGSETTING_KEY ) == null ) { BrowserUIPlugin.getDefault().getDialogSettings().put( UPDATE_IF_ENTRY_EXISTS_DIALOGSETTING_KEY, false ); @@ -323,7 +333,8 @@ } } ); - continueOnErrorButton = BaseWidgetUtils.createCheckbox( optionsContainer, "Continue on error", 3 ); + continueOnErrorButton = BaseWidgetUtils.createCheckbox( optionsContainer, Messages + .getString( "ImportLdifMainWizardPage.ContinueOnError" ), 3 ); //$NON-NLS-1$ if ( BrowserUIPlugin.getDefault().getDialogSettings().get( CONTINUE_ON_ERROR_DIALOGSETTING_KEY ) == null ) { BrowserUIPlugin.getDefault().getDialogSettings().put( CONTINUE_ON_ERROR_DIALOGSETTING_KEY, false ); Added: directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/Messages.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/Messages.java?rev=721282&view=auto ============================================================================== --- directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/Messages.java (added) +++ directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/Messages.java Thu Nov 27 13:35:34 2008 @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ + +package org.apache.directory.studio.ldapbrowser.ui.wizards; + + +import java.util.MissingResourceException; +import java.util.ResourceBundle; + + +public class Messages +{ + private static final String BUNDLE_NAME = "org.apache.directory.studio.ldapbrowser.ui.wizards.messages"; //$NON-NLS-1$ + + private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle( BUNDLE_NAME ); + + + private Messages() + { + } + + + public static String getString( String key ) + { + try + { + return RESOURCE_BUNDLE.getString( key ); + } + catch ( MissingResourceException e ) + { + return '!' + key + '!'; + } + } +} Propchange: directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/Messages.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkMainWizardPage.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkMainWizardPage.java?rev=721282&r1=721281&r2=721282&view=diff ============================================================================== --- directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkMainWizardPage.java (original) +++ directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkMainWizardPage.java Thu Nov 27 13:35:34 2008 @@ -67,8 +67,8 @@ public NewBookmarkMainWizardPage( String pageName, IEntry entry, NewBookmarkWizard wizard ) { super( pageName ); - setTitle( "New Bookmark" ); - setDescription( "Please enter the bookmark parameters." ); + setTitle( Messages.getString( "NewBookmarkMainWizardPage.NewBookmark" ) ); //$NON-NLS-1$ + setDescription( Messages.getString( "NewBookmarkMainWizardPage.EnterNewBookmark" ) ); //$NON-NLS-1$ // setImageDescriptor(BrowserUIPlugin.getDefault().getImageDescriptor(BrowserUIConstants.IMG_ATTRIBUTE_WIZARD)); setPageComplete( false ); @@ -93,7 +93,7 @@ { if ( bookmarkNameText != null && !bookmarkNameText.isDisposed() ) { - setPageComplete( bookmarkEntryWidget.getDn() != null && !"".equals( bookmarkNameText.getText() ) ); + setPageComplete( bookmarkEntryWidget.getDn() != null && !"".equals( bookmarkNameText.getText() ) ); //$NON-NLS-1$ } } @@ -123,7 +123,7 @@ Composite innerComposite = BaseWidgetUtils.createColumnContainer( composite, 3, 1 ); - BaseWidgetUtils.createLabel( innerComposite, "Bookmark Name:", 1 ); + BaseWidgetUtils.createLabel( innerComposite, Messages.getString( "NewBookmarkMainWizardPage.BookmarkName" ), 1 ); //$NON-NLS-1$ bookmarkNameText = BaseWidgetUtils.createText( innerComposite, entry.getDn().getUpName(), 2 ); bookmarkNameText.setFocus(); bookmarkNameText.addModifyListener( new ModifyListener() @@ -134,7 +134,7 @@ } } ); - BaseWidgetUtils.createLabel( innerComposite, "Bookmark DN:", 1 ); + BaseWidgetUtils.createLabel( innerComposite, Messages.getString( "NewBookmarkMainWizardPage.BookmarkDN" ), 1 ); //$NON-NLS-1$ bookmarkEntryWidget = new EntryWidget(); bookmarkEntryWidget.addWidgetModifyListener( this ); bookmarkEntryWidget.createWidget( innerComposite ); Modified: directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkWizard.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkWizard.java?rev=721282&r1=721281&r2=721282&view=diff ============================================================================== --- directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkWizard.java (original) +++ directory/studio/trunk/ldapbrowser-ui/src/main/java/org/apache/directory/studio/ldapbrowser/ui/wizards/NewBookmarkWizard.java Thu Nov 27 13:35:34 2008 @@ -67,7 +67,7 @@ */ public NewBookmarkWizard() { - setWindowTitle( "New Bookmark" ); + setWindowTitle( Messages.getString( "NewBookmarkWizard.NewBookmark" ) ); //$NON-NLS-1$ setNeedsProgressMonitor( false ); } @@ -131,7 +131,7 @@ { selectedEntry = ( ( BrowserEntryPage ) o ).getEntry(); } - + else { selectedEntry = null; @@ -170,9 +170,9 @@ */ protected DummyWizardPage() { - super( "" ); - setTitle( "No entry selected" ); - setDescription( "In order to use the bookmark creation wizard please select an entry or connection." ); + super( "" ); //$NON-NLS-1$ + setTitle( Messages.getString( "NewBookmarkWizard.NoEntrySelected" ) ); //$NON-NLS-1$ + setDescription( Messages.getString( "NewBookmarkWizard.InOrderToUse" ) ); //$NON-NLS-1$ // setImageDescriptor(BrowserUIPlugin.getDefault().getImageDescriptor(BrowserUIConstants.IMG_ATTRIBUTE_WIZARD)); setPageComplete( true ); } Added: directory/studio/trunk/ldapbrowser-ui/src/main/resources/org/apache/directory/studio/ldapbrowser/ui/wizards/messages.properties URL: http://svn.apache.org/viewvc/directory/studio/trunk/ldapbrowser-ui/src/main/resources/org/apache/directory/studio/ldapbrowser/ui/wizards/messages.properties?rev=721282&view=auto ============================================================================== --- directory/studio/trunk/ldapbrowser-ui/src/main/resources/org/apache/directory/studio/ldapbrowser/ui/wizards/messages.properties (added) +++ directory/studio/trunk/ldapbrowser-ui/src/main/resources/org/apache/directory/studio/ldapbrowser/ui/wizards/messages.properties Thu Nov 27 13:35:34 2008 @@ -0,0 +1,145 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +BatchOperationApplyOnWizardPage.CurrentSelection=Current Selection: +BatchOperationApplyOnWizardPage.DNsOfSelectedAttributes=DNs of selected Attributes ({0} Entries) +BatchOperationApplyOnWizardPage.PleaseSelectEntries=Please select the entries where the batch operation should be applied to. +BatchOperationApplyOnWizardPage.ResultsOfSearch=Results of following Search: +BatchOperationApplyOnWizardPage.SearchResultOf=Search Results of "{0}" ({1} Entries) +BatchOperationApplyOnWizardPage.SelectApplicationEntries=Select Application Entries +BatchOperationApplyOnWizardPage.SelectedEntries=Selected Entries ({0}) Entries +BatchOperationFinishWizardPage.ExecuteOnline=Excecute online +BatchOperationFinishWizardPage.GenerateLDIF=Generate LDIF +BatchOperationFinishWizardPage.PleaseSelectBatchOperation=Please select if the batch operation should be executed online or a LDIF should be generated. +BatchOperationFinishWizardPage.SelectExecutionMethod=Select Execution Method +BatchOperationLdifWizardPage.LDIFFragment=LDIF Fragment +BatchOperationLdifWizardPage.PleaseEnterLDIFFragment=Please enter the LDIF fragment that should be executed on each entry. +BatchOperationModifyWizardPage.DefineModification=Define Modification +BatchOperationModifyWizardPage.PleaseDefineModifications=Please define the modifcations. +BatchOperationTypeWizardPage.DeleteEntries=Delete entries +BatchOperationTypeWizardPage.ExecuteLDIFChangetype=Execute LDIF changetype fragment on each entry +BatchOperationTypeWizardPage.ModifyEntries=Modify entries +BatchOperationTypeWizardPage.PleaseSelectBatch=Please select the batch operation type. +BatchOperationTypeWizardPage.SelectOperationType=Select Operation Type +BatchOperationWizard.BatchOperation=Batch Operation +BatchOperationWizard.NoConnectionSelected=No connection selected or connection is closed +BatchOperationWizard.SelectOPenCollection=In order to use the batch operation wizard please select a opened connection. +ExportBaseFromWizardPage.DataToExport=Data to Export +ExportBaseFromWizardPage.PleaseDefineSearchParameters=Please define search parameters for the export. +ExportBaseToPage.ErrorDirectoryNotWritable=Selected {0} file directory is not writable. +ExportBaseToPage.ErrorFileExists=Selected {0} file already exists. Select option 'Overwrite existing {1} file' if you want to overwrite the {2} file. +ExportBaseToPage.ErrorFileNotWritable=Selected {0} file is not writable. +ExportBaseToPage.ErrorNotAFile=Selected {0} is no file. +ExportBaseToPage.File=\ File\: +ExportBaseToPage.FileType={0} File +ExportBaseToPage.OverwriteExistingFile=O&verwrite existing {0} file +ExportBaseToPage.PleaseEnterTargetFile=Please enter the target {0} file. +ExportBaseToPage.SelectFileType=Select {0} File +ExportConnectionsWizard.1=connections.xml +ExportConnectionsWizard.2=connectionFolders.xml +ExportConnectionsWizard.3=browserconnections.xml +ExportConnectionsWizard.ConnectionsExport=Connections Export +ExportConnectionsWizardPage.ChooseFile=Choose a file +ExportConnectionsWizardPage.DefineConnectionsExport=Define where connections should be exported. +ExportConnectionsWizardPage.ErrorFileAlreadyExists=Selected file already exists. Select option 'Overwrite existing file' if you want to overwrite the file. +ExportConnectionsWizardPage.ErrorFileDirectoryNotWritable=Selected file directory is not writeable. +ExportConnectionsWizardPage.ErrorFileNotAFile=Selected file is not a file. +ExportConnectionsWizardPage.ErrorFileNotWritable=Selected file is not writeable. +ExportConnectionsWizardPage.ExportConnections=Export Connections +ExportConnectionsWizardPage.OverwriteExistingFile=O&verwrite existing file +ExportConnectionsWizardPage.ToFile=To file: +ExportCsvToWizardPage.0=*.csv +ExportCsvToWizardPage.1=*.txt +ExportCsvToWizardPage.2=*.* +ExportCsvToWizardPage.CVS=CSV +ExportCsvToWizardPage.SeeTextFormats=See Text Formats for CSV file format preferences. +ExportCsvWizard.CSVExport=CSV Export +ExportDsmlToWizardPage.DSML=DSML +ExportDsmlToWizardPage.DSMLRequest=DSML Request +ExportDsmlToWizardPage.DSMLResponse=DSML Response +ExportDsmlToWizardPage.SaveAs=Save As +ExportDsmlToWizardPage.SearchSaveAsRequest=The search will be saved as a DSML request containing an add request for each entry. +ExportDsmlToWizardPage.SearchSaveAsResponse=The search will be saved as a response to a DSML search request. +ExportDsmlWizard.DSMLExport=DSML Export +ExportExcelToWizardPage.Excel=Excel +ExportExcelToWizardPage.SeeTextFormats=See Text Formats for Excel file format preferences. +ExportExcelToWizardPage.WarningExcel=Warning\: Excel export is memory intensive\! Maximum number of exportable entries is limited to 65000\! +ExportExcelWizard.ExcelExport=Excel Export +ExportLdifToWizardPage.LDIF=LDIF +ExportLdifToWizardPage.SeeTextFormats=See Text Formats for LDIF file format preferences. +ExportLdifWizard.LDIFExport=LDIF Export +ExportLogsToWizardPage.Log=Log +ExportModificationLogsWizard.CantExportModificationLogs=Can't export modification logs +ExportModificationLogsWizard.ExportModificationLogs=Export Modification Logs +ExportSearchLogsWizard.CantExportSearchLogs=Can't export search logs +ExportSearchLogsWizard.ExportSearchLogs=Export Search Logs +ImportConnectionsWizard.ConnectionsExport=Connections Export +ImportConnectionsWizardPage.ChooseFile=Choose a file +ImportConnectionsWizardPage.ErrorFileNotExists=Selected file does not exist. +ImportConnectionsWizardPage.ErrorFileNotFile=Selected file is not a file. +ImportConnectionsWizardPage.ErrorFileNotReadable=Selected file is not readable. +ImportConnectionsWizardPage.FromFile=From file: +ImportConnectionsWizardPage.ImportConnections=Import Connections +ImportConnectionsWizardPage.ImportConnectionsFromFilesystem=Import connections from local file system. +ImportDsmlMainWizardPage.DSMLFile=DSML File: +ImportDsmlMainWizardPage.ErrorDSMLFileAndResponseFileEqual=DSML file and response file must not be equal. +ImportDsmlMainWizardPage.ErrorSelecedResponseFileExist=Selected response file already exists. Select option 'Overwrite existing response file' if you want to overwrite the response file. +ImportDsmlMainWizardPage.ErrorSelectedDSMLNotExist=Selected DSML file doesn't exist. +ImportDsmlMainWizardPage.ErrorSelectedDSMLNotReadable=Selected DSML file is not readable. +ImportDsmlMainWizardPage.ErrorSelectedResponseFileDirectoryNotWritable=Selected response file directory is not writeable. +ImportDsmlMainWizardPage.ErrorSelectedResponseFileNotFile=Selected response file is not a file. +ImportDsmlMainWizardPage.ErrorSelectedResponseFileNotWritable=Selected response file is not writeable. +ImportDsmlMainWizardPage.ImportTo=Import into: +ImportDsmlMainWizardPage.OverwriteExistingResponseFile=Overwrite existing response file +ImportDsmlMainWizardPage.PleaseSelectConnection=Please select a Connection. +ImportDsmlMainWizardPage.Response=Response +ImportDsmlMainWizardPage.SaveResponse=Save response +ImportDsmlMainWizardPage.SelectConnectionAndDSMLFile=Please select a connection and the DSML file to import +ImportDsmlMainWizardPage.SelectDSMLFile=Select a DSML File +ImportDsmlMainWizardPage.SelectSaveFile=Select save file +ImportDsmlMainWizardPage.UseCustomResponse=Use custom response file +ImportDsmlMainWizardPage.UseDefaultResponse=Use default response file +ImportDsmlWizard.DSMLImport=DSML Import +ImportLdifMainWizardPage.ContinueOnError=Continue on error +ImportLdifMainWizardPage.EnableLogging=Enable logging +ImportLdifMainWizardPage.ErrorLDIFAndLogEqual=LDIF file and Logfile must not be equal. +ImportLdifMainWizardPage.ErrorSelectedLDIFNotExist=Selected LDIF file doesn't exist. +ImportLdifMainWizardPage.ErrorSelectedLDIFNotReadable=Selected LDIF file is not readable. +ImportLdifMainWizardPage.ErrorSelectedLogFileDirectoryNotWritable=Selected logfile directory is not writeable. +ImportLdifMainWizardPage.ErrorSelectedLogFileExist=Selected logfile already exists. Select option 'Overwrite existing logfile' if you want to overwrite the logfile. +ImportLdifMainWizardPage.ErrorSelectedLogFileNotFile=Selected logfile is no file. +ImportLdifMainWizardPage.ErrorSelectedLogFileNotWritable=Selected logfile is not writeable. +ImportLdifMainWizardPage.ImportTo=Import into: +ImportLdifMainWizardPage.LDIFFile=LDIF File: +ImportLdifMainWizardPage.LDIFImport=LDIF Import +ImportLdifMainWizardPage.Logging=Logging +ImportLdifMainWizardPage.Options=Options +ImportLdifMainWizardPage.OptionsAppliesForLdif=This options applies for LDIF content records and LDIF add records. If enabled and the entry to add already exists it will be updated with the attributes defined in the LDIF record. +ImportLdifMainWizardPage.OverwriteExistingLogFile=Overwrite existing logfile +ImportLdifMainWizardPage.PleaseSelectConnectionAndLDIF=Please select a connection and the LDIF to import +ImportLdifMainWizardPage.SelectLDIFFile=Select LDIF File +ImportLdifMainWizardPage.SelectLogFile=Select Logfile +ImportLdifMainWizardPage.UpdateExistingEntires=Update existing entries +ImportLdifMainWizardPage.UseCustomLogFile=Use custom logfile +ImportLdifMainWizardPage.UseDefaultLogFile=Use default logfile +NewBookmarkMainWizardPage.BookmarkDN=Bookmark DN: +NewBookmarkMainWizardPage.BookmarkName=Bookmark Name: +NewBookmarkMainWizardPage.EnterNewBookmark=Please enter the bookmark parameters. +NewBookmarkMainWizardPage.NewBookmark=New Bookmark +NewBookmarkWizard.InOrderToUse=In order to use the bookmark creation wizard please select an entry or connection. +NewBookmarkWizard.NewBookmark=New Bookmark +NewBookmarkWizard.NoEntrySelected=No entry selected Propchange: directory/studio/trunk/ldapbrowser-ui/src/main/resources/org/apache/directory/studio/ldapbrowser/ui/wizards/messages.properties ------------------------------------------------------------------------------ svn:eol-style = native