diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle index 97c8a6d5e..b5e9f7049 100644 --- a/OpenKeychain/build.gradle +++ b/OpenKeychain/build.gradle @@ -20,6 +20,7 @@ dependencies { compile 'it.neokree:MaterialNavigationDrawer:1.3.1' compile 'com.nispok:snackbar:2.9.1' compile 'com.getbase:floatingactionbutton:1.8.0' + compile 'org.commonjava.googlecode.markdown4j:markdown4j:2.2-cj-1.0' // libs as submodules compile project(':extern:openpgp-api-lib') @@ -54,6 +55,7 @@ dependencyVerification { 'com.getbase:floatingactionbutton:e63966148212e9685afad2370780ea239b6dbd2a06f6a3f919b98882318e6a32', 'com.android.support:support-annotations:fdee2354787ef66b268e75958de3f7f6c4f8f325510a6dac9f49c929f83a63de', 'com.balysv:material-ripple:587f19c1e27f16c7dc67ff9ac73838aa1451086ef05a15cee38bee3e4e1454ae', + 'org.commonjava.googlecode.markdown4j:markdown4j:e952e825d29e1317d96f79f346bfb6786c7c5eef50bd26e54a80823704b62e13', //'OpenKeychain.extern:openpgp-api-lib:b17bb282321351e4b00b4cd6422a57aadc13decae264019a88707bcb556439ea', //'OpenKeychain.extern:openkeychain-api-lib:5f95f01c066069d4bde68992fd8da5faac21510d009b1fdae7a2e28e43e82cf4', //'OpenKeychain.extern:html-textview:b58e343cf4c145e91f888806d06a2a7770a9e9331a72f08cfcf1128db30dcff3', diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpAboutFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpAboutFragment.java index 5909970af..912caf32f 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpAboutFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpAboutFragment.java @@ -27,11 +27,14 @@ import android.view.View; import android.view.ViewGroup; import android.widget.TextView; +import org.markdown4j.Markdown4jProcessor; import org.sufficientlysecure.htmltextview.HtmlTextView; import org.sufficientlysecure.keychain.Constants; import org.sufficientlysecure.keychain.R; import org.sufficientlysecure.keychain.util.Log; +import java.io.IOException; + public class HelpAboutFragment extends Fragment { @@ -44,8 +47,14 @@ public class HelpAboutFragment extends Fragment { HtmlTextView aboutTextView = (HtmlTextView) view.findViewById(R.id.help_about_text); - // load html from raw resource (Parsing handled by HtmlTextView library) - aboutTextView.setHtmlFromRawResource(getActivity(), R.raw.help_about, true); + // load mardown from raw resource + try { + String html = new Markdown4jProcessor().process( + getActivity().getResources().openRawResource(R.raw.help_about)); + aboutTextView.setHtmlFromString(html, true); + } catch (IOException e) { + Log.e(Constants.TAG, "IOException", e); + } // no flickering when clicking textview for Android < 4 aboutTextView.setTextColor(getResources().getColor(android.R.color.black)); diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpActivity.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpActivity.java index cd6cdf4d6..24136a4b8 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpActivity.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpActivity.java @@ -64,18 +64,23 @@ public class HelpActivity extends BaseActivity { } Bundle startBundle = new Bundle(); - startBundle.putInt(HelpHtmlFragment.ARG_HTML_FILE, R.raw.help_start); - mTabsAdapter.addTab(HelpHtmlFragment.class, startBundle, + startBundle.putInt(HelpMarkdownFragment.ARG_MARKDOWN_FILE, R.raw.help_start); + mTabsAdapter.addTab(HelpMarkdownFragment.class, startBundle, getString(R.string.help_tab_start)); - Bundle wotBundle = new Bundle(); - wotBundle.putInt(HelpHtmlFragment.ARG_HTML_FILE, R.raw.help_certification); - mTabsAdapter.addTab(HelpHtmlFragment.class, wotBundle, + Bundle certificationBundle = new Bundle(); + certificationBundle.putInt(HelpMarkdownFragment.ARG_MARKDOWN_FILE, R.raw.help_certification); + mTabsAdapter.addTab(HelpMarkdownFragment.class, certificationBundle, getString(R.string.help_tab_wot)); + Bundle faqBundle = new Bundle(); + faqBundle.putInt(HelpMarkdownFragment.ARG_MARKDOWN_FILE, R.raw.help_faq); + mTabsAdapter.addTab(HelpMarkdownFragment.class, faqBundle, + getString(R.string.help_tab_faq)); + Bundle changelogBundle = new Bundle(); - changelogBundle.putInt(HelpHtmlFragment.ARG_HTML_FILE, R.raw.help_changelog); - mTabsAdapter.addTab(HelpHtmlFragment.class, changelogBundle, + changelogBundle.putInt(HelpMarkdownFragment.ARG_MARKDOWN_FILE, R.raw.help_changelog); + mTabsAdapter.addTab(HelpMarkdownFragment.class, changelogBundle, getString(R.string.help_tab_changelog)); mTabsAdapter.addTab(HelpAboutFragment.class, null, diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpHtmlFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpMarkdownFragment.java similarity index 71% rename from OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpHtmlFragment.java rename to OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpMarkdownFragment.java index a3f0ef614..69ddf2e99 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpHtmlFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/HelpMarkdownFragment.java @@ -26,24 +26,29 @@ import android.view.View; import android.view.ViewGroup; import android.widget.ScrollView; +import org.markdown4j.Markdown4jProcessor; import org.sufficientlysecure.htmltextview.HtmlTextView; +import org.sufficientlysecure.keychain.Constants; +import org.sufficientlysecure.keychain.util.Log; -public class HelpHtmlFragment extends Fragment { +import java.io.IOException; + +public class HelpMarkdownFragment extends Fragment { private Activity mActivity; private int mHtmlFile; - public static final String ARG_HTML_FILE = "htmlFile"; + public static final String ARG_MARKDOWN_FILE = "htmlFile"; /** * Create a new instance of HelpHtmlFragment, providing "htmlFile" as an argument. */ - static HelpHtmlFragment newInstance(int htmlFile) { - HelpHtmlFragment f = new HelpHtmlFragment(); + static HelpMarkdownFragment newInstance(int htmlFile) { + HelpMarkdownFragment f = new HelpMarkdownFragment(); // Supply html raw file input as an argument. Bundle args = new Bundle(); - args.putInt(ARG_HTML_FILE, htmlFile); + args.putInt(ARG_MARKDOWN_FILE, htmlFile); f.setArguments(args); return f; @@ -53,7 +58,7 @@ public class HelpHtmlFragment extends Fragment { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { mActivity = getActivity(); - mHtmlFile = getArguments().getInt(ARG_HTML_FILE); + mHtmlFile = getArguments().getInt(ARG_MARKDOWN_FILE); ScrollView scroller = new ScrollView(mActivity); HtmlTextView text = new HtmlTextView(mActivity); @@ -65,8 +70,13 @@ public class HelpHtmlFragment extends Fragment { scroller.addView(text); - // load html from raw resource (Parsing handled by HtmlTextView library) - text.setHtmlFromRawResource(getActivity(), mHtmlFile, true); + // load mardown from raw resource + try { + String html = new Markdown4jProcessor().process(getActivity().getResources().openRawResource(mHtmlFile)); + text.setHtmlFromString(html, true); + } catch (IOException e) { + Log.e(Constants.TAG, "IOException", e); + } // no flickering when clicking textview for Android < 4 text.setTextColor(getResources().getColor(android.R.color.black)); diff --git a/OpenKeychain/src/main/res/raw-bg/help_about.html b/OpenKeychain/src/main/res/raw-bg/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-bg/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-bg/help_changelog.html b/OpenKeychain/src/main/res/raw-bg/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-bg/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-bg/help_start.html b/OpenKeychain/src/main/res/raw-bg/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-bg/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-cs/help_about.html b/OpenKeychain/src/main/res/raw-cs/help_about.html deleted file mode 100644 index e4ec46f0d..000000000 --- a/OpenKeychain/src/main/res/raw-cs/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain je OpenPGP implementace pro Android.

-

Licence: GPLv3+

- -

Vývojáři

- -

Knihovny

- - - diff --git a/OpenKeychain/src/main/res/raw-cs/help_changelog.html b/OpenKeychain/src/main/res/raw-cs/help_changelog.html deleted file mode 100644 index af9e49137..000000000 --- a/OpenKeychain/src/main/res/raw-cs/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-cs/help_start.html b/OpenKeychain/src/main/res/raw-cs/help_start.html deleted file mode 100644 index acbc80735..000000000 --- a/OpenKeychain/src/main/res/raw-cs/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Našel jsem chybu v OpenKeychain!

-

Nahlašte prosím chybu na bug trackeru OpenKeychain.

- -

Přispět

-

Pokud chcete pomoci vyvíjet OpenKeychain tak, že přispějete svými kodérskými schopnostmi přečtěte si naší malou příručku na Githubu.

- -

Překlady

-

Pomozte s překladem OpenKeychain! Každý se může zapojit na Transifexu.

- - - diff --git a/OpenKeychain/src/main/res/raw-de/help_about.html b/OpenKeychain/src/main/res/raw-de/help_about.html deleted file mode 100644 index 7b613ec20..000000000 --- a/OpenKeychain/src/main/res/raw-de/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain ist eine OpenPGP-Implementierung für Android.

-

Lizenz: GPLv3+

- -

Entwickler

- -

Bibliotheken

- - - diff --git a/OpenKeychain/src/main/res/raw-de/help_changelog.html b/OpenKeychain/src/main/res/raw-de/help_changelog.html deleted file mode 100644 index a54052fef..000000000 --- a/OpenKeychain/src/main/res/raw-de/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Diese Version wäre ohne die Arbeit von Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray und Thialfihar nicht möglich

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Danke an alle Bewerber des Google Summer of Code 2014, die diese Version funktionsreich und fehlerfrei gemacht haben. -Neben mehreren kleinen Updates sind eine beachtliche Anzahl von Updates von den folgenden Personen gemacht worden (in alphabetischer Reihenfolge): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-de/help_start.html b/OpenKeychain/src/main/res/raw-de/help_start.html deleted file mode 100644 index 676922dbf..000000000 --- a/OpenKeychain/src/main/res/raw-de/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

Wie kann ich OpenKeychain in K-9 Mail nutzen?

-

Um OpenKeychain in K-9 Mail nutzen zu können, sind folgende Schritte nötig:

-
    -
  1. Öffne K-9 Mail und drücke lange auf den Account, mit dem du OpenKeychain nutzen willst.
  2. -
  3. Wähle "Kontoeinstellungen", blättere ganz nach unten und klicke auf "Kryptographie".
  4. -
  5. Klicke auf "OpenPGP-Provider" und wähle OpenKeychain aus der Liste.
  6. -
-

Ich habe einen Fehler in OpenKeychain gefunden!

-

Bitte sende uns einen Fehlerbericht mithilfe des Problem-Trackers von OpenKeychain.

- -

Unterstützen

-

Wenn du uns bei der Entwicklung von OpenKeychain, z.B. durch das Beisteuern von Code, helfen willst, schau dir unsere kurze Anleitung auf GitHub an.

- -

Übersetzungen

-

Hilf mit OpenKeychain zu übersetzten! Jeder kann mitmachen, besucheOpenKeychain auf Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-es/help_about.html b/OpenKeychain/src/main/res/raw-es/help_about.html deleted file mode 100644 index 7ea723e76..000000000 --- a/OpenKeychain/src/main/res/raw-es/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain es una implementación de OpenPGP para Android.

-

Licencia: GPLv3+

- -

Desarrolladores

- -

Librerías

- - - diff --git a/OpenKeychain/src/main/res/raw-es/help_changelog.html b/OpenKeychain/src/main/res/raw-es/help_changelog.html deleted file mode 100644 index e404fecf1..000000000 --- a/OpenKeychain/src/main/res/raw-es/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Esta versión no sería posible sin el trabajo de Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

¡Gracias a todos los aspirantes del Google Summer of Code 2014 que hicieron que esta versión sea rica en características y libre de fallos! -Además de varios pequeños parches, un número notable de parches están hechos por las siguientes personas (en orden alfabético): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-es/help_start.html b/OpenKeychain/src/main/res/raw-es/help_start.html deleted file mode 100644 index b0df960ee..000000000 --- a/OpenKeychain/src/main/res/raw-es/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

¿Cómo activo OpenKeychain in K-9 Mail?

-

Para utilizar OpenKeychain con K-9 Mail, querrá seguir estos pasos:

-
    -
  1. Abra K-9 Mail y realice una pulsación larga en la cuenta con la que quiera utilizar OpenKeychain.
  2. -
  3. Seleccione "Configuración de cuenta", deplácese al fondo del todo y haga clic en "Criptografía".
  4. -
  5. Haga clic en "Proveedor OpenPGP" y de la lista seleccione OpenKeychain.
  6. -
-

¡He encontrado un bug en OpenKeychain!

-

Por favor, informa de errores usando el seguimiento de incidencias de OpenKeychain.

- -

Aportar

-

Si quieres ayudarnos con el desarrollo de OpenKeychain aportando código sigue nuestra pequeña guía en Github.

- -

Traducciones

-

¡Ayúdanos a traducir OpenKeychain! Todo el mundo es bienvenido en Transifex - OpenKeychain.

- - - diff --git a/OpenKeychain/src/main/res/raw-et/help_about.html b/OpenKeychain/src/main/res/raw-et/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-et/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-et/help_changelog.html b/OpenKeychain/src/main/res/raw-et/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-et/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-et/help_start.html b/OpenKeychain/src/main/res/raw-et/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-et/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-eu/help_about.html b/OpenKeychain/src/main/res/raw-eu/help_about.html deleted file mode 100644 index 6f19ccaad..000000000 --- a/OpenKeychain/src/main/res/raw-eu/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain Android-rako OpenPGP inplemetazio bat da.

-

Baimena: GPLv3+

- -

Garatzaileak

- -

Liburutegiak

- - - diff --git a/OpenKeychain/src/main/res/raw-eu/help_changelog.html b/OpenKeychain/src/main/res/raw-eu/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-eu/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-eu/help_start.html b/OpenKeychain/src/main/res/raw-eu/help_start.html deleted file mode 100644 index 0e05e3790..000000000 --- a/OpenKeychain/src/main/res/raw-eu/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Akats bat aurkitu dut OpenKeychain-en!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Lagundu

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Itzulpenak

-

Lagundu OpenKeychain itzultzen! Edonork eskuhartu dezake hemen OpenKeychainTransifex-en.

- - - diff --git a/OpenKeychain/src/main/res/raw-fi/help_about.html b/OpenKeychain/src/main/res/raw-fi/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-fi/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-fi/help_changelog.html b/OpenKeychain/src/main/res/raw-fi/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-fi/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-fi/help_start.html b/OpenKeychain/src/main/res/raw-fi/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-fi/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-fr/help_about.html b/OpenKeychain/src/main/res/raw-fr/help_about.html deleted file mode 100644 index 82f86dc22..000000000 --- a/OpenKeychain/src/main/res/raw-fr/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain est une implémentation d'OpenPGP pour Android.

-

Licence : GPLv3+

- -

Développeurs

- -

Bibliothèques

- - - diff --git a/OpenKeychain/src/main/res/raw-fr/help_changelog.html b/OpenKeychain/src/main/res/raw-fr/help_changelog.html deleted file mode 100644 index 97b42c6a6..000000000 --- a/OpenKeychain/src/main/res/raw-fr/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Cette version ne serait pas possible sans le travail de Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Merci à tous les participants de « Google Summer of Code 2014 » qui ont rendu cette version riche en fonctions et sans bogue ! -À part plusieurs petits correctifs, un nombre notable de correctifs ont été apportés par les personnes suivantes (par ordre alphabétique) : -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-fr/help_start.html b/OpenKeychain/src/main/res/raw-fr/help_start.html deleted file mode 100644 index 00d801e46..000000000 --- a/OpenKeychain/src/main/res/raw-fr/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

Comment puis-je activer OpenKeychain dans K-9 Mail ?

-

Pour utiliser OpenKeychain avec K-9 Mail, vous devez suivre ces étapes :

-
    -
  1. Ouvrez K-9 Mail et toquez longuement sur le compte avec lequel vous voulez utiliser OpenKeychain.
  2. -
  3. Sélectionnez « Paramètres du compte », faite défiler vers le bas et cliquez sur « Cryptographie».
  4. -
  5. Cliquez sur « Fournisseur OpenPGP » et sélectionnez OpenKeychain dans la liste.
  6. -
-

J'ai trouvé un bogue dans OpenKeychain !

-

Veuillez rapporter le bogue en utilisant le gestionnaire de bogue d'OpenKeychain.

- -

Contribuer

-

Si vous voulez nous aider à développer OpenKeychain en y contribuant par du code veuillez suivre notre petit guide sur Github.

- -

Traductions

-

Aidez-nous à traduire le OpenKeychain ! Tout le monde peut y participer sur la page d'OpenKeychain sur Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-is/help_about.html b/OpenKeychain/src/main/res/raw-is/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-is/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-is/help_changelog.html b/OpenKeychain/src/main/res/raw-is/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-is/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-is/help_start.html b/OpenKeychain/src/main/res/raw-is/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-is/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-it/help_about.html b/OpenKeychain/src/main/res/raw-it/help_about.html deleted file mode 100644 index 0f24b7918..000000000 --- a/OpenKeychain/src/main/res/raw-it/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain un implementazione OpenPGP per Android.

-

Licenza: GPLv3+

- -

Sviluppatori

- -

Librerie

- - - diff --git a/OpenKeychain/src/main/res/raw-it/help_changelog.html b/OpenKeychain/src/main/res/raw-it/help_changelog.html deleted file mode 100644 index bbb765bc3..000000000 --- a/OpenKeychain/src/main/res/raw-it/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Questo rilascio non sarebbe stato possibile senza il lavoro di Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Grazie a tutti i partecipanti di Google Summer of Code 2014 che hanno reso questo rilascio ricco di caratteristiche e privo di bug! -Oltre a numerose piccole correzioni, un notevole numero di patch sono state fatte dalle seguenti persone (in ordine alfabetico): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paolo Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-it/help_start.html b/OpenKeychain/src/main/res/raw-it/help_start.html deleted file mode 100644 index 026690b5a..000000000 --- a/OpenKeychain/src/main/res/raw-it/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Ho trovato un bug in OpenKeychain!

-

Per favore riporta i bug usando il issue tracker di OpenKeychain.

- -

Contribuire

-

Se vuoi aiutarci nello sviluppo di OpenKeychain contribuendo al codice segui la nostra breve guida su Github.

- -

Traduzioni

-

Aiutaci a tradurre OpenKeychain! Tutti possono collaborare a OpenKeychain su Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-ja/help_about.html b/OpenKeychain/src/main/res/raw-ja/help_about.html deleted file mode 100644 index 77c774cf6..000000000 --- a/OpenKeychain/src/main/res/raw-ja/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain は Android における OpenPGP 実装です。

-

ライセンス: GPLv3以降

- -

開発者

- -

ライブラリ

- - - diff --git a/OpenKeychain/src/main/res/raw-ja/help_changelog.html b/OpenKeychain/src/main/res/raw-ja/help_changelog.html deleted file mode 100644 index f6ceaa427..000000000 --- a/OpenKeychain/src/main/res/raw-ja/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfiharの働きなくしてはこのリリースはありませんでした

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

このリリースにおいて適用したリッチでバグのない機能を作ってくれたGoogle Summer of Code 2014の参加者たちに感謝を! -また、以下の人達(アルファベット順)の作ってくれたいくつもの小さなパッチや相当数のパッチにも: -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-ja/help_start.html b/OpenKeychain/src/main/res/raw-ja/help_start.html deleted file mode 100644 index 6b8d1dbcd..000000000 --- a/OpenKeychain/src/main/res/raw-ja/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

OpenKeychainでバグを見付けた!

-

OpenKeychainのIssueトラッカーを使ってバグレポートを送ってください。

- -

寄贈

-

もし、あなたが OpenKeychain の開発を助け、コードを寄贈するというなら、Githubのミニガイドを確認して下さい。

- -

翻訳

-

OpenKeychainの翻訳を助けてください! TransifexのOpenKeychainプロジェクトに誰でも参加できます。

- - - diff --git a/OpenKeychain/src/main/res/raw-nl/help_about.html b/OpenKeychain/src/main/res/raw-nl/help_about.html deleted file mode 100644 index abcbf7087..000000000 --- a/OpenKeychain/src/main/res/raw-nl/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is een OpenPGP implementatie voor Android.

-

Licentie: GPLv3+

- -

Ontwikkelaars

- -

Bibliotheken

- - - diff --git a/OpenKeychain/src/main/res/raw-nl/help_changelog.html b/OpenKeychain/src/main/res/raw-nl/help_changelog.html deleted file mode 100644 index 809ffa6e6..000000000 --- a/OpenKeychain/src/main/res/raw-nl/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Deze release zou niet mogelijk zijn zonder het werkt van Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Dank aan alle deelnemers aan Google Summer of Code 2014 die deze release zo vol mogelijkheden en zonder bugs hebben gemaakt! -Buiten verschillende kleine patches, werden een groot aantal patches gemaakt door volgende personen (alfabetisch gerangschikt): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-nl/help_start.html b/OpenKeychain/src/main/res/raw-nl/help_start.html deleted file mode 100644 index 04fc9c263..000000000 --- a/OpenKeychain/src/main/res/raw-nl/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

Hoe activeer ik OpenKeychain in K-9 Mail?

-

Volg deze stappen om OpenKeychain te gebruiken met K-9 Mail:

-
    -
  1. Open K-9 Mail en druk lang op de account waarmee je OpenKeychain wil gebruiken.
  2. -
  3. Selecteer "Accountinstellingen", scroll helemaal naar beneden en klik op "Cryptografie".
  4. -
  5. Klik op "OpenPGP-provider" en selecteer OpenKeychain in de lijst.
  6. -
-

Ik heb een bug in OpenKeychain gevonden!

-

Rapporteer de bug met de problemen tracker van OpenKeychain.

- -

Bijdragen

-

Als je ons wil helpen om OpenKeychain te ontwikkelen door code bij te dragen, volg onze kleine gids op Github.

- -

Vertalingen

-

Help OpenKeychain te vertalen! Iedereen kan deelnemen op OpenKeychain op Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-pl/help_about.html b/OpenKeychain/src/main/res/raw-pl/help_about.html deleted file mode 100644 index ba319afca..000000000 --- a/OpenKeychain/src/main/res/raw-pl/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain jest implementacją OpenPGP pod Androida.

-

Licencja: GPLv3+

- -

Deweloperzy

- -

Biblioteki

- - - diff --git a/OpenKeychain/src/main/res/raw-pl/help_changelog.html b/OpenKeychain/src/main/res/raw-pl/help_changelog.html deleted file mode 100644 index 07dcd04e2..000000000 --- a/OpenKeychain/src/main/res/raw-pl/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-pl/help_start.html b/OpenKeychain/src/main/res/raw-pl/help_start.html deleted file mode 100644 index f5cd3a9aa..000000000 --- a/OpenKeychain/src/main/res/raw-pl/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Znalazłem błąd w OpenKeychain!

-

Zgłoś błąd korzystając z systemu śledzenia błędów OpenKeychain.

- -

Wkład

-

Jeżeli chcesz pomóc nam rozwijać OpenKeychain jako programista, zapoznaj się z naszym małym poradnikiem na Githubie.

- -

Tłumaczenia

-

Pomóż przetłumaczyć OpenKeychain! Każdy może wziąć udział przez stronę OpenKeychain w serwisie Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-pt/help_about.html b/OpenKeychain/src/main/res/raw-pt/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-pt/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-pt/help_changelog.html b/OpenKeychain/src/main/res/raw-pt/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-pt/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-pt/help_start.html b/OpenKeychain/src/main/res/raw-pt/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-pt/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-ro/help_about.html b/OpenKeychain/src/main/res/raw-ro/help_about.html deleted file mode 100644 index cf77cf11d..000000000 --- a/OpenKeychain/src/main/res/raw-ro/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw-ro/help_changelog.html b/OpenKeychain/src/main/res/raw-ro/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-ro/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-ro/help_start.html b/OpenKeychain/src/main/res/raw-ro/help_start.html deleted file mode 100644 index 58f3fae40..000000000 --- a/OpenKeychain/src/main/res/raw-ro/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-ru/help_about.html b/OpenKeychain/src/main/res/raw-ru/help_about.html deleted file mode 100644 index 52a85c45d..000000000 --- a/OpenKeychain/src/main/res/raw-ru/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain - реализация OpenPGP для Android.

-

Лицензия: GPLv3+

- -

Разработчики

- -

Компоненты

- - - diff --git a/OpenKeychain/src/main/res/raw-ru/help_changelog.html b/OpenKeychain/src/main/res/raw-ru/help_changelog.html deleted file mode 100644 index 6c22f1315..000000000 --- a/OpenKeychain/src/main/res/raw-ru/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Этот релиз стал возможен благодаря работе Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Спасибо всем участникам Google Summer of Code 2014, которые помогли сделать этот выпуск, добавив функции и исправив ошибки! -Из общего числа патчей, особенный вклад внесли следующие люди (в алфавитном порядке): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-ru/help_start.html b/OpenKeychain/src/main/res/raw-ru/help_start.html deleted file mode 100644 index dbfb87503..000000000 --- a/OpenKeychain/src/main/res/raw-ru/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Я нашел ошибку в OpenKeychain!

-

Пожалуйста, сообщайте о возникших проблемах и найденных ошибках в разделе Решение проблем OpenKeychain.

- -

Вклад в развитие

-

Если Вы хотите помочь в разработке OpenKeychain, обратитесь к инструкции на Github.

- -

Перевод

-

Помогите переводить OpenKeychain! Каждый может принять участие в переводе OpenKeychain на Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-sl/help_about.html b/OpenKeychain/src/main/res/raw-sl/help_about.html deleted file mode 100644 index 36ce2c104..000000000 --- a/OpenKeychain/src/main/res/raw-sl/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain je implementacija OpenPGP za Android.

-

Licenca: GPLv3+

- -

Razvijalci

- -

Knjižnice

- - - diff --git a/OpenKeychain/src/main/res/raw-sl/help_changelog.html b/OpenKeychain/src/main/res/raw-sl/help_changelog.html deleted file mode 100644 index 943ba79f1..000000000 --- a/OpenKeychain/src/main/res/raw-sl/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Ta izdaja ne bi bila mogoča brez dela avtorjev: Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray in Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Hvala vsem kandidatom za Google Summer of Code 2014, ki so omogočili to vsebinsko bogato različico! -Največje število popravkov je bilo s strani naslednjih ljudi (po abecednem vrstnem redu): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-sl/help_start.html b/OpenKeychain/src/main/res/raw-sl/help_start.html deleted file mode 100644 index 84a2fc8f7..000000000 --- a/OpenKeychain/src/main/res/raw-sl/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Našel sem 'hrošča' v aplikaciji OpenKeychain!

-

Za poročanje o 'hroščih' uporabite sledilnik težav za OpenKeychain.

- -

Prispevajte

-

Če želite sodelovati pri razvoju aplikacije OpenKeychain in prispevati lastno kodo prosimo sledite navodilom na Github-u.

- -

Prevodi

-

Pomagajte nam pri prevajanju aplikacije OpenKeychain! Svoje prevode lahko prispevate tukaj: OpenKeychain na Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-sr/help_about.html b/OpenKeychain/src/main/res/raw-sr/help_about.html deleted file mode 100644 index 0d2f9d697..000000000 --- a/OpenKeychain/src/main/res/raw-sr/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

Отворени кључарник (OpenKeychain) је ОпенПГП имплементација за Андроид.

-

Лиценца: ГПЛв3+

- -

Програмери

- -

Библиотеке

- - - diff --git a/OpenKeychain/src/main/res/raw-sr/help_changelog.html b/OpenKeychain/src/main/res/raw-sr/help_changelog.html deleted file mode 100644 index 599498336..000000000 --- a/OpenKeychain/src/main/res/raw-sr/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

Ово издање не би било могуће без рада Винсента Брајтмозера (ГСоЦ 2014), „mar-v-in“-а (ГСоЦ 2014), Данијела Алберта (Daniel Albert), Арта Катијана (Art O Cathain), Данијела Хаса, Тима Бреја, „Thialfihar“-а

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Хвала свим апликантима Гугловог Лета Ко̂да 2014 који су учинили ово издање богатим у могућностима и без грешака! -Осим неколицине малих закрпа, значајан број закрпа направили су следећи људи (по абецедном реду): -Данијел Хаман (Daniel Hammann), Данијел Хас (Daniel Haß), Грег Вичак (Greg Witczak), Мируђин Бакши (Miroojin Bakshi), Никил Питер Раж (Nikhil Peter Raj), Паул Сарбиновски (Paul Sarbinowski), Срирам Бујапати (Sreeram Boyapati), Винсент Брајтмозер (Vincent Breitmoser).

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-sr/help_start.html b/OpenKeychain/src/main/res/raw-sr/help_start.html deleted file mode 100644 index e1d5c7726..000000000 --- a/OpenKeychain/src/main/res/raw-sr/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

Како да активирам Отворени кључарник у К-9 Пошти?

-

Да бисте користили Отворени кључарник са К-9 Поштом, пратите ове кораке:

-
    -
  1. Отворите К-9 Пошту и притисните дуго на налог са којим желите да користите Отворени кључарник.
  2. -
  3. Изаберите „поставке налога“ и клизајте на дно и притисните „криптографија“.
  4. -
  5. Кликните на „ОпенПГП апликација“ и изаберите Отворени кључарник са списка.
  6. -
-

Пронађох грешку у Отвореном кључарнику!

-

Пријавите грешку на пратиоцу проблема за Отворени кључарник.

- -

Доприноси

-

Ако желите да нам помогнете у развоју Отвореног кључарника доприносом кода, пратите наш мали водич на Гитхабу.

- -

Преводи

-

Помозите у превођењу Отвореног кључарника! Било ко може да учествује у пројекту Отвореног кључара на Трансифексу.

- - - diff --git a/OpenKeychain/src/main/res/raw-sv/help_about.html b/OpenKeychain/src/main/res/raw-sv/help_about.html deleted file mode 100644 index 3c401f4b1..000000000 --- a/OpenKeychain/src/main/res/raw-sv/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain är en OpenPGP-implementering för Android.

-

Licens: GPLv3+

- -

Utvecklare

- -

Bibliotek

- - - diff --git a/OpenKeychain/src/main/res/raw-sv/help_changelog.html b/OpenKeychain/src/main/res/raw-sv/help_changelog.html deleted file mode 100644 index 30ab97733..000000000 --- a/OpenKeychain/src/main/res/raw-sv/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-sv/help_start.html b/OpenKeychain/src/main/res/raw-sv/help_start.html deleted file mode 100644 index 5de9f23f0..000000000 --- a/OpenKeychain/src/main/res/raw-sv/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Jag hittade en bugg i OpenKeychain!

-

Rapporterar buggen med felrapporteringssystemen av OpenKeychain.

- -

Bidra

-

Om du vill hjälpa oss att utveckla OpenKeychain genom att bidra med kod , följ vår korta guide på Github.

- -

Översättningar

-

Hjälp till med att översätta OpenKeychain! Alla kan delta i OpenKeychain på Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-tr/help_about.html b/OpenKeychain/src/main/res/raw-tr/help_about.html deleted file mode 100644 index 9933e24a9..000000000 --- a/OpenKeychain/src/main/res/raw-tr/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain Android için bir OpenPGP implementasyonudur.

-

Lisans: GPLv3+

- -

Geliştiriciler

- -

Kütüphaneler

- - - diff --git a/OpenKeychain/src/main/res/raw-tr/help_changelog.html b/OpenKeychain/src/main/res/raw-tr/help_changelog.html deleted file mode 100644 index cb5cdaf36..000000000 --- a/OpenKeychain/src/main/res/raw-tr/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-tr/help_start.html b/OpenKeychain/src/main/res/raw-tr/help_start.html deleted file mode 100644 index 868c2bbcb..000000000 --- a/OpenKeychain/src/main/res/raw-tr/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

OpenKeychain'de bir bug buldum!

-

Lütfen bulduğunuz hataları OpenKeychain sorun izleyici kullanarak rapor edin.

- -

Katkı

-

OpenKeychain'i geliştirmede bize kod yardımı yapmak istiyorsan Github üzerindeki küçük kılavuzumuzu takip et.

- -

Çeviriler

-

OpenKeychain'in tercüme edilmesine yardım et! Herkes katılabilir: OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-uk/help_about.html b/OpenKeychain/src/main/res/raw-uk/help_about.html deleted file mode 100644 index a9a181525..000000000 --- a/OpenKeychain/src/main/res/raw-uk/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain імплементація OpenPGP для Андроїду.

-

Ліцензія: GPLv3+

- -

Розробники

- -

Бібліотеки

- - - diff --git a/OpenKeychain/src/main/res/raw-uk/help_changelog.html b/OpenKeychain/src/main/res/raw-uk/help_changelog.html deleted file mode 100644 index 0cb7d5210..000000000 --- a/OpenKeychain/src/main/res/raw-uk/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-uk/help_start.html b/OpenKeychain/src/main/res/raw-uk/help_start.html deleted file mode 100644 index 5b336ed99..000000000 --- a/OpenKeychain/src/main/res/raw-uk/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

Я знайшов помилку в OpenPGP Keychain!

-

Будь ласка, повідомте про ваду за допомогою відстежувача проблем OpenPGP Keychain.

- -

Внесок

-

Якщо ви хочете допомогти нам у розробці OpenPGP Keychain через редагування коду програми підпишіться на наш невеличкий посібник у Github.

- -

Переклади

-

Допоможіть перекласти OpenPGP Keychain! Кожний може взяти участь на OpenPGP Keychain на Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw-zh-rTW/help_about.html b/OpenKeychain/src/main/res/raw-zh-rTW/help_about.html deleted file mode 100644 index 0aaebdae3..000000000 --- a/OpenKeychain/src/main/res/raw-zh-rTW/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain是一個Android的OpenPGP應用。

-

授權: GPLv3+

- -

銘謝

- -

函式庫

- - - diff --git a/OpenKeychain/src/main/res/raw-zh-rTW/help_changelog.html b/OpenKeychain/src/main/res/raw-zh-rTW/help_changelog.html deleted file mode 100644 index bf28ea2e0..000000000 --- a/OpenKeychain/src/main/res/raw-zh-rTW/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-zh-rTW/help_start.html b/OpenKeychain/src/main/res/raw-zh-rTW/help_start.html deleted file mode 100644 index 6ba9afe7a..000000000 --- a/OpenKeychain/src/main/res/raw-zh-rTW/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

我在OpenKeychain發現問題!

-

請通過OpenKeychain問題追蹤回報問題。

- -

發佈

-

如果你願意發佈原始碼協助我們開發,請參考我們Github上的發佈指南

- -

翻譯

-

請協助翻譯OpenKeychain!每個人都可以在OpenKeychain on Transifex自由參與。

- - - diff --git a/OpenKeychain/src/main/res/raw-zh/help_about.html b/OpenKeychain/src/main/res/raw-zh/help_about.html deleted file mode 100644 index 9fa512604..000000000 --- a/OpenKeychain/src/main/res/raw-zh/help_about.html +++ /dev/null @@ -1,61 +0,0 @@ - - - -

我们的网站

-

OpenKeychain是一个符合 OpenPGP标准的安装应用程序

-

授权:GPLv3+

- -

开发者们

- -

函式庫

- - - diff --git a/OpenKeychain/src/main/res/raw-zh/help_changelog.html b/OpenKeychain/src/main/res/raw-zh/help_changelog.html deleted file mode 100644 index af25ad08e..000000000 --- a/OpenKeychain/src/main/res/raw-zh/help_changelog.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - -

3.1.2

- -

3.1.1

- -

3.1

- -

3.0.1

- -

版本:3.0

- -

2.9.2

- -

2.9.1

- -

2.9

- -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- -

2.6.1

- -

2.6

- -

2.5

- -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- -

2.3.1

- -

2.3

- -

2.2

- -

2.1.1

- -

2.1

- -

2.0

- -

1.0.8

- -

1.0.7

- -

1.0.6

- -

1.0.5

- -

1.0.4

- -

1.0.3

- -

1.0.2

- -

1.0.1

- -

1.0.0

- - - diff --git a/OpenKeychain/src/main/res/raw-zh/help_start.html b/OpenKeychain/src/main/res/raw-zh/help_start.html deleted file mode 100644 index cf1b84941..000000000 --- a/OpenKeychain/src/main/res/raw-zh/help_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
-

我在OpenKeychain發現問題!

-

請利用 OpenKeychain 項目回報系統回報問題。

- -

發布

-

帮助我们开发 Github.

- -

翻译

-

帮助翻译 OpenKeychain。 OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw/help_about.html b/OpenKeychain/src/main/res/raw/help_about.html deleted file mode 100644 index 6c034cc21..000000000 --- a/OpenKeychain/src/main/res/raw/help_about.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

License: GPLv3+

- -

Developers

- - -

Libraries

- - - diff --git a/OpenKeychain/src/main/res/raw/help_about.md b/OpenKeychain/src/main/res/raw/help_about.md new file mode 100644 index 000000000..df2429c6a --- /dev/null +++ b/OpenKeychain/src/main/res/raw/help_about.md @@ -0,0 +1,45 @@ + +[http://www.openkeychain.org](http://www.openkeychain.org) + +[OpenKeychain](http://www.openkeychain.org) is an OpenPGP implementation for Android. + +License: GPLv3+ + +## Developers + * Dominik Schürmann (Maintainer) + * Art O Cathain + * Ash Hughes + * Brian C. Barnes + * Bahtiar 'kalkin' Gadimov + * Daniel Albert + * Daniel Hammann + * Daniel Haß + * Greg Witczak + * 'mar-v-in' + * Markus Doits + * Miroojin Bakshi + * Nikhil Peter Raj + * Paul Sarbinowski + * 'Senecaso' + * Signe Rüsch + * Sreeram Boyapati + * Thialfihar (APG 1.x) + * Tim Bray + * Vincent Breitmoser + +## Libraries + * [SpongyCastle](http://rtyley.github.com/spongycastle/) (MIT X11 License) + * [SafeSlinger Exchange library](https://github.com/SafeSlingerProject/exchange-android) (MIT License) + * [Android Support Libraries](http://developer.android.com/tools/support-library/index.html) (Apache License v2) + * [KeybaseLib](https://github.com/timbray/KeybaseLib) (Apache License v2) + * [TokenAutoComplete](https://github.com/splitwise/TokenAutoComplete) (Apache License v2) + * [MiniDNS](https://github.com/rtreffer/minidns) (Apache License v2) + * [StickyListHeaders](https://github.com/emilsjolander/StickyListHeaders) (Apache License v2) + * [ZXing](https://github.com/zxing/zxing) (Apache License v2) + * [ZXing Android Minimal](https://github.com/journeyapps/zxing-android-embedded) (Apache License v2) + * [PagerSlidingTabStrip](https://github.com/jpardogo/PagerSlidingTabStrip) (Material Design) (Apache License v2) + * [MaterialNavigationDrawer](https://github.com/neokree/MaterialNavigationDrawer) (Apache License v2) + * [Snackbar](https://github.com/nispok/snackbar) (MIT License) + * [FloatingActionButton](https://github.com/futuresimple/android-floating-action-button) (Apache License v2) + * [HtmlTextView](https://github.com/dschuermann/html-textview) (Apache License v2) + * [Markdown4J](https://github.com/jdcasey/markdown4j) (Apache License v2) diff --git a/OpenKeychain/src/main/res/raw/help_certification.html b/OpenKeychain/src/main/res/raw/help_certification.html deleted file mode 100644 index d4aff1ad7..000000000 --- a/OpenKeychain/src/main/res/raw/help_certification.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -

Key Confirmation

-Without confirmation, you cannot be sure if a key really corresponds to a specific person. -The most simplest way to confirm a key is by scanning the QR Code or exchanging it via NFC. -To confirm keys between more than two persons, we suggest to use the key exchange method available for your keys. - -

Key Status

-


Confirmed: You have already confirmed this key, e.g., by scanning the QR Code. -

Unconfirmed: This key has not been confirmed yet. You cannot be sure if the key really corresponds to a specific person. -

Expired: This key is no longer valid. Only the owner can extend its validity. -

Revoked: This key is no longer valid. It has been revoked by its owner.

- -

Advanced Information

-

A "key confirmation" in OpenKeychain is implemented by creating a certification according to the OpenPGP standard. -This certification is a "generic certification (0x10)" described in the standard by: -"The issuer of this certification does not make any particular assertion as to how well the certifier has checked that the owner of the key is in fact the person described by the User ID."

- -

Traditionally, certifications (also with higher certification levels, such as "positive certifications" (0x13)) are organized in OpenPGP's Web of Trust. -Our model of key confirmation is a much simpler concept to avoid common usability problems related to this Web of Trust. -We assume that keys are verified only to a certain degree that is still usable enough to be executed "on the go". -We also do not implement (potentially transitive) trust signatures or an ownertrust database like in GnuPG. -Furthermore, keys which contain at least one user ID certified by a trusted key will be marked as "confirmed" in the key listings.

- - - diff --git a/OpenKeychain/src/main/res/raw/help_certification.md b/OpenKeychain/src/main/res/raw/help_certification.md new file mode 100644 index 000000000..8da27e8e0 --- /dev/null +++ b/OpenKeychain/src/main/res/raw/help_certification.md @@ -0,0 +1,27 @@ + +## Key Confirmation +Without confirmation, you cannot be sure if a key really corresponds to a specific person. +The most simplest way to confirm a key is by scanning the QR Code or exchanging it via NFC. +To confirm keys between more than two persons, we suggest to use the key exchange method available for your keys. + +## Key Status + + +Confirmed: You have already confirmed this key, e.g., by scanning the QR Code. + +Unconfirmed: This key has not been confirmed yet. You cannot be sure if the key really corresponds to a specific person. + +Expired: This key is no longer valid. Only the owner can extend its validity. + +Revoked: This key is no longer valid. It has been revoked by its owner. + +## Advanced Information +A "key confirmation" in OpenKeychain is implemented by creating a certification according to the OpenPGP standard. +This certification is a ["generic certification (0x10)"](http://tools.ietf.org/html/rfc4880#section-5.2.1) described in the standard by: +"The issuer of this certification does not make any particular assertion as to how well the certifier has checked that the owner of the key is in fact the person described by the User ID." + +Traditionally, certifications (also with higher certification levels, such as "positive certifications" (0x13)) are organized in OpenPGP's Web of Trust. +Our model of key confirmation is a much simpler concept to avoid common usability problems related to this Web of Trust. +We assume that keys are verified only to a certain degree that is still usable enough to be executed "on the go". +We also do not implement (potentially transitive) trust signatures or an ownertrust database like in GnuPG. +Furthermore, keys which contain at least one user ID certified by a trusted key will be marked as "confirmed" in the key listings. \ No newline at end of file diff --git a/OpenKeychain/src/main/res/raw/help_changelog.html b/OpenKeychain/src/main/res/raw/help_changelog.html deleted file mode 100644 index dcc626feb..000000000 --- a/OpenKeychain/src/main/res/raw/help_changelog.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - -

3.2beta2

- - -

3.1.2

- - -

3.1.1

- - -

3.1

- - -

3.0.1

- - -

3.0

- - -

2.9.2

- - -

2.9.1

- - -

2.9

- - -

2.8

- -

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

- -

2.7

- - -

2.6.1

- - -

2.6

- - -

2.5

- - -

2.4

-

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! -Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): -Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

- - -

2.3.1

- - -

2.3

- - -

2.2

- - -

2.1.1

- - -

2.1

- - -

2.0

- - -

1.0.8

- - -

1.0.7

- - -

1.0.6

- - -

1.0.5

- - -

1.0.4

- - -

1.0.3

- - -

1.0.2

- - -

1.0.1

- - -

1.0.0

- - - \ No newline at end of file diff --git a/OpenKeychain/src/main/res/raw/help_changelog.md b/OpenKeychain/src/main/res/raw/help_changelog.md new file mode 100644 index 000000000..b6b992866 --- /dev/null +++ b/OpenKeychain/src/main/res/raw/help_changelog.md @@ -0,0 +1,268 @@ + +## 3.2beta2 + + * Material design + * Integration of QR Scanner (New permissions required) + * Improved key creation wizard + * Fix missing contacts after sync + * Requires Android 4 + * Redesigned key screen + * Simplify crypto preferences, better selection of secure ciphers + * API: Detached signatures, free selection of signing key,... + * Fix: Some valid keys were shown revoked or expired + * Don't accept signatures by expired or revoked subkeys + * Keybase.io support in advanced view + + +## 3.1.2 + + * Fix key export to files (now for real) + + +## 3.1.1 + + * Fix key export to files (they were written partially) + * Fix crash on Android 2.3 + + +## 3.1 + + * Fix crash on Android 5 + * New certify screen + * Secure Exchange directly from key list (SafeSlinger library) + * New QR Code program flow + * Redesigned decrypt screen + * New icon usage and colors + * Fix import of secret keys from Symantec Encryption Desktop + * Subkey IDs on Yubikeys are now checked correctly + + +## 3.0.1 + + * Better handling of large key imports + * Improved subkey selection + + +## 3.0 + + * Full support for Yubikey signature generation and decryption! + * Propose installable compatible apps in apps list + * New design for decryption screens + * Many fixes for key import, also fixes stripped keys + * Honor and display key authenticate flags + * User interface to generate custom keys + * Fixing user id revocation certificates + * New cloud search (searches over traditional keyservers and keybase.io) + * Support for stripping keys inside OpenKeychain + + +## 2.9.2 + + * Fix keys broken in 2.9.1 + * Yubikey decryption now working via API + + +## 2.9.1 + + * Split encrypt screen into two + * Fix key flags handling (now supporting Mailvelope 0.7 keys) + * Improved passphrase handling + * Key sharing via SafeSlinger + * Yubikey: preference to allow other PINs, currently only signing via the OpenPGP API works, not inside of OpenKeychain + * Fix usage of stripped keys + * SHA256 as default for compatibility + * Intent API has changed, see https://github.com/open-keychain/open-keychain/wiki/Intent-API + * OpenPGP API now handles revoked/expired keys and returns all user ids + + +## 2.9 + + * Fixing crashes introduced in v2.8 + * Experimental ECC support + * Experimental Yubikey support (signing-only with imported keys) + + +## 2.8 + + * So many bugs have been fixed in this release that we focus on the main new features + * Key edit: awesome new design, key revocation + * Key import: awesome new design, secure keyserver connections via hkps, keyserver resolving via DNS SRV records + * New first time screen + * New key creation screen: autocompletion of name and email based on your personal Android accounts + * File encryption: awesome new design, support for encrypting multiple files + * New icons to show status of key (by Brennan Novak) + * Important bug fix: Importing of large key collections from a file is now possible + * Notification showing cached passphrases + * Keys are connected to Android's contacts + +

This release wouldn't be possible without the work of Vincent Breitmoser (GSoC 2014), mar-v-in (GSoC 2014), Daniel Albert, Art O Cathain, Daniel Haß, Tim Bray, Thialfihar

+ +## 2.7 + + * Purple! (Dominik, Vincent) + * New key view design (Dominik, Vincent) + * New flat Android buttons (Dominik, Vincent) + * API fixes (Dominik) + * Keybase.io import (Tim Bray) + + +## 2.6.1 + + * Some fixes for regression bugs + + +## 2.6 + + * Key certifications (thanks to Vincent Breitmoser) + * Support for GnuPG partial secret keys (thanks to Vincent Breitmoser) + * New design for signature verification + * Custom key length (thanks to Greg Witczak) + * Fix share-functionality from other apps + + +## 2.5 + + * Fix decryption of symmetric OpenPGP messages/files + * Refactored key edit screen (thanks to Ash Hughes) + * New modern design for encrypt/decrypt screens + * OpenPGP API version 3 (multiple api accounts, internal fixes, key lookup) + + +## 2.4 +

Thanks to all applicants of Google Summer of Code 2014 who made this release feature rich and bug free! +Besides several small patches, a notable number of patches are made by the following people (in alphabetical order): +Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

+ + * New unified key list + * Colorized key fingerprint + * Support for keyserver ports + * Deactivate possibility to generate weak keys + * Much more internal work on the API + * Certify user ids + * Keyserver query based on machine-readable output + * Lock navigation drawer on tablets + * Suggestions for emails on creation of keys + * Search in public key lists + * And much more improvements and fixes… + + +## 2.3.1 + + * Hotfix for crash when upgrading from old versions + + +## 2.3 + + * Remove unnecessary export of public keys when exporting secret key (thanks to Ash Hughes) + * Fix setting expiry dates on keys (thanks to Ash Hughes) + * More internal fixes when editing keys (thanks to Ash Hughes) + * Querying keyservers directly from the import screen + * Fix layout and dialog style on Android 2.2-3.0 + * Fix crash on keys with empty user ids + * Fix crash and empty lists when coming back from signing screen + * Bouncy Castle (cryptography library) updated from 1.47 to 1.50 and build from source + * Fix upload of key from signing screen + + +## 2.2 + + * New design with navigation drawer + * New public key list design + * New public key view + * Bug fixes for importing of keys + * Key cross-certification (thanks to Ash Hughes) + * Handle UTF-8 passwords properly (thanks to Ash Hughes) + * First version with new languages (thanks to the contributors on Transifex) + * Sharing of keys via QR Codes fixed and improved + * Package signature verification for API + + +## 2.1.1 + + * API Updates, preparation for K-9 Mail integration + + +## 2.1 + + * Lots of bug fixes + * New API for developers + * PRNG bug fix by Google + + +## 2.0 + + * Complete redesign + * Share public keys via QR codes, NFC beam + * Sign keys + * Upload keys to server + * Fixes import issues + * New AIDL API + + +## 1.0.8 + + * Basic keyserver support + * App2sd + * More choices for passphrase cache: 1, 2, 4, 8, hours + * Translations: Norwegian (thanks, Sander Danielsen), Chinese (thanks, Zhang Fredrick) + * Bugfixes + * Optimizations + + +## 1.0.7 + + * Fixed problem with signature verification of texts with trailing newline + * More options for passphrase cache time to live (20, 40, 60 mins) + + +## 1.0.6 + + * Account adding crash on Froyo fixed + * Secure file deletion + * Option to delete key file after import + * Stream encryption/decryption (gallery, etc.) + * New options (language, force v3 signatures) + * Interface changes + * Bugfixes + + +## 1.0.5 + + * German and Italian translation + * Much smaller package, due to reduced BC sources + * New preferences GUI + * Layout adjustment for localization + * Signature bugfix + + +## 1.0.4 + + * Fixed another crash caused by some SDK bug with query builder + + +## 1.0.3 + + * Fixed crashes during encryption/signing and possibly key export + + +## 1.0.2 + + * Filterable key lists + * Smarter pre-selection of encryption keys + * New Intent handling for VIEW and SEND, allows files to be encrypted/decrypted out of file managers + * Fixes and additional features (key preselection) for K-9 Mail, new beta build available + + +## 1.0.1 + + * GMail account listing was broken in 1.0.0, fixed again + + +## 1.0.0 + + * K-9 Mail integration, APG supporting beta build of K-9 Mail + * Support of more file managers (including ASTRO) + * Slovenian translation + * New database, much faster, less memory usage + * Defined Intents and content provider for other apps + * Bugfixes diff --git a/OpenKeychain/src/main/res/raw/help_faq.md b/OpenKeychain/src/main/res/raw/help_faq.md new file mode 100644 index 000000000..a3b49cd0e --- /dev/null +++ b/OpenKeychain/src/main/res/raw/help_faq.md @@ -0,0 +1,126 @@ +[comment]: <> (NOTE: Please put every sentence in its own line, Transifex puts every line in its own translation field!) + +# Frequently Asked Questions + +## Are my secret keys safe on my mobile device? + +This is a very common question, and it's not an easy one. In the end it comes down to how much you trust your mobile device. +The real question usually isn't, "how safe are they", but rather "are they less safe than on my laptop"? The answer depends on three factors: + + 1. Do you trust the hardware? Obviously, there are no guarantees that the vendor of your phone hardware didn't add some kind of backdoor. + Then again, the same applies to your laptop's hardware, so it's about even. + 2. How easily can the device be stolen? This depends a lot on how careful you are, but this too is probably about even with your laptop. + 3. Do you trust the software? The Android operating system actually offers a lot more in the way of security between applications than desktop operating systems. + No app without root privileges besides OpenKeychain can ever access the keys stored in OpenKeychain's database. + By comparison, any program you run on your computer can just upload your gnupg keyring, if those files belong to the same user. + As long as Android as a platform is trustworthy, your keys are safe from malware apps. + +In conclusion, we believe that secret keys are not notably less safe on your mobile than they would be on your laptop. +If your security requirements are high enough that you don't keep your keys on your laptop, you probably shouldn't put them on your mobile either. +Otherwise, they should be fine. + +## What is the best way to transfer my own key to OpenKeychain? + +Ideally, put the key on an sd card, import, then erase from the sd card. +If your mobile does not have an sd card reader, read on. + +Our recommended method is to transfer the exported key "through the cloud", but with a super-safe passphrase which is only used during the transfer. +Your key is **encrypted with its passphrase**, the only visible parts in the exported file are your public key. + +So is this really safe? The answer is: Yes, IF you use a good passphrase. +If your passphrase is as difficult to guess as your key, an attacker will gain no useful information from your exported key file. +To give you a (very!) rough impression, the passphrase "J0hnnnyy1995" is about a third as difficult to guess as a 2048 bit RSA key, while "%aBbaf11!o9$pP2,o9/=" is about the same. + + 1. Make up a long and complex passphrase to use during the transfer. + It should be at least 20 characters (more is better, although more than 50 is overkill), with varying capitalization, many special characters and *no words from the dictionary*. + Yes, it is annoying to type, but you'll only use it once! + You can also write it down, but make sure to destroy the note afterwards, and make sure it is never transferred over the internet! + 2. Change the passphrase of your key to that one, then export + 3. Transfer the key file to your mobile by whatever way is most convenient to you (Mail to yourself, PushBullet, Dropbox, ...) + 4. Import the key with OpenKeychain, then delete the file from your storage. + 5. **Change the passphrase** to an easier one which is still safe, but more reasonable to type. + +## Should I certify a key without manually comparing fingerprints? + +To certify someone's key, you should make sure that it's really that same key the other person wants you to certify with their name on it. + +Since keys are usually obtained from a keyserver, it is necessary to double-check that the keyserver gave you the correct key. +This is traditionally done by manually comparing the key's entire fingerprint, character by character. + +However, scanning a QR code, receiving a key via NFC, or exchanging keys via SafeSlinger all have that same check already built-in, so as long as you trust the method used for key exchange, there is no reason to check the fingerprint again manually. + +## Can I mark public keys as trusted without certifying them with my own key? + +No. You can, however, simply create a new key just for certification, which will essentially be the same thing. + + +# Avanced Questions + +## Why is OpenKeychain's database not password protected? + +Your keys are already encrypted with their passphrase - that's the reason you have to input it for every crypto operation. +There is no point in encrypting those keys again with another password, so password protecting the entire database would only protect the list of public keys. +If this is important to you, consider using [full disk encryption](https://source.android.com/devices/tech/security/encryption/). + +## How can I specify connection port for Keyserver? + +Add a new Keyserver (or modify existing one) by going to Preferences -> General -> Keyservers. Enter the port number after the Keyserver address and preceded it by a colon. +For example, "p80.pool.sks-keyservers.net:80" (without quotation marks) means that server "p80.pool.sks-keyservers.net" is working on a port 80. +Default connection port is 11371 and it doesn't need to be specified. + +## I have more than one subkey capable of singing. Which one is selected when signing with this OpenPGP key? + +OpenKeychain assumes that OpenPGP keys hold one usable signing subkey only and selects the first non-revoked non-expired non-stripped one it finds in the unordered list of subkeys. +We consider having more than one valid signing subkey an advanced usecase. You can either strip subkeys that should not be used using OpenKeychain's edit key screen or explicitly select the right subkeys when exporting from gpg with ``gpg --export-secret-subkeys``. + +## How to prepare a YubiKey NEO for OpenKeychain? + + 1. [Buy a YubiKey NEO](http://www.yubico.com/support/resellers/) + 2. [Prepare it for usage with OpenPGP using GnuPG and Yubico's tools](http://www.yubico.com/2012/12/yubikey-neo-openpgp/). + 3. Export the keypair from GnuPG with + ``` + gpg -a --output gpg-secret-key.asc --export-secret-keys + ``` + and transfer the file to your Android device. + 4. In OpenKeychain, select "Import from file", select the file and import the keypair. It will be automatically detect that this is a keypair that works with a YubiKey only. + +You can now use your YubiKey with OpenKeychain and compatible [apps](http://www.openkeychain.org/apps/). A screen will appear when you need to hold your YubiKey against the NFC antenna. + +## How to use a different YubiKey PIN? + 1. Deselect "Use default YubiKey PIN" in OpenKeychain's advanced settings screen + 2. Follow [https://developers.yubico.com/ykneo-openpgp/CardEdit.html](https://developers.yubico.com/ykneo-openpgp/CardEdit.html) + +## How to import an existing key onto the YubiKey? +Follow [https://developers.yubico.com/ykneo-openpgp/KeyImport.html](https://developers.yubico.com/ykneo-openpgp/KeyImport.html) + +## Advanced YubiKey Infos + * [https://developers.yubico.com/ykneo-openpgp](https://developers.yubico.com/ykneo-openpgp) + * [https://github.com/Yubico/ykneo-openpgp](https://github.com/Yubico/ykneo-openpgp) + +## Where can I find more information about OpenKeychain's security model and design decisions? + +Head over to our [Wiki](https://github.com/open-keychain/open-keychain/wiki). + + + +# Known Issues + +### Importing secret key fails + +Before posting a new bug report, please check if you are using gpg prior to 2.1.0 and changed the expiry date before exporting the secret key. + +Changing the expiry date of a key in gpg prior to version 2.1.0 breaks the secret key in a way which emerges only on export. +It's not a problem with OpenKeychain, we correctly reject the key because its self-certificates are either invalid, or have wrong flags. + +This issue has been reported before ([#996](https://github.com/open-keychain/open-keychain/issues/996), [#1003](https://github.com/open-keychain/open-keychain/issues/1003), [#1026](https://github.com/open-keychain/open-keychain/issues/1026)), and can be assumed to affect a large number of users. +The bug in gpg has been fixed in gpg 2.1.0, but that version is as of now [only deployed in debian experimental](https://packages.debian.org/search?keywords=gnupg2), not even sid. +Another [bug report](https://bugs.g10code.com/gnupg/issue1817) has been opened to backport the fix, so we hope this gets fixed soonish. + +## A wrong primary user id is shown when searching on a Keyserver + +Unfortunately, this is a bug in the SKS Keyserver software. Its machine-readable output returns the user ids in an arbitrary order. Read the [related bug](https://bitbucket.org/skskeyserver/sks-keyserver/issue/28/primary-uid-in-machine-readable-index) report for more information. + +### Not working with AOSP Mail + +For now, OpenKeychain will not support AOSP Mail due to bugs in AOSP were we cannot work around ([#290](https://github.com/open-keychain/open-keychain/issues/290)). + diff --git a/OpenKeychain/src/main/res/raw/help_start.html b/OpenKeychain/src/main/res/raw/help_start.html deleted file mode 100644 index 0a30cbd92..000000000 --- a/OpenKeychain/src/main/res/raw/help_start.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - -

How do I activate OpenKeychain in K-9 Mail?

-

To use OpenKeychain with K-9 Mail, you want to follow these steps:

-
    -
  1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with.
  2. -
  3. Select "Account settings" and scroll to the very bottom and click "Cryptography".
  4. -
  5. Click on "OpenPGP Provider" and select OpenKeychain from the list.
  6. -
- -

I found a bug in OpenKeychain!

-

Please report the bug using the issue tracker of OpenKeychain.

- -

Contribute

-

If you want to help us developing OpenKeychain by contributing code follow our small guide on Github.

- -

Translations

-

Help translating OpenKeychain! Everybody can participate at OpenKeychain on Transifex.

- - - diff --git a/OpenKeychain/src/main/res/raw/help_start.md b/OpenKeychain/src/main/res/raw/help_start.md new file mode 100644 index 000000000..36b9dfa33 --- /dev/null +++ b/OpenKeychain/src/main/res/raw/help_start.md @@ -0,0 +1,15 @@ + +## How do I activate OpenKeychain in K-9 Mail? +To use OpenKeychain with K-9 Mail, you want to follow these steps: + 1. Open K-9 Mail and long-tap on the account you want to use OpenKeychain with. + 2. Select "Account settings" and scroll to the very bottom and click "Cryptography". + 3. Click on "OpenPGP Provider" and select OpenKeychain from the list. + +## I found a bug in OpenKeychain! +Please report the bug using the [issue tracker of OpenKeychain](https://github.com/openpgp-keychain/openpgp-keychain/issues). + +## Contribute +If you want to help us developing OpenKeychain by contributing code [follow our small guide on Github](https://github.com/openpgp-keychain/openpgp-keychain#contribute-code). + +## Translations +Help translating OpenKeychain! Everybody can participate at [OpenKeychain on Transifex](https://www.transifex.com/projects/p/openpgp-keychain/). diff --git a/extern/openpgp-api-lib b/extern/openpgp-api-lib index 70a17dcbe..9abb91d3a 160000 --- a/extern/openpgp-api-lib +++ b/extern/openpgp-api-lib @@ -1 +1 @@ -Subproject commit 70a17dcbeb5d8de095f09a7ce756543deff0165a +Subproject commit 9abb91d3a69964a547f26aa1d56de233e75c4410