diff --git a/app/src/main/java/i2p/bote/android/HelpActivity.java b/app/src/main/java/i2p/bote/android/HelpActivity.java index 21ed2aa..a8761ea 100644 --- a/app/src/main/java/i2p/bote/android/HelpActivity.java +++ b/app/src/main/java/i2p/bote/android/HelpActivity.java @@ -65,8 +65,10 @@ public class HelpActivity extends ActionBarActivity { public CharSequence getPageTitle(int position) { switch (position) { case 1: - return getString(R.string.changelog); + return getString(R.string.pref_title_identities); case 2: + return getString(R.string.changelog); + case 3: return getString(R.string.about); case 0: default: @@ -78,8 +80,10 @@ public class HelpActivity extends ActionBarActivity { public Fragment getItem(int position) { switch (position) { case 1: - return HelpHtmlFragment.newInstance(R.raw.help_changelog); + return HelpHtmlFragment.newInstance(R.raw.help_identities); case 2: + return HelpHtmlFragment.newInstance(R.raw.help_changelog); + case 3: return new HelpAboutFragment(); case 0: default: @@ -89,7 +93,7 @@ public class HelpActivity extends ActionBarActivity { @Override public int getCount() { - return 3; + return 4; } } } diff --git a/app/src/main/res/raw/help_identities.html b/app/src/main/res/raw/help_identities.html new file mode 100644 index 0000000..62a0e9f --- /dev/null +++ b/app/src/main/res/raw/help_identities.html @@ -0,0 +1,25 @@ + + +
+ + +An Identity is like an email account, but without a provider - you control your account, instead of a third party like Google or Yahoo.
+ +A Destination is the address that you give to your friends so they can send you emails.
+ +Every email is automatically encrypted by Bote. Each address contains a set of public keys, which are used to encrypt emails sent to that address. The length of the address depends on the type of encryption used.
+ +You can make as many Identities as you want, and use different Identities for different purposes.
+ +Never. As long as you have the private keys for an Identity, you can use it. This also means that there is no "account recovery" - if you lose your phone, you lose your Identities.
+You can back up your Identities by exporting them from the "Settings" menu. This will save a copy of them to a file in your phone's storage. The file can be used to recover your Identities, or move them to another device.
+ + +