Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java')
-rw-r--r--applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java16
1 files changed, 4 insertions, 12 deletions
diff --git a/applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java b/applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java
index dcae477f0..68030a803 100644
--- a/applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java
+++ b/applications/kosmos/bundles/org.eclipse.ecf.presence.bot.kosmos/src/org/eclipse/ecf/internal/presence/bot/kosmos/CustomMessages.java
@@ -24,28 +24,20 @@ public class CustomMessages {
static final String Learn_Remove = "Learn_Remove"; //$NON-NLS-1$
static final String Bug = "Bug"; //$NON-NLS-1$
- static final String Bug_Reply = "Bug_Reply"; //$NON-NLS-1$
-
+ static final String Bug_Not_Found = "Bug_Not_Found"; //$NON-NLS-1$
static final String BugContent = "BugContent"; //$NON-NLS-1$
- static final String BugContent_Reply = "BugContent_Reply"; //$NON-NLS-1$
static final String Javadoc_NotFound = "Javadoc_NotFound"; //$NON-NLS-1$
static final String Javadoc_ResultsUnknown = "Javadoc_ResultsUnknown"; //$NON-NLS-1$
static final String NewsgroupSearch = "NewsgroupSearch"; //$NON-NLS-1$
- static final String NewsgroupSearch_Reply = "NewsgroupSearch_Reply"; //$NON-NLS-1$
+ static final String NewsgroupSearch_Invalid = "NewsgroupSearch_Invalid"; //$NON-NLS-1$
+ static final String NewsgroupSearch_InvalidGroup = "NewsgroupSearch_InvalidGroup"; //$NON-NLS-1$
static final String Google = "Google"; //$NON-NLS-1$
- static final String Google_Reply = "Google_Reply"; //$NON-NLS-1$
-
static final String Wiki = "Wiki"; //$NON-NLS-1$
- static final String Wiki_Reply = "Wiki_Reply"; //$NON-NLS-1$
-
static final String EclipseHelp = "EclipseHelp"; //$NON-NLS-1$
- static final String EclipseHelp_Reply = "EclipseHelp_Reply"; //$NON-NLS-1$
-
static final String MessageList = "MessageList"; //$NON-NLS-1$
- static final String MessageList_Reply = "MessageList_Reply"; //$NON-NLS-1$
private static final String RESOURCE_BUNDLE = "org.eclipse.ecf.internal.presence.bot.kosmos.custom"; //$NON-NLS-1$
@@ -63,7 +55,7 @@ public class CustomMessages {
try {
return BUNDLE.getString(key);
} catch (MissingResourceException e) {
- return '!' + key + '!';
+ return "! " + key + " !";
}
}

Back to the top