Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Messages.java « core « connection « studio « directory « apache « org « java « main « src « connection.core « plugins - github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f6bd9cba463c3c58e5d6c735087fa8041a2db4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 *  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.connection.core;


import org.eclipse.osgi.util.NLS;


/**
 * This class contains most of the Strings used by the Plugin
 *
 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
 */
public class Messages extends NLS
{
    private static final String BUNDLE_NAME = "org.apache.directory.studio.connection.core.messages"; //$NON-NLS-1$


    /**
     * Creates a new instance of Messages.
     */
    private Messages()
    {
    }

    static
    {
        // initialize resource bundle
        NLS.initializeMessages( BUNDLE_NAME, Messages.class );
    }

    public static String copy_n_of_s;

    public static String error__execute_connection_initializer;
    public static String error__invalid_rdn;
    public static String error__saving_connections;
    public static String error__loading_connections;
    public static String error__unable_to_create_connection_listener;
    public static String error__unable_to_create_ldap_logger;
    public static String error__unable_to_get_plugin_properties;
    public static String error__connection_is_readonly;
    public static String error__untrusted_certificate;

    public static String model__no_auth_handler;
    public static String model__no_credentials;

    public static String jobs__check_bind_name;
    public static String jobs__check_bind_task;
    public static String jobs__check_bind_error;
    public static String jobs__check_network_name;
    public static String jobs__check_network_task;
    public static String jobs__check_network_error;

    public static String jobs__open_connections_name_1;
    public static String jobs__open_connections_name_n;
    public static String jobs__open_connections_task;
    public static String jobs__open_connections_error_1;
    public static String jobs__open_connections_error_n;

    public static String jobs__close_connections_name_1;
    public static String jobs__close_connections_name_n;
    public static String jobs__close_connections_task;
    public static String jobs__close_connections_error_1;
    public static String jobs__close_connections_error_n;

    public static String StudioTrustManager_CantCreateTrustManager;

    public static String StudioKeyStoreManager_CantAddCertificateToTrustStore;
    public static String StudioKeyStoreManager_CantRemoveCertificateFromTrustStore;
    public static String StudioKeyStoreManager_CantReadTrustStore;

    public static String DirectoryApiConnectionWrapper_NoConnection;
    public static String DirectoryApiConnectionWrapper_UnableToConnect;
    public static String DirectoryApiConnectionWrapper_UnsecuredConnection;

}