i18n: Replace resource usage for resources load

FEA: ItEr76S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-07-05 08:06:33 +02:00
parent 896096272c
commit 56320ed4c0
2 changed files with 3 additions and 3 deletions

View file

@ -275,7 +275,7 @@ public class CustomMenuController extends Div implements IMenuItemsRegister {
}, "01-introducion.html#id2"));
}
if (SecurityUtils.isSuperuserOrUserInRoles(UserRole.ROLE_PLANNING)) {
planningItems.add(subItem(_("Resource Load"), new ICapture() {
planningItems.add(subItem(_("Resources Load"), new ICapture() {
@Override
public void capture() {
globalView.goToCompanyLoad();

View file

@ -135,7 +135,7 @@ public class ResourcesLoadTabCreator {
}
};
return new CreatedOnDemandTab(_("Resource Usage"), "company-load",
return new CreatedOnDemandTab(_("Resources Load"), "company-load",
componentCreator) {
@Override
protected void beforeShowAction() {
@ -157,7 +157,7 @@ public class ResourcesLoadTabCreator {
breadcrumbs.appendChild(new Image(BREADCRUMBS_SEPARATOR));
breadcrumbs.appendChild(new Label(getSchedulingLabel()));
breadcrumbs.appendChild(new Image(BREADCRUMBS_SEPARATOR));
breadcrumbs.appendChild(new Label(_("Resource Usage")));
breadcrumbs.appendChild(new Label(_("Resources Load")));
}
};
}