Skip to content

Commit

Permalink
Update remove family and family member forms save title to string.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
zzainulabidin committed Mar 24, 2021
1 parent 275692b commit 36a550a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void startJsonActivity(JSONObject jsonObject) {
Form form = new Form();
form.setActionBarBackground(R.color.family_actionbar);
form.setWizard(false);
form.setSaveLabel("Save");
form.setSaveLabel(getString(R.string.submit));
if (jsonObject.has(CoreConstants.REGISTER_TYPE.INDEPENDENT)) {
form.setName(getString(R.string.remove_client));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void startJsonActivity(JSONObject jsonObject) {
Form form = new Form();
form.setActionBarBackground(R.color.family_actionbar);
form.setWizard(false);
form.setSaveLabel("Save");
form.setSaveLabel(getString(R.string.submit));
if (jsonObject.has(CoreConstants.REGISTER_TYPE.INDEPENDENT)) {
form.setName(getString(R.string.remove_client));
}
Expand Down

0 comments on commit 36a550a

Please sign in to comment.