Skip to content

Commit

Permalink
Merge pull request #230 from jahway603/backup-app-info
Browse files Browse the repository at this point in the history
Added info re: Privacy Friendly Backup to app Help screen
  • Loading branch information
udenr authored Apr 10, 2024
2 parents a8aee34 + 227cc3b commit 734efc5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ public LinkedHashMap<String, List<String>> getDataGeneral() {

expandableListDetail.put(context.getResources().getString(R.string.help_permission), permissions);

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
4 changes: 3 additions & 1 deletion app/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,16 @@
<string name="more_info">Weitere Infos unter:</string>
<string name="about_author_contributors">Mitwirkende</string>-->
<string name="help_whatis">Was ist PRIVACY FRIENDLY QR Scanner?</string>
<string name="help_whatis_answer">Mit dem PRIVACY FRIENDLY QR Scanner können Sie Barcodes und QR-Codes mit verschiedenen Inhalten scannen / generieren. Sie können auch gescannten QR-Code mit anderen Apps kopieren / teilen, außerdem können Sie den generierten QR-Code teilen oder in der Galerie speichern.</string>
<string name="Ofeatures">andere Funktionen</string>
<string name="help_usability">Das Scannen funktioniert nicht, was kann ich tun?</string>
<string name="help_usability_answer">Wenn Sie keinen Code scannen können, vergrößern Sie den Abstand zwischen Scanner und Code.</string>
<string name="help_privacy">What makes the app privacy-friendly?</string>
<string name="help_privacy_answer">Privacy Friendly App Example does not require any permission. It further does not include any tracking mechanisms or advertisement.</string>
<string name="help_permission">Welche Berechtigungen benötigt der PRIVACY FRIENDLY QR Scanner?</string>
<string name="help_permission_answer">Die App benötigt die Kamera-Erlaubnis, die verwendet wird, um Barcodes und QR-Codes über die Kamera zu scannen. Die App benötigt außerdem die Erlaubnis, auf Ihren Speicher zuzugreifen, um Codes von Ihren Bildern zu scannen oder generierte Codes in Ihren Bildern zu speichern.</string>
<string name="help_whatis_answer">Mit dem PRIVACY FRIENDLY QR Scanner können Sie Barcodes und QR-Codes mit verschiedenen Inhalten scannen / generieren. Sie können auch gescannten QR-Code mit anderen Apps kopieren / teilen, außerdem können Sie den generierten QR-Code teilen oder in der Galerie speichern.</string>
<string name="help_data_backup">Wie kann ich meine Daten sichern?</string>
<string name="help_data_backup_answer">Mit der App Privacy Friendly Backup können die Daten dieser App gesichert und wiederhergestellt werden. Damit können die Daten auch auf ein neues Smatphone übertragen werden.</string>
<string name="description_Mms">Der gescannte QR-Code enthält eine MMS.</string>
<string name="geoInfo">Der gescannte QR-Code enthält eine geographisch Information.</string>
<string name="content_copied">Inhalt kopiert</string>
Expand Down
7 changes: 3 additions & 4 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,20 +211,19 @@
<string name="help_category_example">The scanning does not work, what can I do?</string>
<string name="help_overview_heading">What is PRIVACY FRIENDLY QR Scanner?</string>
<string name="help_intro">With PRIVACY FRIENDLY QR Scanner you can scan barcodes and qr-codes with various contents.</string>
<string name="help_whatis_answer">With PRIVACY FRIENDLY QR Scanner you can scan/generate barcodes and qr-codes with various contents. Also You can copy/share scanned QR code with other applications, furthermore you can save the generated QR code in the gallery and share it as well.</string>


<!--###HELP###-->


<string name="help_whatis">What is PRIVACY FRIENDLY QR Scanner?</string>

<string name="help_whatis_answer">With PRIVACY FRIENDLY QR Scanner you can scan/generate barcodes and qr-codes with various contents. Also You can copy/share scanned QR code with other applications, furthermore you can save the generated QR code in the gallery and share it as well.</string>
<string name="help_usability">The scanning does not work, what can I do?</string>
<string name="help_usability_answer">If you cannot scan a code, increase the distance between the scanner and the code.</string>
<string name="help_privacy">What makes the app privacy-friendly?</string>
<string name="help_privacy_answer">Privacy Friendly App Example does not require any permission. It further does not include any tracking mechanisms or advertisement.</string>
<string name="help_permission">What permissions are required by PRIVACY FRIENDLY QR Scanner?</string>
<string name="help_permission_answer">The app requires the camera permission, which is used to scan barcodes and qr codes via camera. The app also requires the permission to access your storage to scan codes from your images or save generated codes to your images.</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>
<!-- Strings related to SettingsActivity -->

<!-- Example General settings -->
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/res/xml/help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
android:selectable="false"/>
</PreferenceCategory>

<PreferenceCategory android:title="@string/help_data_backup">
<Preference
android:summary="@string/help_data_backup"
android:title="@string/help_data_backup" />
</PreferenceCategory>


</PreferenceScreen>

0 comments on commit 734efc5

Please sign in to comment.