/*******************************************************************************
* Copyright (c) 2015 Bruno Medeiros and other Contributors.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Bruno Medeiros - initial API and implementation
*******************************************************************************/
package melnorme.lang.ide.ui.editor;
public interface LangEditorMessages {
public static final String GotoMatchingBracket_error_title =
"Go To Matching Bracket";
public static final String GotoMatchingBracket_error_noMatchingBracket =
"No matching bracket found";
public static final String GotoMatchingBracket_error_bracketOutsideSelectedElement =
"Matching bracket is outside the selected element";
public static final String ToggleComment_error_title =
"Toggle Comment";
public static final String ToggleComment_error_message =
"Operation not enabled in target.";
public static final String QuickOutline_title =
"Quick Outline";
public static final String MSG__SOURCE_COMPARE =
" Source Compare";
}