Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-01-22 22:47:12 +0000
committerspingel2011-01-22 22:47:12 +0000
commit89b46745c8fa7eab189036c9f521a73041d5a6fa (patch)
tree69504f3248de8e34574c1e08a4c14f3b4c68d832 /org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn
parent73ba3c02799ed8f8a59aa0a240db28512fa90588 (diff)
downloadorg.eclipse.mylyn.tasks-89b46745c8fa7eab189036c9f521a73041d5a6fa.tar.gz
org.eclipse.mylyn.tasks-89b46745c8fa7eab189036c9f521a73041d5a6fa.tar.xz
org.eclipse.mylyn.tasks-89b46745c8fa7eab189036c9f521a73041d5a6fa.zip
ASSIGNED - bug 199283: [patch] [api] make attachments actionable from associated comment in task editor
https://bugs.eclipse.org/bugs/show_bug.cgi?id=199283
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/TaskAttachmentTableEditorHyperlink.java3
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/messages.properties2
2 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/TaskAttachmentTableEditorHyperlink.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/TaskAttachmentTableEditorHyperlink.java
index f1cee49d4..385b49886 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/TaskAttachmentTableEditorHyperlink.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/TaskAttachmentTableEditorHyperlink.java
@@ -50,8 +50,7 @@ public final class TaskAttachmentTableEditorHyperlink implements IHyperlink {
}
public String getHyperlinkText() {
- return MessageFormat.format(Messages.TaskAttachmentTableEditorHyperlink_Show_Attachment_X_in_Y, attachmentId,
- repository.getRepositoryLabel());
+ return MessageFormat.format(Messages.TaskAttachmentTableEditorHyperlink_Show_Attachment_X_in_Y, attachmentId);
}
public String getTypeLabel() {
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/messages.properties b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/messages.properties
index 982593a44..20d91b51b 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/messages.properties
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/messages.properties
@@ -9,4 +9,4 @@
# Tasktop Technologies - initial API and implementation
###############################################################################
TaskAttachmentHyperlink_Open_Attachment_X_in_Y=Open Attachment {0} in {1}
-TaskAttachmentTableEditorHyperlink_Show_Attachment_X_in_Y=Show Attachment {0} in {1}
+TaskAttachmentTableEditorHyperlink_Show_Attachment_X_in_Y=Show Attachment {0} in Task Editor

Back to the top