blob: 7dd15d031a56237f22bdf8bd05a55f7fafabe928 [file] [log] [blame]
/*
* 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.uima.taeconfigurator;
/**
*/
public interface StandardStrings {
public static final String S_ADD = "Add...";
public static final String S_EDIT = "Edit...";
public static final String S_EDIT_TIP = "Click here to edit the selected item. You can also double-click the item to edit it.";
public static final String S_REMOVE = "Remove";
public static final String S_REMOVE_TIP = "Click here to remove the selected item. You can also use the delete key.";
public static final String S_UP = "Up";
public static final String S_UP_TIP = "Click here to move the selected item up by one.";
public static final String S_DOWN = "Down";
public static final String S_DOWN_TIP = "Click here to move the selected item down by one.";
public static final String S_DESCRIPTION = "Description:";
public static final String S_ = "";
public static final String S_EXPORT = "Export...";
public static final String S_EXPORT_TIP = "Export to an importable part, and substitute an Import for that part here";
}