Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2008-06-22 23:26:05 +0000
committerddunne2008-06-22 23:26:05 +0000
commit811fc9032b8a19d55f32ce8f52cbfe7f9e20ac75 (patch)
treef863cc5e80284230914edd11e9e7bab9f85faf07
parent20ae00dac1590b52d297f81063692bcc88b6e62b (diff)
downloadorg.eclipse.osee-811fc9032b8a19d55f32ce8f52cbfe7f9e20ac75.tar.gz
org.eclipse.osee-811fc9032b8a19d55f32ce8f52cbfe7f9e20ac75.tar.xz
org.eclipse.osee-811fc9032b8a19d55f32ce8f52cbfe7f9e20ac75.zip
-rw-r--r--org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsNotifyUsers.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsNotifyUsers.java b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsNotifyUsers.java
index c127c71d75a..4a2b602b6ff 100644
--- a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsNotifyUsers.java
+++ b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsNotifyUsers.java
@@ -63,7 +63,7 @@ public class AtsNotifyUsers {
assignees,
sma.getHumanReadableId(),
NotifyType.Assigned.name(),
- "New Assignment for \"" + sma.getArtifactTypeName() + "\" titled \"" + sma.getDescriptiveName() + "\""));
+ "You have been set as an assignee for \"" + sma.getArtifactTypeName() + "\" titled \"" + sma.getDescriptiveName() + "\""));
}
}
if (types.contains(NotifyType.Subscribed)) {
@@ -73,7 +73,7 @@ public class AtsNotifyUsers {
subscribed,
sma.getHumanReadableId(),
NotifyType.Subscribed.name(),
- sma.getArtifactTypeName() + " - \"" + sma.getDescriptiveName() + "\" Transitioned to \"" + sma.getSmaMgr().getStateMgr().getCurrentStateName() + "\""));
+ sma.getArtifactTypeName() + " titled \"" + sma.getDescriptiveName() + "\" transitioned to \"" + sma.getSmaMgr().getStateMgr().getCurrentStateName() + "\" and you subscribed for notification."));
}
}
if (types.contains(NotifyType.Cancelled) || types.contains(NotifyType.Completed)) {
@@ -94,7 +94,7 @@ public class AtsNotifyUsers {
sma.getHumanReadableId(),
NotifyType.Cancelled.name(),
String.format(
- sma.getArtifactTypeName() + " was cancelled from \"%s\" state on \"%s\".<br>Reason: \"%s\"<br><br>",
+ sma.getArtifactTypeName() + " titled \"" + sma.getDescriptiveName() + "\" was cancelled from the \"%s\" state on \"%s\".<br>Reason: \"%s\"<br><br>",
cancelledItem.getState(), cancelledItem.getDate(XDate.MMDDYYHHMM), cancelledItem.getMsg())));
}
}

Back to the top