Fix typo "Unnasigned" vs "Unassigned"
FEA: ItEr77S03Community
This commit is contained in:
parent
28e56f8ae1
commit
839d72d639
1 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue