You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2010/09/08 15:31:48 UTC

svn commit: r995051 - in /directory/studio/trunk/plugins: ldapservers.apacheds.v153/ ldapservers.apacheds.v154/ ldapservers.apacheds.v155/ ldapservers.apacheds.v156/ ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apache...

Author: pamarcelot
Date: Wed Sep  8 13:31:48 2010
New Revision: 995051

URL: http://svn.apache.org/viewvc?rev=995051&view=rev
Log:
Externalized string in properties files.

Added:
    directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_de.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_fr.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_de.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_fr.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_de.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_fr.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_de.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_fr.properties
Modified:
    directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.xml
    directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.xml
    directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.xml
    directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.properties
    directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.xml
    directory/studio/trunk/plugins/ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apacheds/v156/ApacheDS156LdapServerAdapter.java

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.properties?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.properties (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.properties Wed Sep  8 13:31:48 2010
@@ -15,4 +15,12 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v153
\ No newline at end of file
+Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v153
+
+LdapServerAdapter_id=org.apache.directory.server.1.5.3
+LdapServerAdapter_name=Apache DS
+LdapServerAdapter_vendor=Apache Software Foundation
+LdapServerAdapter_version=1.5.3
+
+ActionCreateConnection_id=org.apache.directory.studio.ldapservers.apacheds.v153.CreateConnectionAction
+ActionCreateConnection_label=Create a Connection
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.xml?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.xml (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin.xml Wed Sep  8 13:31:48 2010
@@ -5,10 +5,10 @@
          point="org.apache.directory.studio.ldapservers.ldapServerAdapters">
       <ldapServerAdapter
             class="org.apache.directory.studio.ldapservers.apacheds.v153.ApacheDS153LdapServerAdapter"
-            id="org.apache.directory.server.1.5.3"
-            name="Apache DS"
-            vendor="Apache Software Foundation"
-            version="1.5.3">
+            id="%LdapServerAdapter_id"
+            name="%LdapServerAdapter_name"
+            vendor="%LdapServerAdapter_vendor"
+            version="%LdapServerAdapter_version">
       </ldapServerAdapter>
    </extension>
    
@@ -20,14 +20,14 @@
          <action
                class="org.apache.directory.studio.ldapservers.apacheds.v153.CreateConnectionAction"
                enablesFor="1"
-               id="org.apache.directory.studio.ldapservers.apacheds.v153.CreateConnectionAction"
-               label="Create a Connection"
+               id="%ActionCreateConnection_id"
+               label="%ActionCreateConnection_label"
                icon="resources/icons/connection_new.gif">
          </action>
          <visibility>
                <objectState
                      name="extensionId"
-                     value="org.apache.directory.server.1.5.3">
+                     value="%LdapServerAdapter_id">
                </objectState>
          </visibility>
       </objectContribution>

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_de.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_de.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_de.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_de.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Eine Verbindung erstellen
\ No newline at end of file

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_fr.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_fr.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_fr.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v153/plugin_fr.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Créer une connexion
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.properties?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.properties (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.properties Wed Sep  8 13:31:48 2010
@@ -15,4 +15,12 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v154
\ No newline at end of file
+Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v154
+
+LdapServerAdapter_id=org.apache.directory.server.1.5.4
+LdapServerAdapter_name=Apache DS
+LdapServerAdapter_vendor=Apache Software Foundation
+LdapServerAdapter_version=1.5.4
+
+ActionCreateConnection_id=org.apache.directory.studio.ldapservers.apacheds.v154.CreateConnectionAction
+ActionCreateConnection_label=Create a Connection
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.xml?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.xml (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin.xml Wed Sep  8 13:31:48 2010
@@ -5,10 +5,10 @@
          point="org.apache.directory.studio.ldapservers.ldapServerAdapters">
       <ldapServerAdapter
             class="org.apache.directory.studio.ldapservers.apacheds.v154.ApacheDS154LdapServerAdapter"
-            id="org.apache.directory.server.1.5.4"
-            name="Apache DS"
-            vendor="Apache Software Foundation"
-            version="1.5.4">
+            id="%LdapServerAdapter_id"
+            name="%LdapServerAdapter_name"
+            vendor="%LdapServerAdapter_vendor"
+            version="%LdapServerAdapter_version">
       </ldapServerAdapter>
    </extension>
    
@@ -20,14 +20,14 @@
          <action
                class="org.apache.directory.studio.ldapservers.apacheds.v154.CreateConnectionAction"
                enablesFor="1"
-               id="org.apache.directory.studio.ldapservers.apacheds.v154.CreateConnectionAction"
-               label="Create a Connection"
+               id="%ActionCreateConnection_id"
+               label="%ActionCreateConnection_label"
                icon="resources/icons/connection_new.gif">
          </action>
          <visibility>
                <objectState
                      name="extensionId"
-                     value="org.apache.directory.server.1.5.4">
+                     value="%LdapServerAdapter_id">
                </objectState>
          </visibility>
       </objectContribution>

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_de.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_de.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_de.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_de.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Eine Verbindung erstellen
\ No newline at end of file

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_fr.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_fr.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_fr.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v154/plugin_fr.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Créer une connexion
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.properties?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.properties (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.properties Wed Sep  8 13:31:48 2010
@@ -15,4 +15,12 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v155
\ No newline at end of file
+Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v155
+
+LdapServerAdapter_id=org.apache.directory.server.1.5.5
+LdapServerAdapter_name=Apache DS
+LdapServerAdapter_vendor=Apache Software Foundation
+LdapServerAdapter_version=1.5.5
+
+ActionCreateConnection_id=org.apache.directory.studio.ldapservers.apacheds.v155.CreateConnectionAction
+ActionCreateConnection_label=Create a Connection
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.xml?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.xml (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin.xml Wed Sep  8 13:31:48 2010
@@ -5,10 +5,10 @@
          point="org.apache.directory.studio.ldapservers.ldapServerAdapters">
       <ldapServerAdapter
             class="org.apache.directory.studio.ldapservers.apacheds.v155.ApacheDS155LdapServerAdapter"
-            id="org.apache.directory.server.1.5.5"
-            name="Apache DS"
-            vendor="Apache Software Foundation"
-            version="1.5.5">
+            id="%LdapServerAdapter_id"
+            name="%LdapServerAdapter_name"
+            vendor="%LdapServerAdapter_vendor"
+            version="%LdapServerAdapter_version">
       </ldapServerAdapter>
    </extension>
    
@@ -20,14 +20,14 @@
          <action
                class="org.apache.directory.studio.ldapservers.apacheds.v155.CreateConnectionAction"
                enablesFor="1"
-               id="org.apache.directory.studio.ldapservers.apacheds.v155.CreateConnectionAction"
-               label="Create a Connection"
+               id="%ActionCreateConnection_id"
+               label="%ActionCreateConnection_label"
                icon="resources/icons/connection_new.gif">
          </action>
          <visibility>
                <objectState
                      name="extensionId"
-                     value="org.apache.directory.server.1.5.5">
+                     value="%LdapServerAdapter_id">
                </objectState>
          </visibility>
       </objectContribution>

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_de.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_de.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_de.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_de.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Eine Verbindung erstellen
\ No newline at end of file

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_fr.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_fr.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_fr.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v155/plugin_fr.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Créer une connexion
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.properties?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.properties (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.properties Wed Sep  8 13:31:48 2010
@@ -15,4 +15,12 @@
 # specific language governing permissions and limitations
 # under the License.
 
-Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v156
\ No newline at end of file
+Plugin_id=org.apache.directory.studio.ldapservers.apacheds.v156
+
+LdapServerAdapter_id=org.apache.directory.server.1.5.6
+LdapServerAdapter_name=Apache DS
+LdapServerAdapter_vendor=Apache Software Foundation
+LdapServerAdapter_version=1.5.6
+
+ActionCreateConnection_id=org.apache.directory.studio.ldapservers.apacheds.v156.CreateConnectionAction
+ActionCreateConnection_label=Create a Connection
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.xml?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.xml (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin.xml Wed Sep  8 13:31:48 2010
@@ -5,10 +5,10 @@
          point="org.apache.directory.studio.ldapservers.ldapServerAdapters">
       <ldapServerAdapter
             class="org.apache.directory.studio.ldapservers.apacheds.v156.ApacheDS156LdapServerAdapter"
-            id="org.apache.directory.server.1.5.6"
-            name="Apache DS"
-            vendor="Apache Software Foundation"
-            version="1.5.6">
+            id="%LdapServerAdapter_id"
+            name="%LdapServerAdapter_name"
+            vendor="%LdapServerAdapter_vendor"
+            version="%LdapServerAdapter_version">
       </ldapServerAdapter>
    </extension>
    
@@ -20,14 +20,14 @@
          <action
                class="org.apache.directory.studio.ldapservers.apacheds.v156.CreateConnectionAction"
                enablesFor="1"
-               id="org.apache.directory.studio.ldapservers.apacheds.v156.CreateConnectionAction"
-               label="Create a Connection"
+               id="%ActionCreateConnection_id"
+               label="%ActionCreateConnection_label"
                icon="resources/icons/connection_new.gif">
          </action>
          <visibility>
                <objectState
                      name="extensionId"
-                     value="org.apache.directory.server.1.5.6">
+                     value="%LdapServerAdapter_id">
                </objectState>
          </visibility>
       </objectContribution>

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_de.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_de.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_de.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_de.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Eine Verbindung erstellen
\ No newline at end of file

Added: directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_fr.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_fr.properties?rev=995051&view=auto
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_fr.properties (added)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v156/plugin_fr.properties Wed Sep  8 13:31:48 2010
@@ -0,0 +1,18 @@
+# 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.
+
+ActionCreateConnection_label=Créer une connexion
\ No newline at end of file

Modified: directory/studio/trunk/plugins/ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apacheds/v156/ApacheDS156LdapServerAdapter.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apacheds/v156/ApacheDS156LdapServerAdapter.java?rev=995051&r1=995050&r2=995051&view=diff
==============================================================================
--- directory/studio/trunk/plugins/ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apacheds/v156/ApacheDS156LdapServerAdapter.java (original)
+++ directory/studio/trunk/plugins/ldapservers.apacheds.v156/src/main/java/org/apache/directory/studio/ldapservers/apacheds/v156/ApacheDS156LdapServerAdapter.java Wed Sep  8 13:31:48 2010
@@ -28,7 +28,6 @@ import java.io.IOException;
 import java.io.InputStream;
 
 import org.apache.directory.studio.apacheds.configuration.editor.ServerConfigurationEditor;
-import org.apache.directory.studio.apacheds.configuration.model.ServerConfiguration;
 import org.apache.directory.studio.apacheds.configuration.model.ServerXmlIOException;
 import org.apache.directory.studio.apacheds.configuration.model.v156.ServerConfigurationV156;
 import org.apache.directory.studio.apacheds.configuration.model.v156.ServerXmlIOV156;
@@ -223,7 +222,7 @@ public class ApacheDS156LdapServerAdapte
             .append( "server.xml" ).toFile() );
 
         ServerXmlIOV156 serverXmlIOV156 = new ServerXmlIOV156();
-        return (ServerConfigurationV156) serverXmlIOV156.parse( fis );
+        return ( ServerConfigurationV156 ) serverXmlIOV156.parse( fis );
     }