Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-04-13 15:32:05 +0000
committerChris Aniszczyk2011-04-14 01:42:32 +0000
commitf619a18d399afb91869b74390d69f0db586e24d0 (patch)
treed6829851e649e031599399fee140cb898ea8c2ce
parent2e06dd3d97ea78bfc8e9c3047bd9b3b5d350c898 (diff)
downloadegit-github-f619a18d399afb91869b74390d69f0db586e24d0.tar.gz
egit-github-f619a18d399afb91869b74390d69f0db586e24d0.tar.xz
egit-github-f619a18d399afb91869b74390d69f0db586e24d0.zip
Add externalized strings for issue attribute editor
Change-Id: Ia2cb0a885a0ff99f1975ab49b674f046b97bba10 Signed-off-by: Kevin Sawicki <kevin@github.com> Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
-rw-r--r--org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/Messages.java18
-rw-r--r--org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/messages.properties4
2 files changed, 22 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/Messages.java b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/Messages.java
index c34c79e6..f4e213da 100644
--- a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/Messages.java
+++ b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/Messages.java
@@ -61,6 +61,24 @@ public class Messages extends NLS {
/** */
public static String GitHubRepositoryQueryPage_TitleLabel;
+ /** */
+ public static String IssueLabelAttributeEditor_ActionNewLabel;
+
+ /** */
+ public static String IssueLabelAttributeEditor_ActionRemoveLabel;
+
+ /** */
+ public static String IssueLabelAttributeEditor_DescriptionNewLabel;
+
+ /** */
+ public static String IssueLabelAttributeEditor_MessageEnterName;
+
+ /** */
+ public static String IssueLabelAttributeEditor_TitleNewLabel;
+
+ /** */
+ public static String IssueLabelAttributeEditor_TooltipAddLabel;
+
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
diff --git a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/messages.properties b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/messages.properties
index 2459e374..e7b40854 100644
--- a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/messages.properties
+++ b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/github/ui/internal/messages.properties
@@ -12,3 +12,7 @@ GitHubRepositoryQueryPage_StatusOpen=Open
GitHubRepositoryQueryPage_TaskLoadingLabels=Loading labels
GitHubRepositoryQueryPage_TaskLoadingMilestones=Loading milestones
GitHubRepositoryQueryPage_TitleLabel=Title:
+IssueLabelAttributeEditor_ActionNewLabel=New Label...
+IssueLabelAttributeEditor_DescriptionNewLabel=Label Name:
+IssueLabelAttributeEditor_MessageEnterName=Enter label name
+IssueLabelAttributeEditor_TitleNewLabel=New Label

Back to the top