Skip to content

Commit

Permalink
Added info re: Privacy Friendly Backup to app Help screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jahway603 committed Apr 7, 2024
1 parent 2fec041 commit ce7af02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ public LinkedHashMap<String, List<String>> getDataGeneral() {
permission.add(context.getResources().getString(R.string.help_permission_answer));
expandableListDetail.put(context.getResources().getString(R.string.help_permission), permission);

List<String> data_backup = new ArrayList<String>();
data_backup.add(context.getResources().getString(R.string.help_data_backup_answer));
expandableListDetail.put(context.getResources().getString(R.string.help_data_backup), data_backup);

return expandableListDetail;
}

Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
<string name="help_userdetails_answer">The app does not require you to enter any user details. You are free to enter your name, date of birth and gender and you can delete information you previously entered at any time. The information you enter is not shared or transmitted in any way.</string>
<string name="help_pdf_export">How can I export my diary entries?</string>
<string name="help_pdf_export_answer">You can export all diary entries made within a period of time that you specify. You also have the option to share that PDF. Select the menu item "PDF Export" to do so.</string>
<string name="help_data_backup">How do I backup my data?</string>
<string name="help_data_backup_answer">You can use the separate Privacy Friendly Backup app to backup and restore this application\'s data. This can also be used to migrate your data to a new phone.</string>

<!--### ABOUT ###-->
<string name="about">About</string>
Expand Down

0 comments on commit ce7af02

Please sign in to comment.