Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2013-05-21 06:13:24 +0000
committerGerrit Code Review @ Eclipse.org2013-05-22 22:49:45 +0000
commitfbd137cafe5b0609f750d354af8f4d6514df6fbf (patch)
tree359ddfaef100fbff04ca20726c43194da8567045 /org.eclipse.mylyn.tasks.ui
parent6d3892e1d0e001670893ec90e939f9175d4b3ca3 (diff)
downloadorg.eclipse.mylyn.tasks-fbd137cafe5b0609f750d354af8f4d6514df6fbf.tar.gz
org.eclipse.mylyn.tasks-fbd137cafe5b0609f750d354af8f4d6514df6fbf.tar.xz
org.eclipse.mylyn.tasks-fbd137cafe5b0609f750d354af8f4d6514df6fbf.zip
398263: several texts are not externalized in preference
Bug: 398263 Change-Id: I2d1090dd316c0faac0633a940e6e15a818f64c08 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=398263
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/Messages.java4
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/TasksUiPreferencePage.java4
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/messages.properties3
3 files changed, 7 insertions, 4 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/Messages.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/Messages.java
index f58290380..1a01b2dc9 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/Messages.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/Messages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2010 Tasktop Technologies and others.
+ * Copyright (c) 2004, 2013 Tasktop Technologies 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
@@ -57,6 +57,8 @@ public class Messages extends NLS {
public static String TasksUiPreferencePage_minutes_of_inactivity;
+ public static String TasksUiPreferencePage_Notification_for_new_connectors_available_Label;
+
public static String TasksUiPreferencePage_A_new_empty_Task_List_will_be_created_in_the_chosen_directory_if_one_does_not_already_exists;
public static String TasksUiPreferencePage_highlight_current_line;
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/TasksUiPreferencePage.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/TasksUiPreferencePage.java
index 7a2706b6b..09b4fef3d 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/TasksUiPreferencePage.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/TasksUiPreferencePage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2010 Tasktop Technologies and others.
+ * Copyright (c) 2004, 2013 Tasktop Technologies 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
@@ -522,7 +522,7 @@ public class TasksUiPreferencePage extends PreferencePage implements IWorkbenchP
ITasksUiPreferenceConstants.TASK_LIST_TOOL_TIPS_ENABLED));
taskListServiceMessageEnabledButton = new Button(group, SWT.CHECK);
- taskListServiceMessageEnabledButton.setText("Display notification when new connectors are available"); //$NON-NLS-1$
+ taskListServiceMessageEnabledButton.setText(Messages.TasksUiPreferencePage_Notification_for_new_connectors_available_Label);
taskListServiceMessageEnabledButton.setSelection(getPreferenceStore().getBoolean(
ITasksUiPreferenceConstants.SERVICE_MESSAGES_ENABLED));
}
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/messages.properties b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/messages.properties
index 9e277c9d6..8c2614b79 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/messages.properties
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/preferences/messages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 Tasktop Technologies and others.
+# Copyright (c) 2010, 2013 Tasktop Technologies 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
@@ -24,6 +24,7 @@ TasksUiPreferencePage_Folder_Selection=Folder Selection
TasksUiPreferencePage_If_disabled=If disabled, time accumulates while a task is active with no timeout due to inactivity.
TasksUiPreferencePage_minutes=minutes
TasksUiPreferencePage_minutes_of_inactivity=minutes of inactivity.
+TasksUiPreferencePage_Notification_for_new_connectors_available_Label=Display notification when new connectors are available
TasksUiPreferencePage_A_new_empty_Task_List_will_be_created_in_the_chosen_directory_if_one_does_not_already_exists=A new empty Task List will be created in the chosen directory if one does not already exists. Your previous directory and its contents will not be deleted.\n\nProceed?
TasksUiPreferencePage_highlight_current_line=Highlight current line
TasksUiPreferencePage_Rich_Editor__Recommended_=Rich Editor (Recommended)

Back to the top