mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
created
This commit is contained in:
parent
a6ac36ad2e
commit
c63295ed64
2 changed files with 57 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2007 Wind River Systems, Inc. and others.
|
||||||
|
* 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:
|
||||||
|
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
package org.eclipse.dd.debug.memory.renderings.actions;
|
||||||
|
|
||||||
|
import java.util.MissingResourceException;
|
||||||
|
import java.util.ResourceBundle;
|
||||||
|
|
||||||
|
public class Messages {
|
||||||
|
private static final String BUNDLE_NAME = "org.eclipse.dd.debug.memory.renderings.actions.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 + '!';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
FindReplaceDialog.Title=Find / Replace Memory
|
||||||
|
FindReplaceDialog.ButtonFind=Find
|
||||||
|
FindReplaceDialog.ButtonReplaceFind=Replace/Find
|
||||||
|
FindReplaceDialog.ButtonReplace=Replace
|
||||||
|
FindReplaceDialog.ButtonReplaceAll=Replace All
|
||||||
|
FindReplaceDialog.Close=Close
|
||||||
|
FindReplaceDialog.LabelFind=Find:
|
||||||
|
FindReplaceDialog.LabelReplaceWith=Replace With:
|
||||||
|
FindReplaceDialog.LabelDirection=Direction
|
||||||
|
FindReplaceDialog.ButtonForward=Forward
|
||||||
|
FindReplaceDialog.ButtonBackward=Backward
|
||||||
|
FindReplaceDialog.LabelRange=Range
|
||||||
|
FindReplaceDialog.LabelStartAddress=Start address:
|
||||||
|
FindReplaceDialog.LabelEndAddress=End address:
|
||||||
|
FindReplaceDialog.LabelFormat=Format
|
||||||
|
FindReplaceDialog.ButtonASCII=ASCII
|
||||||
|
FindReplaceDialog.ButtonHexadecimal=Hexadecimal
|
||||||
|
FindReplaceDialog.ButtonOctal=Octal
|
||||||
|
FindReplaceDialog.ButtonBinary=Binary
|
||||||
|
FindReplaceDialog.ButtonDecimal=Decimal
|
||||||
|
FindReplaceDialog.LabelOptions=Options
|
||||||
|
FindReplaceDialog.ButtonWrapSearch=Wrap Search
|
||||||
|
FindReplaceDialog.ButtonCaseInsensitive=Case Insensitive
|
||||||
|
FindReplaceDialog.SearchingMemoryFor=Searching memory for
|
Loading…
Add table
Reference in a new issue