Skip to main content
summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorVivian Kong2008-05-27 14:30:06 +0000
committerVivian Kong2008-05-27 14:30:06 +0000
commitc4d5a8d3346905806515f128cc3449a824e1521c (patch)
treea12d9f44ab2295cf913c622e6648ad1afc73a098 /doc
parent03273b05c1fa6ff51db3f8590c3f6ffbe62d6197 (diff)
downloadorg.eclipse.cdt-c4d5a8d3346905806515f128cc3449a824e1521c.tar.gz
org.eclipse.cdt-c4d5a8d3346905806515f128cc3449a824e1521c.tar.xz
org.eclipse.cdt-c4d5a8d3346905806515f128cc3449a824e1521c.zip
externalize cheat sheet strings (bug 234147)
Diffstat (limited to 'doc')
-rw-r--r--doc/org.eclipse.cdt.doc.user/plugin.properties8
-rw-r--r--doc/org.eclipse.cdt.doc.user/plugin.xml10
2 files changed, 12 insertions, 6 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/plugin.properties b/doc/org.eclipse.cdt.doc.user/plugin.properties
index 0bc969f1739..04ed63d5545 100644
--- a/doc/org.eclipse.cdt.doc.user/plugin.properties
+++ b/doc/org.eclipse.cdt.doc.user/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2008 IBM Corporation 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
@@ -10,3 +10,9 @@
###############################################################################
pluginName=C/C++ Development User Guide
providerName=Eclipse.org
+
+CheatSheet.name=C/C++ Development
+CreateProjectTutorial.name=Creating C/C++ Projects
+CreateProjectTutorial.description=Use this tutorial to learn how to create a simple C/C++ project.
+ImportProjectTutorial.name=Importing C/C++ Projects
+ImportProjectTutorial.description=Use this tutorial to learn how to successfully import a CDT project.
diff --git a/doc/org.eclipse.cdt.doc.user/plugin.xml b/doc/org.eclipse.cdt.doc.user/plugin.xml
index ba7d9f8fe87..5ce85db377d 100644
--- a/doc/org.eclipse.cdt.doc.user/plugin.xml
+++ b/doc/org.eclipse.cdt.doc.user/plugin.xml
@@ -99,16 +99,16 @@
point="org.eclipse.ui.cheatsheets.cheatSheetContent">
<category
id="org.eclipse.cdt-doc.category.tutorials"
- name="C/C++ Development">
+ name="%CheatSheet.name">
</category>
<cheatsheet
category="org.eclipse.cdt-doc.category.tutorials"
composite="false"
contentFile="$nl$/cheatsheets/cs_cdt_basic.xml"
id="org.eclipse.cdt-doc.cheatsheet.cdt_basic"
- name="Creating C/C++ Projects">
+ name="%CreateProjectTutorial.name">
<description>
- Use this tutorial to learn how to create a simple C/C++ project.
+ %CreateProjectTutorial.description
</description>
</cheatsheet>
<cheatsheet
@@ -116,9 +116,9 @@
composite="false"
contentFile="$nl$/cheatsheets/cs_cdt_import_project.xml"
id="org.eclipse.cdt-doc.cheatsheet.cdt_import_project"
- name="Importing C/C++ Projects">
+ name="%ImportProjectTutorial.name">
<description>
- Use this tutorial to learn how to successfully import a CDT project.
+ %ImportProjectTutorial.description
</description>
</cheatsheet>
</extension>

Back to the top