Skip to content

Commit

Permalink
Fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
kasnder committed Jul 21, 2022
1 parent f4a0964 commit 6957535
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void askConsent() {
if (isChecked) selectedItems.add(ids.get(i));
else selectedItems.remove(ids.get(i));
})
.setNeutralButton("Privacy Policy", null)
.setNeutralButton(R.string.privacy_policy, null)
.setCancelable(false)
.create();

Expand Down
7 changes: 4 additions & 3 deletions library/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="consent_title">Allow data collection, and reading and storing data on your phone?</string>
<string name="consent_title">Accept data collection, and reading and storing data on your phone?</string>

<string name="firebase_analytics_consent_msg">This app would like to use Google Firebase Analytics to understand your interactions with the app.\n\nThis involves using cookies and similar technologies and sharing your personal data with Google.</string>
<string name="facebook_sdk_consent_msg">This app would like to use the Facebook SDK to understand your interactions with the app.\n\nThis involves using cookies and similar technologies and sharing your personal data with Facebook/Meta.</string>
Expand All @@ -22,6 +22,7 @@

<string name="yes">Accept</string>
<string name="no">Refuse</string>
<string name="accept_all">Accept All</string>
<string name="accept_selected">Accept Selection</string>
<string name="accept_all">All</string>
<string name="accept_selected">Selected</string>
<string name="privacy_policy">Privacy Policy</string>
</resources>

0 comments on commit 6957535

Please sign in to comment.