1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 312467: Strings were not translated properly.

This commit is contained in:
Marc Khouzam 2010-05-14 18:42:11 +00:00
parent 9061e0e6a7
commit 8fcc98e15c
3 changed files with 46 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others. * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -229,7 +229,7 @@ class InstructionPointerManager {
if (frame.getLevel() == 0) { if (frame.getLevel() == 0) {
id = ID_CURRENT_IP; id = ID_CURRENT_IP;
if (text == null) { if (text == null) {
text = "Debug Current Instruction Pointer"; //$NON-NLS-1$ text = Messages.IPAnnotation_primary;
} }
if (image == null) { if (image == null) {
image = DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_INSTRUCTION_POINTER_TOP); image = DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_INSTRUCTION_POINTER_TOP);
@ -237,7 +237,7 @@ class InstructionPointerManager {
} else { } else {
id = ID_SECONDARY_IP; id = ID_SECONDARY_IP;
if (text == null) { if (text == null) {
text = "Debug Call Stack"; //$NON-NLS-1$ text = Messages.IPAnnotation_secondary;
} }
if (image == null) { if (image == null) {
image = DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_INSTRUCTION_POINTER); image = DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_INSTRUCTION_POINTER);

View file

@ -0,0 +1,30 @@
/*******************************************************************************
* Copyright (c) 2010 Ericsson 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:
* Ericsson - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.dsf.debug.ui.sourcelookup;
import org.eclipse.osgi.util.NLS;
/**
* @since 2.1
*/
public class Messages extends NLS {
public static String IPAnnotation_primary;
public static String IPAnnotation_secondary;
static {
// initialize resource bundle
NLS.initializeMessages(Messages.class.getName(), Messages.class);
}
private Messages() {
}
}

View file

@ -0,0 +1,13 @@
###############################################################################
# Copyright (c) 2010 Ericsson 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:
# Ericsson - initial API and implementation
###############################################################################
IPAnnotation_primary=Debug Current Instruction Pointer
IPAnnotation_secondary=Debug Call Stack