Skip to content

Commit

Permalink
MID-4521 Policy breach message is not localized in self-service
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Apr 5, 2018
1 parent e4f3003 commit 503b4e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -262,7 +262,7 @@ private void onSingleUserRequestPerformed(AjaxRequestTarget target) {
storage.getRoleCatalog().getAssignmentShoppingCart().clear();
} catch (Exception e) {
LoggingUtils.logUnexpectedException(LOGGER, "Could not save assignments ", e);
error("Could not save assignments. Reason: " + e);
error(createStringResource("PageAssignmentsList.saveAssignmentsError").getString() + e.getLocalizedMessage());
target.add(getFeedbackPanel());
} finally {
result.recomputeStatus();
Expand Down
Expand Up @@ -3650,6 +3650,7 @@ PageAssignmentsList.submitButton=Submit
PageAssignmentsList.resolveConflicts=Resolve conflicts
PageAssignmentsList.commentHere=Comment here...
PageAssignmentsList.requestComment=Request comment (optional)
PageAssignmentsList.saveAssignmentsError=Could not save assignments. Reason:
AssignmentShoppingCartPanel.treeTitle=Role catalog
AssignmentViewType.ROLE_CATALOG_VIEW=Role catalog view
AssignmentViewType.ROLE_TYPE=All roles view
Expand Down

0 comments on commit 503b4e1

Please sign in to comment.