From 839d72d639ea661655e812e0450dc4c4e117cefe Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Thu, 11 Apr 2013 08:43:37 +0200 Subject: [PATCH] Fix typo "Unnasigned" vs "Unassigned" FEA: ItEr77S03Community --- .../web/limitingresources/ManualAllocationController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/limitingresources/ManualAllocationController.java b/libreplan-webapp/src/main/java/org/libreplan/web/limitingresources/ManualAllocationController.java index 9ed951d47..ba7eac2ea 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/limitingresources/ManualAllocationController.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/limitingresources/ManualAllocationController.java @@ -573,7 +573,7 @@ public class ManualAllocationController extends GenericForwardComposer { public String getCurrentQueue() { if (getBeingEditedElement() == null || getBeingEditedElement().getLimitingResourceQueue() == null) { - return _("Unnasigned"); + return _("Unassigned"); } return getBeingEditedElement().getLimitingResourceQueue().getResource() .getName(); @@ -582,7 +582,7 @@ public class ManualAllocationController extends GenericForwardComposer { public String getCurrentStart() { if (getBeingEditedElement() == null || getBeingEditedElement().getStartDate() == null) { - return _("Unnasigned"); + return _("Unassigned"); } return getBeingEditedElement().getStartDate().toString(); } @@ -590,7 +590,7 @@ public class ManualAllocationController extends GenericForwardComposer { public String getCurrentEnd() { if (getBeingEditedElement() == null || getBeingEditedElement().getEndDate() == null) { - return _("Unnasigned"); + return _("Unassigned"); } return getBeingEditedElement().getEndDate().toString(); }