Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added info re: Privacy Friendly Backup to app Help screen #42

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading