X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FAboutActivity.java;h=1df1387288a01fa35cd8dd8fc86045f194cd5c97;hb=cb56305f3e505fb3afa2e2e27f67b69f41c0a8e7;hp=c5d7bf779cf87d8607a41a12f2c8e4113c6b9f11;hpb=8498a3be7602976764d5b707fda012519deb88b4;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/AboutActivity.java b/app/src/main/java/com/stoutner/privacybrowser/AboutActivity.java index c5d7bf77..1df13872 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/AboutActivity.java +++ b/app/src/main/java/com/stoutner/privacybrowser/AboutActivity.java @@ -52,11 +52,11 @@ public class AboutActivity extends AppCompatActivity { @Override // Get the count of the number of tabs. public int getCount() { - return 5; + return 7; } @Override - // Get the name of each tab. + // Get the name of each tab. Tab numbers start at 0. public CharSequence getPageTitle(int tab) { switch (tab) { case 0: @@ -66,14 +66,20 @@ public class AboutActivity extends AppCompatActivity { return getString(R.string.permissions); case 2: - return getString(R.string.changelog); + return getString(R.string.privacy_policy); case 3: - return getString(R.string.license); + return getString(R.string.changelog); case 4: + return getString(R.string.license); + + case 5: return getString(R.string.contributors); + case 6: + return getString(R.string.links); + default: return ""; }