From dfd5aa65a54941261b7a2ee19fedd99ee0e9607b Mon Sep 17 00:00:00 2001 From: Tim Bray Date: Thu, 22 May 2014 16:56:28 -0700 Subject: Add Log.d for QueryFailedException --- .../keychain/keyimport/HkpKeyserver.java | 10 ++++----- .../keychain/keyimport/KeybaseKeyserver.java | 5 +++-- .../keychain/keyimport/Keyserver.java | 13 +++++++----- .../keychain/ui/ImportKeysListFragment.java | 24 +++++++--------------- .../ui/adapter/ImportKeysListKeybaseLoader.java | 6 +----- .../ui/adapter/ImportKeysListServerLoader.java | 4 +--- OpenKeychain/src/main/res/values/strings.xml | 6 +++--- 7 files changed, 28 insertions(+), 40 deletions(-) (limited to 'OpenKeychain') diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java index f14978b39..202b750e4 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java @@ -200,12 +200,12 @@ public class HkpKeyserver extends Keyserver { } @Override - public ArrayList search(String query) throws QueryException, TooManyResponses, - InsufficientQuery { + public ArrayList search(String query) throws QueryException, + QueryNeedsRepairException { ArrayList results = new ArrayList(); if (query.length() < 3) { - throw new InsufficientQuery(); + throw new QueryTooShortException(); } String encodedQuery; @@ -226,9 +226,9 @@ public class HkpKeyserver extends Keyserver { if (e.getData().toLowerCase(Locale.US).contains("no keys found")) { return results; } else if (e.getData().toLowerCase(Locale.US).contains("too many")) { - throw new TooManyResponses(); + throw new TooManyResponsesException(); } else if (e.getData().toLowerCase(Locale.US).contains("insufficient")) { - throw new InsufficientQuery(); + throw new QueryTooShortException(); } } throw new QueryException("querying server(s) for '" + mHost + "' failed"); diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java index 5b66b50c5..ec4b61671 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java @@ -34,8 +34,8 @@ public class KeybaseKeyserver extends Keyserver { private String mQuery; @Override - public ArrayList search(String query) throws QueryException, TooManyResponses, - InsufficientQuery { + public ArrayList search(String query) throws QueryException, + QueryNeedsRepairException { ArrayList results = new ArrayList(); if (query.startsWith("0x")) { @@ -84,6 +84,7 @@ public class KeybaseKeyserver extends Keyserver { } private ImportKeysListEntry makeEntry(JSONObject match) throws QueryException, JSONException { + final ImportKeysListEntry entry = new ImportKeysListEntry(); entry.setQuery(mQuery); diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java index 19591eda8..7313a159b 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java @@ -32,20 +32,23 @@ public abstract class Keyserver { } } - public static class TooManyResponses extends Exception { + public static class QueryNeedsRepairException extends Exception { + private static final long serialVersionUID = 2693768928624654512L; + } + + public static class TooManyResponsesException extends QueryNeedsRepairException { private static final long serialVersionUID = 2703768928624654513L; } - public static class InsufficientQuery extends Exception { - private static final long serialVersionUID = 2703768928624654514L; + public static class QueryTooShortException extends QueryNeedsRepairException { } public static class AddKeyException extends Exception { private static final long serialVersionUID = -507574859137295530L; } - abstract List search(String query) throws QueryException, TooManyResponses, - InsufficientQuery; + abstract List search(String query) throws QueryException, + QueryNeedsRepairException; abstract String get(String keyIdHex) throws QueryException; diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java index e93d717e1..9c05dcc65 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java @@ -273,38 +273,28 @@ public class ImportKeysListFragment extends ListFragment implements break; case LOADER_ID_SERVER_QUERY: + case LOADER_ID_KEYBASE: + // TODO: possibly fine-tune message building for these two cases if (error == null) { AppMsg.makeText( getActivity(), getResources().getQuantityString(R.plurals.keys_found, mAdapter.getCount(), mAdapter.getCount()), AppMsg.STYLE_INFO ).show(); - } else if (error instanceof Keyserver.InsufficientQuery) { + } else if (error instanceof Keyserver.QueryTooShortException) { AppMsg.makeText(getActivity(), R.string.error_keyserver_insufficient_query, AppMsg.STYLE_ALERT).show(); } else if (error instanceof Keyserver.QueryException) { - AppMsg.makeText(getActivity(), R.string.error_keyserver_query, - AppMsg.STYLE_ALERT).show(); - } else if (error instanceof Keyserver.TooManyResponses) { + String alert = getActivity().getString(R.string.error_searching_keys); + alert = alert + " (" + error.getLocalizedMessage() + ")"; + AppMsg.makeText(getActivity(), alert, AppMsg.STYLE_ALERT).show(); + } else if (error instanceof Keyserver.TooManyResponsesException) { AppMsg.makeText(getActivity(), R.string.error_keyserver_too_many_responses, AppMsg.STYLE_ALERT).show(); } break; - case LOADER_ID_KEYBASE: - - if (error == null) { - AppMsg.makeText( - getActivity(), getResources().getQuantityString(R.plurals.keys_found, - mAdapter.getCount(), mAdapter.getCount()), - AppMsg.STYLE_INFO - ).show(); - } else if (error instanceof Keyserver.QueryException) { - AppMsg.makeText(getActivity(), R.string.error_keyserver_query, - AppMsg.STYLE_ALERT).show(); - } - default: break; } diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java index 0fdc019d0..3f15e64f0 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java @@ -94,14 +94,10 @@ public class ImportKeysListKeybaseLoader mEntryList.addAll(searchResult); mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, null); - } catch (Keyserver.InsufficientQuery e) { - mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } catch (Keyserver.QueryException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); - } catch (Keyserver.TooManyResponses e) { + } catch (Keyserver.QueryNeedsRepairException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } - } - } diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java index 1b8d7d30e..4b2af14a9 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java @@ -116,11 +116,9 @@ public class ImportKeysListServerLoader mEntryList.addAll(searchResult); } mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, null); - } catch (Keyserver.InsufficientQuery e) { - mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } catch (Keyserver.QueryException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); - } catch (Keyserver.TooManyResponses e) { + } catch (Keyserver.QueryNeedsRepairException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } } diff --git a/OpenKeychain/src/main/res/values/strings.xml b/OpenKeychain/src/main/res/values/strings.xml index 4d39b6273..1ba8a6d2d 100644 --- a/OpenKeychain/src/main/res/values/strings.xml +++ b/OpenKeychain/src/main/res/values/strings.xml @@ -295,9 +295,9 @@ You need Android 4.1 to use Android\'s NFC Beam feature! NFC is not available on your device! Nothing to import! - Insufficient server query - Querying keyserver failed - Too many possible keys. Please refine your query! + Key search query too short + Unrecoverable error searching for keys at server + Key search query returned too many candidates; Please refine query File has no content A generic error occurred, please create a new bug report for OpenKeychain. -- cgit v1.2.3 From 1ff3962acc755e44a011dd9ab9ced4d3593d1fb9 Mon Sep 17 00:00:00 2001 From: Tim Bray Date: Thu, 22 May 2014 17:04:31 -0700 Subject: Add Log.d for QueryFailedException --- .../java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenKeychain') diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java index 9c05dcc65..d297d8b3f 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java @@ -292,6 +292,8 @@ public class ImportKeysListFragment extends ListFragment implements } else if (error instanceof Keyserver.TooManyResponsesException) { AppMsg.makeText(getActivity(), R.string.error_keyserver_too_many_responses, AppMsg.STYLE_ALERT).show(); + } else if (error instanceof Keyserver.QueryException) { + Log.d(Constants.TAG, "Key server query failed: " + error.getLocalizedMessage()); } break; -- cgit v1.2.3 From 58da3d12b0a59a32054478c53e6c5a219b71f61f Mon Sep 17 00:00:00 2001 From: Tim Bray Date: Fri, 23 May 2014 09:42:32 -0700 Subject: Finished cleaning up rebase conflicts post Keyserver exception refactor --- .../keychain/keyimport/HkpKeyserver.java | 14 ++++++------- .../keychain/keyimport/KeybaseKeyserver.java | 24 +++++++++++----------- .../keychain/keyimport/Keyserver.java | 9 ++++---- .../keychain/ui/ImportKeysListFragment.java | 14 ++++++------- .../ui/adapter/ImportKeysListKeybaseLoader.java | 2 +- .../ui/adapter/ImportKeysListServerLoader.java | 2 +- 6 files changed, 33 insertions(+), 32 deletions(-) (limited to 'OpenKeychain') diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java index 202b750e4..5969455bd 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/HkpKeyserver.java @@ -166,12 +166,12 @@ public class HkpKeyserver extends Keyserver { mPort = port; } - private String query(String request) throws QueryException, HttpError { + private String query(String request) throws QueryFailedException, HttpError { InetAddress ips[]; try { ips = InetAddress.getAllByName(mHost); } catch (UnknownHostException e) { - throw new QueryException(e.toString()); + throw new QueryFailedException(e.toString()); } for (int i = 0; i < ips.length; ++i) { try { @@ -196,11 +196,11 @@ public class HkpKeyserver extends Keyserver { } } - throw new QueryException("querying server(s) for '" + mHost + "' failed"); + throw new QueryFailedException("querying server(s) for '" + mHost + "' failed"); } @Override - public ArrayList search(String query) throws QueryException, + public ArrayList search(String query) throws QueryFailedException, QueryNeedsRepairException { ArrayList results = new ArrayList(); @@ -231,7 +231,7 @@ public class HkpKeyserver extends Keyserver { throw new QueryTooShortException(); } } - throw new QueryException("querying server(s) for '" + mHost + "' failed"); + throw new QueryFailedException("querying server(s) for '" + mHost + "' failed"); } final Matcher matcher = PUB_KEY_LINE.matcher(data); @@ -287,7 +287,7 @@ public class HkpKeyserver extends Keyserver { } @Override - public String get(String keyIdHex) throws QueryException { + public String get(String keyIdHex) throws QueryFailedException { HttpClient client = new DefaultHttpClient(); try { String query = "http://" + mHost + ":" + mPort + @@ -296,7 +296,7 @@ public class HkpKeyserver extends Keyserver { HttpGet get = new HttpGet(query); HttpResponse response = client.execute(get); if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) { - throw new QueryException("not found"); + throw new QueryFailedException("not found"); } HttpEntity entity = response.getEntity(); diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java index ec4b61671..f9b6abf18 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/KeybaseKeyserver.java @@ -34,7 +34,7 @@ public class KeybaseKeyserver extends Keyserver { private String mQuery; @Override - public ArrayList search(String query) throws QueryException, + public ArrayList search(String query) throws QueryFailedException, QueryNeedsRepairException { ArrayList results = new ArrayList(); @@ -65,13 +65,13 @@ public class KeybaseKeyserver extends Keyserver { } } catch (Exception e) { Log.e(Constants.TAG, "keybase result parsing error", e); - throw new QueryException("Unexpected structure in keybase search result: " + e.getMessage()); + throw new QueryFailedException("Unexpected structure in keybase search result: " + e.getMessage()); } return results; } - private JSONObject getUser(String keybaseId) throws QueryException { + private JSONObject getUser(String keybaseId) throws QueryFailedException { try { return getFromKeybase("_/api/1.0/user/lookup.json?username=", keybaseId); } catch (Exception e) { @@ -79,11 +79,11 @@ public class KeybaseKeyserver extends Keyserver { if (keybaseId != null) { detail = ". Query was for user '" + keybaseId + "'"; } - throw new QueryException(e.getMessage() + detail); + throw new QueryFailedException(e.getMessage() + detail); } } - private ImportKeysListEntry makeEntry(JSONObject match) throws QueryException, JSONException { + private ImportKeysListEntry makeEntry(JSONObject match) throws QueryFailedException, JSONException { final ImportKeysListEntry entry = new ImportKeysListEntry(); entry.setQuery(mQuery); @@ -128,7 +128,7 @@ public class KeybaseKeyserver extends Keyserver { return entry; } - private JSONObject getFromKeybase(String path, String query) throws QueryException { + private JSONObject getFromKeybase(String path, String query) throws QueryFailedException { try { String url = "https://keybase.io/" + path + URLEncoder.encode(query, "utf8"); Log.d(Constants.TAG, "keybase query: " + url); @@ -144,29 +144,29 @@ public class KeybaseKeyserver extends Keyserver { try { JSONObject json = new JSONObject(text); if (JWalk.getInt(json, "status", "code") != 0) { - throw new QueryException("Keybase autocomplete search failed"); + throw new QueryFailedException("Keybase autocomplete search failed"); } return json; } catch (JSONException e) { - throw new QueryException("Keybase.io query returned broken JSON"); + throw new QueryFailedException("Keybase.io query returned broken JSON"); } } else { String message = readAll(conn.getErrorStream(), conn.getContentEncoding()); - throw new QueryException("Keybase.io query error (status=" + response + + throw new QueryFailedException("Keybase.io query error (status=" + response + "): " + message); } } catch (Exception e) { - throw new QueryException("Keybase.io query error"); + throw new QueryFailedException("Keybase.io query error"); } } @Override - public String get(String id) throws QueryException { + public String get(String id) throws QueryFailedException { try { JSONObject user = getUser(id); return JWalk.getString(user, "them", "public_keys", "primary", "bundle"); } catch (Exception e) { - throw new QueryException(e.getMessage()); + throw new QueryFailedException(e.getMessage()); } } diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java index 7313a159b..868f543f0 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/Keyserver.java @@ -24,10 +24,10 @@ import java.io.InputStream; import java.util.List; public abstract class Keyserver { - public static class QueryException extends Exception { + public static class QueryFailedException extends Exception { private static final long serialVersionUID = 2703768928624654512L; - public QueryException(String message) { + public QueryFailedException(String message) { super(message); } } @@ -41,16 +41,17 @@ public abstract class Keyserver { } public static class QueryTooShortException extends QueryNeedsRepairException { + private static final long serialVersionUID = 2703768928624654514L; } public static class AddKeyException extends Exception { private static final long serialVersionUID = -507574859137295530L; } - abstract List search(String query) throws QueryException, + abstract List search(String query) throws QueryFailedException, QueryNeedsRepairException; - abstract String get(String keyIdHex) throws QueryException; + abstract String get(String keyIdHex) throws QueryFailedException; abstract void add(String armoredKey) throws AddKeyException; diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java index d297d8b3f..d9bd9b782 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java @@ -211,7 +211,7 @@ public class ImportKeysListFragment extends ListFragment implements @Override public Loader>> - onCreateLoader(int id, Bundle args) { + onCreateLoader(int id, Bundle args) { switch (id) { case LOADER_ID_BYTES: { InputData inputData = getInputData(mKeyBytes, mDataUri); @@ -285,15 +285,15 @@ public class ImportKeysListFragment extends ListFragment implements } else if (error instanceof Keyserver.QueryTooShortException) { AppMsg.makeText(getActivity(), R.string.error_keyserver_insufficient_query, AppMsg.STYLE_ALERT).show(); - } else if (error instanceof Keyserver.QueryException) { - String alert = getActivity().getString(R.string.error_searching_keys); - alert = alert + " (" + error.getLocalizedMessage() + ")"; - AppMsg.makeText(getActivity(), alert, AppMsg.STYLE_ALERT).show(); } else if (error instanceof Keyserver.TooManyResponsesException) { AppMsg.makeText(getActivity(), R.string.error_keyserver_too_many_responses, AppMsg.STYLE_ALERT).show(); - } else if (error instanceof Keyserver.QueryException) { - Log.d(Constants.TAG, "Key server query failed: " + error.getLocalizedMessage()); + } else if (error instanceof Keyserver.QueryFailedException) { + Log.d(Constants.TAG, + "Unrecoverable keyserver query error: " + error.getLocalizedMessage()); + String alert = getActivity().getString(R.string.error_searching_keys); + alert = alert + " (" + error.getLocalizedMessage() + ")"; + AppMsg.makeText(getActivity(), alert, AppMsg.STYLE_ALERT).show(); } break; diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java index 3f15e64f0..e8c5da5a7 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListKeybaseLoader.java @@ -94,7 +94,7 @@ public class ImportKeysListKeybaseLoader mEntryList.addAll(searchResult); mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, null); - } catch (Keyserver.QueryException e) { + } catch (Keyserver.QueryFailedException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } catch (Keyserver.QueryNeedsRepairException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java index 4b2af14a9..4eb6f158b 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/adapter/ImportKeysListServerLoader.java @@ -116,7 +116,7 @@ public class ImportKeysListServerLoader mEntryList.addAll(searchResult); } mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, null); - } catch (Keyserver.QueryException e) { + } catch (Keyserver.QueryFailedException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); } catch (Keyserver.QueryNeedsRepairException e) { mEntryListWrapper = new AsyncTaskResultWrapper>(mEntryList, e); -- cgit v1.2.3 From 6d1369be56af0d61678d1632fd98f7a4ff41b11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Sat, 31 May 2014 20:49:56 +0200 Subject: Pull from transifex --- OpenKeychain/src/main/res/raw-ar/help_about.html | 50 +++ .../src/main/res/raw-ar/help_changelog.html | 156 +++++++ .../src/main/res/raw-ar/help_nfc_beam.html | 12 + OpenKeychain/src/main/res/raw-ar/help_start.html | 22 + OpenKeychain/src/main/res/raw-ar/help_wot.html | 17 + .../src/main/res/raw-ar/nfc_beam_share.html | 11 + .../src/main/res/raw-cs-rCZ/help_about.html | 49 --- .../src/main/res/raw-cs-rCZ/help_changelog.html | 156 ------- .../src/main/res/raw-cs-rCZ/help_nfc_beam.html | 12 - .../src/main/res/raw-cs-rCZ/help_start.html | 24 -- .../src/main/res/raw-cs-rCZ/nfc_beam_share.html | 11 - OpenKeychain/src/main/res/raw-cs/help_about.html | 50 +++ .../src/main/res/raw-cs/help_changelog.html | 156 +++++++ .../src/main/res/raw-cs/help_nfc_beam.html | 12 + OpenKeychain/src/main/res/raw-cs/help_start.html | 22 + OpenKeychain/src/main/res/raw-cs/help_wot.html | 17 + .../src/main/res/raw-cs/nfc_beam_share.html | 11 + OpenKeychain/src/main/res/raw-de/help_about.html | 3 +- .../src/main/res/raw-de/help_changelog.html | 92 ++-- .../src/main/res/raw-de/help_nfc_beam.html | 10 +- OpenKeychain/src/main/res/raw-de/help_start.html | 22 + OpenKeychain/src/main/res/raw-de/help_wot.html | 17 + .../src/main/res/raw-de/nfc_beam_share.html | 8 +- OpenKeychain/src/main/res/raw-el/help_about.html | 1 + OpenKeychain/src/main/res/raw-el/help_start.html | 6 +- OpenKeychain/src/main/res/raw-el/help_wot.html | 17 + OpenKeychain/src/main/res/raw-es/help_about.html | 1 + .../src/main/res/raw-es/help_changelog.html | 8 +- OpenKeychain/src/main/res/raw-es/help_start.html | 6 +- OpenKeychain/src/main/res/raw-es/help_wot.html | 17 + OpenKeychain/src/main/res/raw-et/help_about.html | 1 + OpenKeychain/src/main/res/raw-et/help_start.html | 6 +- OpenKeychain/src/main/res/raw-et/help_wot.html | 17 + .../src/main/res/raw-fa-rIR/help_about.html | 49 --- .../src/main/res/raw-fa-rIR/help_changelog.html | 156 ------- .../src/main/res/raw-fa-rIR/help_nfc_beam.html | 12 - .../src/main/res/raw-fa-rIR/help_start.html | 24 -- .../src/main/res/raw-fa-rIR/nfc_beam_share.html | 11 - OpenKeychain/src/main/res/raw-fr/help_about.html | 1 + .../src/main/res/raw-fr/help_changelog.html | 10 +- OpenKeychain/src/main/res/raw-fr/help_start.html | 6 +- OpenKeychain/src/main/res/raw-fr/help_wot.html | 17 + .../src/main/res/raw-it-rIT/help_about.html | 49 --- .../src/main/res/raw-it-rIT/help_changelog.html | 156 ------- .../src/main/res/raw-it-rIT/help_nfc_beam.html | 12 - .../src/main/res/raw-it-rIT/help_start.html | 24 -- .../src/main/res/raw-it-rIT/nfc_beam_share.html | 11 - OpenKeychain/src/main/res/raw-it/help_about.html | 50 +++ .../src/main/res/raw-it/help_changelog.html | 156 +++++++ .../src/main/res/raw-it/help_nfc_beam.html | 12 + OpenKeychain/src/main/res/raw-it/help_start.html | 22 + OpenKeychain/src/main/res/raw-it/help_wot.html | 17 + .../src/main/res/raw-it/nfc_beam_share.html | 11 + OpenKeychain/src/main/res/raw-ja/help_about.html | 1 + .../src/main/res/raw-ja/help_changelog.html | 8 +- OpenKeychain/src/main/res/raw-ja/help_start.html | 8 +- OpenKeychain/src/main/res/raw-ja/help_wot.html | 17 + OpenKeychain/src/main/res/raw-ko/help_about.html | 1 + OpenKeychain/src/main/res/raw-ko/help_start.html | 6 +- OpenKeychain/src/main/res/raw-ko/help_wot.html | 17 + .../src/main/res/raw-nl-rNL/help_about.html | 49 --- .../src/main/res/raw-nl-rNL/help_changelog.html | 156 ------- .../src/main/res/raw-nl-rNL/help_nfc_beam.html | 12 - .../src/main/res/raw-nl-rNL/help_start.html | 24 -- .../src/main/res/raw-nl-rNL/nfc_beam_share.html | 11 - OpenKeychain/src/main/res/raw-nl/help_about.html | 50 +++ .../src/main/res/raw-nl/help_changelog.html | 156 +++++++ .../src/main/res/raw-nl/help_nfc_beam.html | 12 + OpenKeychain/src/main/res/raw-nl/help_start.html | 22 + OpenKeychain/src/main/res/raw-nl/help_wot.html | 17 + .../src/main/res/raw-nl/nfc_beam_share.html | 11 + OpenKeychain/src/main/res/raw-pl/help_about.html | 1 + .../src/main/res/raw-pl/help_changelog.html | 2 +- OpenKeychain/src/main/res/raw-pl/help_start.html | 6 +- OpenKeychain/src/main/res/raw-pl/help_wot.html | 17 + OpenKeychain/src/main/res/raw-ru/help_about.html | 1 + .../src/main/res/raw-ru/help_changelog.html | 10 +- OpenKeychain/src/main/res/raw-ru/help_start.html | 8 +- OpenKeychain/src/main/res/raw-ru/help_wot.html | 17 + OpenKeychain/src/main/res/raw-sl/help_about.html | 1 + .../src/main/res/raw-sl/help_changelog.html | 10 +- OpenKeychain/src/main/res/raw-sl/help_start.html | 6 +- OpenKeychain/src/main/res/raw-sl/help_wot.html | 17 + OpenKeychain/src/main/res/raw-tr/help_about.html | 1 + OpenKeychain/src/main/res/raw-tr/help_start.html | 6 +- OpenKeychain/src/main/res/raw-tr/help_wot.html | 17 + OpenKeychain/src/main/res/raw-uk/help_about.html | 1 + .../src/main/res/raw-uk/help_changelog.html | 14 +- OpenKeychain/src/main/res/raw-uk/help_start.html | 8 +- OpenKeychain/src/main/res/raw-uk/help_wot.html | 17 + OpenKeychain/src/main/res/raw-zh/help_about.html | 1 + OpenKeychain/src/main/res/raw-zh/help_start.html | 6 +- OpenKeychain/src/main/res/raw-zh/help_wot.html | 17 + .../src/main/res/raw-zh/nfc_beam_share.html | 2 +- OpenKeychain/src/main/res/values-ar/strings.xml | 31 ++ .../src/main/res/values-cs-rCZ/strings.xml | 48 --- OpenKeychain/src/main/res/values-cs/strings.xml | 31 ++ OpenKeychain/src/main/res/values-de/strings.xml | 7 +- OpenKeychain/src/main/res/values-es/strings.xml | 6 +- .../src/main/res/values-fa-rIR/strings.xml | 31 -- OpenKeychain/src/main/res/values-fr/strings.xml | 6 +- .../src/main/res/values-it-rIT/strings.xml | 475 --------------------- OpenKeychain/src/main/res/values-it/strings.xml | 474 ++++++++++++++++++++ OpenKeychain/src/main/res/values-ja/strings.xml | 6 +- .../src/main/res/values-nl-rNL/strings.xml | 198 --------- OpenKeychain/src/main/res/values-nl/strings.xml | 474 ++++++++++++++++++++ OpenKeychain/src/main/res/values-pl/strings.xml | 3 - OpenKeychain/src/main/res/values-ru/strings.xml | 56 ++- OpenKeychain/src/main/res/values-sl/strings.xml | 5 +- OpenKeychain/src/main/res/values-uk/strings.xml | 68 ++- 110 files changed, 2587 insertions(+), 1922 deletions(-) create mode 100644 OpenKeychain/src/main/res/raw-ar/help_about.html create mode 100644 OpenKeychain/src/main/res/raw-ar/help_changelog.html create mode 100644 OpenKeychain/src/main/res/raw-ar/help_nfc_beam.html create mode 100644 OpenKeychain/src/main/res/raw-ar/help_start.html create mode 100644 OpenKeychain/src/main/res/raw-ar/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-ar/nfc_beam_share.html delete mode 100644 OpenKeychain/src/main/res/raw-cs-rCZ/help_about.html delete mode 100644 OpenKeychain/src/main/res/raw-cs-rCZ/help_changelog.html delete mode 100644 OpenKeychain/src/main/res/raw-cs-rCZ/help_nfc_beam.html delete mode 100644 OpenKeychain/src/main/res/raw-cs-rCZ/help_start.html delete mode 100644 OpenKeychain/src/main/res/raw-cs-rCZ/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-cs/help_about.html create mode 100644 OpenKeychain/src/main/res/raw-cs/help_changelog.html create mode 100644 OpenKeychain/src/main/res/raw-cs/help_nfc_beam.html create mode 100644 OpenKeychain/src/main/res/raw-cs/help_start.html create mode 100644 OpenKeychain/src/main/res/raw-cs/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-cs/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-de/help_start.html create mode 100644 OpenKeychain/src/main/res/raw-de/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-el/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-es/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-et/help_wot.html delete mode 100644 OpenKeychain/src/main/res/raw-fa-rIR/help_about.html delete mode 100644 OpenKeychain/src/main/res/raw-fa-rIR/help_changelog.html delete mode 100644 OpenKeychain/src/main/res/raw-fa-rIR/help_nfc_beam.html delete mode 100644 OpenKeychain/src/main/res/raw-fa-rIR/help_start.html delete mode 100644 OpenKeychain/src/main/res/raw-fa-rIR/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-fr/help_wot.html delete mode 100644 OpenKeychain/src/main/res/raw-it-rIT/help_about.html delete mode 100644 OpenKeychain/src/main/res/raw-it-rIT/help_changelog.html delete mode 100644 OpenKeychain/src/main/res/raw-it-rIT/help_nfc_beam.html delete mode 100644 OpenKeychain/src/main/res/raw-it-rIT/help_start.html delete mode 100644 OpenKeychain/src/main/res/raw-it-rIT/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-it/help_about.html create mode 100644 OpenKeychain/src/main/res/raw-it/help_changelog.html create mode 100644 OpenKeychain/src/main/res/raw-it/help_nfc_beam.html create mode 100644 OpenKeychain/src/main/res/raw-it/help_start.html create mode 100644 OpenKeychain/src/main/res/raw-it/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-it/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-ja/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-ko/help_wot.html delete mode 100644 OpenKeychain/src/main/res/raw-nl-rNL/help_about.html delete mode 100644 OpenKeychain/src/main/res/raw-nl-rNL/help_changelog.html delete mode 100644 OpenKeychain/src/main/res/raw-nl-rNL/help_nfc_beam.html delete mode 100644 OpenKeychain/src/main/res/raw-nl-rNL/help_start.html delete mode 100644 OpenKeychain/src/main/res/raw-nl-rNL/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-nl/help_about.html create mode 100644 OpenKeychain/src/main/res/raw-nl/help_changelog.html create mode 100644 OpenKeychain/src/main/res/raw-nl/help_nfc_beam.html create mode 100644 OpenKeychain/src/main/res/raw-nl/help_start.html create mode 100644 OpenKeychain/src/main/res/raw-nl/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-nl/nfc_beam_share.html create mode 100644 OpenKeychain/src/main/res/raw-pl/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-ru/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-sl/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-tr/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-uk/help_wot.html create mode 100644 OpenKeychain/src/main/res/raw-zh/help_wot.html create mode 100644 OpenKeychain/src/main/res/values-ar/strings.xml delete mode 100644 OpenKeychain/src/main/res/values-cs-rCZ/strings.xml create mode 100644 OpenKeychain/src/main/res/values-cs/strings.xml delete mode 100644 OpenKeychain/src/main/res/values-fa-rIR/strings.xml delete mode 100644 OpenKeychain/src/main/res/values-it-rIT/strings.xml create mode 100644 OpenKeychain/src/main/res/values-it/strings.xml delete mode 100644 OpenKeychain/src/main/res/values-nl-rNL/strings.xml create mode 100644 OpenKeychain/src/main/res/values-nl/strings.xml (limited to 'OpenKeychain') diff --git a/OpenKeychain/src/main/res/raw-ar/help_about.html b/OpenKeychain/src/main/res/raw-ar/help_about.html new file mode 100644 index 000000000..ab3c19375 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/help_about.html @@ -0,0 +1,50 @@ + + + +

http://www.openkeychain.org

+

OpenKeychain is an OpenPGP implementation for Android.

+

License: GPLv3+

+ +

Developers OpenKeychain

+
    +
  • Dominik Schürmann (Lead developer)
  • +
  • Ash Hughes (crypto patches)
  • +
  • Brian C. Barnes
  • +
  • Bahtiar 'kalkin' Gadimov (UI)
  • +
  • Daniel Hammann
  • +
  • Daniel Haß
  • +
  • Greg Witczak
  • +
  • Miroojin Bakshi
  • +
  • Nikhil Peter Raj
  • +
  • Paul Sarbinowski
  • +
  • Sreeram Boyapati
  • +
  • Vincent Breitmoser
  • +
  • Tim Bray
  • +
+

Developers APG 1.x

+
    +
  • Thialfihar (Lead developer)
  • +
  • 'Senecaso' (QRCode, sign key, upload key)
  • +
  • Markus Doits
  • +
+

Libraries

+ + + diff --git a/OpenKeychain/src/main/res/raw-ar/help_changelog.html b/OpenKeychain/src/main/res/raw-ar/help_changelog.html new file mode 100644 index 000000000..ebada67f9 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/help_changelog.html @@ -0,0 +1,156 @@ + + + +

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 pgp messages/files
  • +
  • refactored edit key 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 pass phrase 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 pass phrase 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-ar/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-ar/help_nfc_beam.html new file mode 100644 index 000000000..88492731c --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/help_nfc_beam.html @@ -0,0 +1,12 @@ + + + +

How to receive keys

+
    +
  1. Go to your partners contacts and open the contact you want to share.
  2. +
  3. Hold the two devices back to back (they have to be almost touching) and you’ll feel a vibration.
  4. +
  5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. +
  7. Tap the card and the content will then load on the your device.
  8. +
+ + diff --git a/OpenKeychain/src/main/res/raw-ar/help_start.html b/OpenKeychain/src/main/res/raw-ar/help_start.html new file mode 100644 index 000000000..3a681f8fa --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/help_start.html @@ -0,0 +1,22 @@ + + + +

Getting started

+

First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

+ +

It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

+ +

Applications

+

Several applications support OpenKeychain to encrypt/sign your private communication:

K-9 Mail: OpenKeychain support available in current alpha build!

Conversations
: Jabber/XMPP client

PGPAuth
: App to send a PGP-signed request to a server to open or close something, e.g. a door

+ +

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-ar/help_wot.html b/OpenKeychain/src/main/res/raw-ar/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/help_wot.html @@ -0,0 +1,17 @@ + + + +

Web of Trust

+

The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

+ +

Support in OpenKeychain

+

There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

+ +

Trust Model

+

Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

+ +

Certifying keys

+

Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

+ + + diff --git a/OpenKeychain/src/main/res/raw-ar/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-ar/nfc_beam_share.html new file mode 100644 index 000000000..083e055c7 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ar/nfc_beam_share.html @@ -0,0 +1,11 @@ + + + +
    +
  1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
  2. +
  3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
  4. +
  5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. +
  7. Tap the card and the content will then load on the other person’s device.
  8. +
+ + diff --git a/OpenKeychain/src/main/res/raw-cs-rCZ/help_about.html b/OpenKeychain/src/main/res/raw-cs-rCZ/help_about.html deleted file mode 100644 index 99977f75d..000000000 --- a/OpenKeychain/src/main/res/raw-cs-rCZ/help_about.html +++ /dev/null @@ -1,49 +0,0 @@ - - - -

http://www.openkeychain.org

-

OpenKeychain is an OpenPGP implementation for Android.

-

Licence: GPLv3+

- -

Developers OpenKeychain

-
    -
  • Dominik Schürmann (Hlavní vývojář)
  • -
  • Ash Hughes (crypto patches)
  • -
  • Brian C. Barnes
  • -
  • Bahtiar 'kalkin' Gadimov (UI)
  • -
  • Daniel Hammann
  • -
  • Daniel Haß
  • -
  • Greg Witczak
  • -
  • Miroojin Bakshi
  • -
  • Nikhil Peter Raj
  • -
  • Paul Sarbinowski
  • -
  • Sreeram Boyapati
  • -
  • Vincent Breitmoser
  • -
-

Developers APG 1.x

-
    -
  • Thialfihar (Lead developer)
  • -
  • 'Senecaso' (QRCode, sign key, upload key)
  • -
  • Markus Doits
  • -
-

Libraries

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

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 pgp messages/files
  • -
  • refactored edit key 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 pass phrase 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 pass phrase 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-cs-rCZ/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-cs-rCZ/help_nfc_beam.html deleted file mode 100644 index 88492731c..000000000 --- a/OpenKeychain/src/main/res/raw-cs-rCZ/help_nfc_beam.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

How to receive keys

-
    -
  1. Go to your partners contacts and open the contact you want to share.
  2. -
  3. Hold the two devices back to back (they have to be almost touching) and you’ll feel a vibration.
  4. -
  5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. -
  7. Tap the card and the content will then load on the your device.
  8. -
- - diff --git a/OpenKeychain/src/main/res/raw-cs-rCZ/help_start.html b/OpenKeychain/src/main/res/raw-cs-rCZ/help_start.html deleted file mode 100644 index 6ded872ea..000000000 --- a/OpenKeychain/src/main/res/raw-cs-rCZ/help_start.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -

Getting started

-

First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

- -

It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

- -

Applications

-

Several applications support OpenKeychain to encrypt/sign your private communication:

-

Conversations: Jabber/XMPP client

-

K-9 Mail: OpenKeychain support available in current alpha build!

- -

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-rCZ/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-cs-rCZ/nfc_beam_share.html deleted file mode 100644 index 083e055c7..000000000 --- a/OpenKeychain/src/main/res/raw-cs-rCZ/nfc_beam_share.html +++ /dev/null @@ -1,11 +0,0 @@ - - - -
    -
  1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
  2. -
  3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
  4. -
  5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. -
  7. Tap the card and the content will then load on the other person’s device.
  8. -
- - diff --git a/OpenKeychain/src/main/res/raw-cs/help_about.html b/OpenKeychain/src/main/res/raw-cs/help_about.html new file mode 100644 index 000000000..ab3c19375 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-cs/help_about.html @@ -0,0 +1,50 @@ + + + +

http://www.openkeychain.org

+

OpenKeychain is an OpenPGP implementation for Android.

+

License: GPLv3+

+ +

Developers OpenKeychain

+
    +
  • Dominik Schürmann (Lead developer)
  • +
  • Ash Hughes (crypto patches)
  • +
  • Brian C. Barnes
  • +
  • Bahtiar 'kalkin' Gadimov (UI)
  • +
  • Daniel Hammann
  • +
  • Daniel Haß
  • +
  • Greg Witczak
  • +
  • Miroojin Bakshi
  • +
  • Nikhil Peter Raj
  • +
  • Paul Sarbinowski
  • +
  • Sreeram Boyapati
  • +
  • Vincent Breitmoser
  • +
  • Tim Bray
  • +
+

Developers APG 1.x

+
    +
  • Thialfihar (Lead developer)
  • +
  • 'Senecaso' (QRCode, sign key, upload key)
  • +
  • Markus Doits
  • +
+

Libraries

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

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 pgp messages/files
  • +
  • refactored edit key 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 pass phrase 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 pass phrase 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-cs/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-cs/help_nfc_beam.html new file mode 100644 index 000000000..88492731c --- /dev/null +++ b/OpenKeychain/src/main/res/raw-cs/help_nfc_beam.html @@ -0,0 +1,12 @@ + + + +

How to receive keys

+
    +
  1. Go to your partners contacts and open the contact you want to share.
  2. +
  3. Hold the two devices back to back (they have to be almost touching) and you’ll feel a vibration.
  4. +
  5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. +
  7. Tap the card and the content will then load on the your device.
  8. +
+ + diff --git a/OpenKeychain/src/main/res/raw-cs/help_start.html b/OpenKeychain/src/main/res/raw-cs/help_start.html new file mode 100644 index 000000000..3a681f8fa --- /dev/null +++ b/OpenKeychain/src/main/res/raw-cs/help_start.html @@ -0,0 +1,22 @@ + + + +

Getting started

+

First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

+ +

It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

+ +

Applications

+

Several applications support OpenKeychain to encrypt/sign your private communication:

K-9 Mail: OpenKeychain support available in current alpha build!

Conversations
: Jabber/XMPP client

PGPAuth
: App to send a PGP-signed request to a server to open or close something, e.g. a door

+ +

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_wot.html b/OpenKeychain/src/main/res/raw-cs/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-cs/help_wot.html @@ -0,0 +1,17 @@ + + + +

Web of Trust

+

The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

+ +

Support in OpenKeychain

+

There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

+ +

Trust Model

+

Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

+ +

Certifying keys

+

Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

+ + + diff --git a/OpenKeychain/src/main/res/raw-cs/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-cs/nfc_beam_share.html new file mode 100644 index 000000000..083e055c7 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-cs/nfc_beam_share.html @@ -0,0 +1,11 @@ + + + +
    +
  1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
  2. +
  3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
  4. +
  5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
  6. +
  7. Tap the card and the content will then load on the other person’s device.
  8. +
+ + diff --git a/OpenKeychain/src/main/res/raw-de/help_about.html b/OpenKeychain/src/main/res/raw-de/help_about.html index c40267e73..8eb033e9f 100644 --- a/OpenKeychain/src/main/res/raw-de/help_about.html +++ b/OpenKeychain/src/main/res/raw-de/help_about.html @@ -19,11 +19,12 @@
  • Paul Sarbinowski
  • Sreeram Boyapati
  • Vincent Breitmoser
  • +
  • Tim Bray
  • Entwickler APG 1.x

    • Thialfihar (Hauptentwickler)
    • -
    • 'Senecaso' (QR-Code, Schlüssel signtieren, Schlüssel hochladen)
    • +
    • 'Senecaso' (QR-Code, Schlüssel signieren, Schlüssel hochladen)
    • Markus Doits

    Bibliotheken

    diff --git a/OpenKeychain/src/main/res/raw-de/help_changelog.html b/OpenKeychain/src/main/res/raw-de/help_changelog.html index 4f8206bf7..9ef142382 100644 --- a/OpenKeychain/src/main/res/raw-de/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-de/help_changelog.html @@ -3,11 +3,11 @@

    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)
    • +
    • Lila! (Dominik, Vincent)
    • +
    • Neues Schlüsselansicht Design (Dominik, Vincent)
    • +
    • Neue flache Android Buttons (Dominik, Vincent)
    • +
    • API Fehler behoben (Dominik)
    • +
    • keybase.io importiert (Tim Bray)

    2.6.1

      @@ -15,51 +15,51 @@

    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
    • +
    • Schlüsselzertifikation (Dank an Vincent Breitmoser)
    • +
    • Unterstützung für GnuPG teilweisegeheime Schlüssel (Dank an Vincent Breitmoser)
    • +
    • Neues Design für Signaturverifikation
    • +
    • Nutzerdefinierte Schlüssellänge (Dank an Greg Witczak)
    • +
    • Fehler behoben bei der Teilen-Funktion von anderen Apps

    2.5

      -
    • fix decryption of symmetric pgp messages/files
    • -
    • refactored edit key screen (thanks to Ash Hughes)
    • -
    • new modern design for encrypt/decrypt screens
    • -
    • OpenPGP API version 3 (multiple api accounts, internal fixes, key lookup)
    • +
    • behoben: entschlüsseln von symetrischen pgp Nachrichten/Dateien
    • +
    • umgestalteter Schlüssel bearbeiten Bildschirm (Dank an Ash Hughes)
    • +
    • neues modernes Design für verschlüsselung/entschlüsselungs Bildschirme
    • +
    • OpenPGP API Version 3 (mehrfache api accounts, interne fehlerbehebungen, schlüssel suche)

    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): +

    Danke an alle Bewerber beim 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.

      -
    • 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
    • +
    • neue vereinheitlichte Schlüssel liste.
    • +
    • eingefärbte Schlüssel fingerprints
    • +
    • Unterstützung für Schlüsselserver
    • +
    • deaktiviert die Möglichkeit schwache Schlüssel zu generieren.
    • +
    • viel mehr interne Arbeit an der API
    • +
    • zertifizieren von Benutzer IDs
    • +
    • Schlüsselserver Anfragen basieren auf Maschinenlesbaren Ausgaben.
    • lock navigation drawer on tablets
    • suggestions for emails on creation of keys
    • -
    • search in public key lists
    • -
    • and much more improvements and fixes…
    • +
    • suchen in öffentlichen Schlüssellisten
    • +
    • und viele weitere Verbesserungen und Fehlerbehebungen...

    2.3.1

      -
    • hotfix for crash when upgrading from old versions
    • +
    • schnelle Fehlerbehebung für Abstürze sobald man von einer alten Version geupdatet hat.

    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
    • +
    • entfernung von unnötigen exporten von öffentlichen Schlüsseln, wenn man den geheimen Schlüssel exportiert. (Dank an Ash Hughes)
    • +
    • Fehlerbehebung: Einstellen des Ablaufdatums von Schlüsseln (Dank an Ash Hughes)
    • +
    • mehr interne Fehlerbehebungen wenn man Schlüssel bearbeitet (Dank an Ash Hughes)
    • +
    • Suchzugriff auf die Schlüsselserver direkt vom Importieren Bildschirm
    • +
    • Fehlerbehebung beim Layout und Dialogstil auf Android 2.2-3.0
    • Absturz bei leeren Nutzer IDs behoben
    • -
    • 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
    • +
    • Fehlerbehebung von Abstürzen und leeren Listen, wenn man vom signieren Bildschirm zurückkehrt.
    • +
    • Bouncy Castle (Kryptographie Bibliothek) upgedatet von 1.47 auf 1.50 und vom Quellcode kompiliert.
    • +
    • Fehlerbehebung vom hochladen von Schlüsseln vom signieren Bildschirm.

    2.2

      @@ -67,15 +67,15 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa
    • Neus Design für die Liste der öffentlichen Schlüssel
    • Neue Ansicht für öffentliche Schlüssel
    • Fehler beim Schlüsselimport behoben
    • -
    • key cross-certification (thanks to Ash Hughes)
    • -
    • handle UTF-8 passwords properly (thanks to Ash Hughes)
    • +
    • Schlüssel Cross-Zertifizierung (Dank an Ash Hughes)
    • +
    • richtiges händling von UTF-8 Passwörtern (Danke an Ash Hughes)
    • Erste Version mit neuen Sprachen (Danke an die Mitwirkenden bei Transifex)
    • -
    • sharing of keys via QR Codes fixed and improved
    • -
    • package signature verification for API
    • +
    • teilen von schlüsseln per QR-Codes behoben und verbessert
    • +
    • paket signatur verifizierung für die API

    2.1.1

      -
    • API Updates, preparation for K-9 Mail integration
    • +
    • API Updates, vorbereitung für die K-9 Mail integration.

    2.1

      @@ -103,7 +103,7 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa

    1.0.7

      -
    • fixed problem with signature verification of texts with trailing newline
    • +
    • Fehlerbehebung bei Problemen mit der Signatur verifizierung von Texten mit folgender neuer Zeile.
    • weitere Optionen für die Time-to-live des Passphrasencaches (20, 40, 60 mins)

    1.0.6

    @@ -126,7 +126,7 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa

    1.0.4

      -
    • fixed another crash caused by some SDK bug with query builder
    • +
    • Einen anderen crash behoben, verursacht von irgendeinen SDK bug mit dem query builder.

    1.0.3

      @@ -135,13 +135,13 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa

      1.0.2

      • Filterbare Schlüsselliste
      • -
      • 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
      • +
      • leichtere vorauswahl von Verschlüsselungsschlüsseln
      • +
      • neues Intent händling für VIEW und SEND, erlaubt es Dateien zu ver-/entschlüsseln außerhalb des Dateimanagers.
      • +
      • Fehlerbehebungen und Extras (Schlüssel vorauswahl) für K-9 Mail, neue Beta Versionen verfügbar.

      1.0.1

        -
      • GMail account listing was broken in 1.0.0, fixed again
      • +
      • GMail Account auflistung war nicht in Ordnung in 1.0.0, wieder behoben.

      1.0.0

        @@ -149,7 +149,7 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa
      • Unterstützung von mehr Filemanagern (einschließlich ASTRO)
      • Slowenische Übersetzung
      • Neue Datenbank, viel schneller, weniger Speicherbedarf
      • -
      • defined Intents and content provider for other apps
      • +
      • definierte intents und content provider für andere Apps
      • Fehlerbehebungen
      diff --git a/OpenKeychain/src/main/res/raw-de/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-de/help_nfc_beam.html index 6fb3d6dd1..0526783cd 100644 --- a/OpenKeychain/src/main/res/raw-de/help_nfc_beam.html +++ b/OpenKeychain/src/main/res/raw-de/help_nfc_beam.html @@ -1,12 +1,12 @@ -

      Wie werden Schlüssel empfangen

      +

      Wie kann man Schlüssel empfangen

        -
      1. Gehen Sie zu Ihren Kontakten und öffnen Sie den Kontakt, den Sie teilen wollen.
      2. -
      3. Halten sie die zwei Geräte Rückseitig aneinander (sie müssen sich fast berühren) und sie werden ein Vibrieren fühlen.
      4. -
      5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
      6. -
      7. Tippen sie die Karte an und der Inhalt wird dann auf Ihr Gerät geladen.
      8. +
      9. Gehen Sie zu den Kontakten ihres Bekannten und öffnen Sie den Kontakt, den Sie teilen möchten.
      10. +
      11. Halten Sie die zwei Geräte rückseitig aneinander (sodass sie sich fast berühren) und es wird vibrieren
      12. +
      13. Nachdem es vibriert sehen sie wie sich der Inhalt des Gerätes ihres Bekannten von einer Warp-Geschwindigkeit Animation umgeben wird
      14. +
      15. Wenn sie die Karte antippen, wird der Inhalt auf ihr Gerät übertragen
      diff --git a/OpenKeychain/src/main/res/raw-de/help_start.html b/OpenKeychain/src/main/res/raw-de/help_start.html new file mode 100644 index 000000000..1538fbce4 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-de/help_start.html @@ -0,0 +1,22 @@ + + + +

      Los gehts

      +

      Zuerst benötigen Sie einen geheimen privaten Schlüssel. Erstellen Sie einen Schlüssel über den Eintrag "Schlüssel" im Menu oder importieren Sie bestehende private Schlüssel. Anschließend können Sie die Schlüssel ihrer Freunde runterladen oder Sie über QR-Codes oder NFC austauschen.

      + +

      Es wird empfohlen, dass Sie den OI File Manager für ein verbessertes Dateihandling installieren, sowie den Barcode Scanner installieren um erstellte QR-Codes zu scannen. Die Links führen entweder zu Google Play oder zu F-Droid zur Installation.

      + +

      Anwendungen

      +

      Etliche Anwendungen unterstützen OpenKeychain um private Kommunikation zu verschlüsseln/signieren:

      K-9 Mail: OpenKeychainUnterstützung in der aktuellenen alpha Version!

      Conversations
      : Jabber/XMPP client

      PGPAuth
      : App zum senden von PGP-signierten Anfragen an einen Server um etwas zu öffnen oder zu schliessen, z.B. eine Tür.

      + +

      Ich habe einen Fehler in der OpenKeychain gefunden!

      +

      Bitte berichten Sie Bugs mithilfe des Issue Trackers der OpenKeychain.

      + +

      Unterstützen

      +

      Wenn Sie uns bei der Entwickelung von OpenKeychain durch das Beisteuern von Code helfen wollt, schaut euch unsere kurze Anleitung auf Github an.

      + +

      Übersetzungen

      +

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

      + + + diff --git a/OpenKeychain/src/main/res/raw-de/help_wot.html b/OpenKeychain/src/main/res/raw-de/help_wot.html new file mode 100644 index 000000000..ad33ddbb1 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-de/help_wot.html @@ -0,0 +1,17 @@ + + + +

      Web of Trust

      +

      Das Web of Trust beschreibt den Teil von PGP der sich mit der Erstellung und dem Verwalten von Zertifikaten beschäftigt. Nutzer können so im Auge behalten zu wem ein bestimmter Public Key gehört, sowie diese Information teilen: Um die Privatsphäre von verschlüsselter Kommunikation zu gewährleisten ist es essentiell zu wissen ob der Public Key den man zum Verschlüsseln nutzt zu der Person gehört, die man erwartet.

      + +

      Support in OpenKeychain

      +

      Es gibt nur eine rudimentäre Unterstützung für das Web of Trust in OpenKeychain. Am Web of Trust System wird kontinuierlich gearbeitet und es wird in den kommenden Version überarbeitet.

      + +

      Vertrauens-Modell

      +

      Die Bewertung des Vertrauens basiert auf der Grundannahme, dass alle Schlüssel zu denen ein privater Schlüssel vorhanden ist, vertrauenswürdig sind. Öffentliche Schlüssel welche mindestens eine User ID beinhalten, die von einem Trusted Key verifiziert wurden, werden mit einem grünen Punkt in der Schlüsselliste gekennzeichnet. Es ist (noch) nicht möglich bestimmte Trust Level für Zertifikate anderer bekannter öffentlicher Schlüssel festzulegen.

      + +

      Schlüssel beglaubigen

      +

      Die Unterstützung für die Zertifizierung von Schlüsseln ist vorhanden. Nutzer IDs können separat zertifiziert werden. Es ist jedoch sowohl noch nicht möglich das Vertrauenslevel festzulegen, als auch lokale oder andere spezielle Zertifikate zu erstellen.

      + + + diff --git a/OpenKeychain/src/main/res/raw-de/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-de/nfc_beam_share.html index 083e055c7..8a2e1880e 100644 --- a/OpenKeychain/src/main/res/raw-de/nfc_beam_share.html +++ b/OpenKeychain/src/main/res/raw-de/nfc_beam_share.html @@ -2,10 +2,10 @@
        -
      1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
      2. -
      3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
      4. -
      5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
      6. -
      7. Tap the card and the content will then load on the other person’s device.
      8. +
      9. Stellen Sie sicher, dass NFC und Android Beam in den Einstellungen unter > Mehr > NFC eingeschaltet sind
      10. +
      11. Halten sie die zwei Geräte rückseitig aneinander (sodass sie sich fast berühren) und es wird vibrieren
      12. +
      13. Nachdem es vibriert sehen sie wie der Inhalt ihres Gerätes von einer Warp-Geschwindigkeit Animation umgeben wird
      14. +
      15. Drücken Sie auf die Karte und der Inhalt wird auf das Gerät des Anderen geladen.
      diff --git a/OpenKeychain/src/main/res/raw-el/help_about.html b/OpenKeychain/src/main/res/raw-el/help_about.html index ae7e16aae..ab3c19375 100644 --- a/OpenKeychain/src/main/res/raw-el/help_about.html +++ b/OpenKeychain/src/main/res/raw-el/help_about.html @@ -19,6 +19,7 @@
    • Paul Sarbinowski
    • Sreeram Boyapati
    • Vincent Breitmoser
    • +
    • Tim Bray

    Developers APG 1.x

      diff --git a/OpenKeychain/src/main/res/raw-el/help_start.html b/OpenKeychain/src/main/res/raw-el/help_start.html index 6ded872ea..3a681f8fa 100644 --- a/OpenKeychain/src/main/res/raw-el/help_start.html +++ b/OpenKeychain/src/main/res/raw-el/help_start.html @@ -2,14 +2,12 @@

      Getting started

      -

      First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

      +

      First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

      It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

      Applications

      -

      Several applications support OpenKeychain to encrypt/sign your private communication:

      -

      Conversations: Jabber/XMPP client

      -

      K-9 Mail: OpenKeychain support available in current alpha build!

      +

      Several applications support OpenKeychain to encrypt/sign your private communication:

      K-9 Mail: OpenKeychain support available in current alpha build!

      Conversations
      : Jabber/XMPP client

      PGPAuth
      : App to send a PGP-signed request to a server to open or close something, e.g. a door

      I found a bug in OpenKeychain!

      Please report the bug using the issue tracker of OpenKeychain.

      diff --git a/OpenKeychain/src/main/res/raw-el/help_wot.html b/OpenKeychain/src/main/res/raw-el/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-el/help_wot.html @@ -0,0 +1,17 @@ + + + +

      Web of Trust

      +

      The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

      + +

      Support in OpenKeychain

      +

      There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

      + +

      Trust Model

      +

      Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

      + +

      Certifying keys

      +

      Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

      + + + diff --git a/OpenKeychain/src/main/res/raw-es/help_about.html b/OpenKeychain/src/main/res/raw-es/help_about.html index 7a4f61127..a6067c8b9 100644 --- a/OpenKeychain/src/main/res/raw-es/help_about.html +++ b/OpenKeychain/src/main/res/raw-es/help_about.html @@ -19,6 +19,7 @@
    • Paul Sarbinowski
    • Sreeram Boyapati
    • Vincent Breitmoser
    • +
    • Tim Bray

    Desarrolladores de APG 1.x

      diff --git a/OpenKeychain/src/main/res/raw-es/help_changelog.html b/OpenKeychain/src/main/res/raw-es/help_changelog.html index b86d29adb..0cd3773a2 100644 --- a/OpenKeychain/src/main/res/raw-es/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-es/help_changelog.html @@ -4,10 +4,10 @@

      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)
      • +
      • Diseño de vista de nueva clave (Dominik, Vincent)
      • +
      • Nuevos botones de Android planos (Dominik, Vincent)
      • +
      • Reparaciones de la API (Dominik)
      • +
      • Importación de Keybase.io (Tim Bray)

      2.6.1

        diff --git a/OpenKeychain/src/main/res/raw-es/help_start.html b/OpenKeychain/src/main/res/raw-es/help_start.html index d9eaa90b5..5fcda44b4 100644 --- a/OpenKeychain/src/main/res/raw-es/help_start.html +++ b/OpenKeychain/src/main/res/raw-es/help_start.html @@ -2,14 +2,12 @@

        Primeros pasos

        -

        Primero necesita una clave privada (secreta) personal. Cree una mediante las opciones de menú en "Claves", o importe claves privadas existentes. En adelante puede descargar las claves de sus amigos, o intercambiarlas mediante códigos QR o vía NFC.

        +

        Primero necesita una clave privada (secreta) personal. Cree una mediante las opciones de menú en "Claves", o importe claves privadas existentes. En adelante puede descargar las claves de sus amigos, o intercambiarlas mediante códigos QR o vía NFC.

        Es recomendable que instales OI File Manager para una mejor selección de archivos y Barcode Scanner para escanear los códigos QR generados. Pulsando en los enlaces se abrirá Google Play o F-Droid.

        Aplicaciones

        -

        Varias aplicaciones soportan OpenKeychain para cifrar/firmar sus comunicaciones privadas:

        -

        Conversaciones: Cliente Jabber/XMPP

        -

        K-9 Mail: ¡Soporte para OpenKeychain disponible en la actual versión alfa!

        +

        Varias aplicaciones soportan OpenKeychain para cifrar/firmar sus comunicaciones privadas:

        K-9 Mail: Soporte para OpenKeychain disponible en la actual ¡versión alfa!

        Conversaciones
        : Cliente Jabber/XMPP

        PGPAuth
        : Aplicación para enviar una petición firmada-con-PGP a un servidor para abrir o cerrar algo, ej: una puerta

        ¡He encontrado un bug en OpenKeychain!

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

        diff --git a/OpenKeychain/src/main/res/raw-es/help_wot.html b/OpenKeychain/src/main/res/raw-es/help_wot.html new file mode 100644 index 000000000..60a2abb02 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-es/help_wot.html @@ -0,0 +1,17 @@ + + + +

        Web of Trust

        +

        El Web of Trust (web de confianza) describe la parte de PGP que trata con la creación y catalogación de certificaciones. Proporciona mecanismos para ayudar al usuario a llevar un seguimiento de a quién pertenece una clave pública, y comparte esta información con otros. Para asegurar la privacidad de las comunicaciones cifradas, es esencial saber que la clave pública que usted cifra pertenece a la misma persona que usted cree.

        + +

        Soporte en OpenKeychain

        +

        Sólo hay soporte básico para Web of Trust (web de confianza) en OpenKeychain. Este es un duro trabajo que tenemos en marcha sujeto a cambios en versiones posteriores.

        + +

        Modelo de confianza

        +

        La evaluación de la confianza está basada en la simple asunción de que todas las claves que tienen disponibles claves privadas (secretas) son de confianza. Las claves públicas que contienen al menos una identificación de usuario certificada por una clave de confianza serán marcadas con un punto verde en los listados de claves. No es posible (aún) especificar niveles de confianza para certificados de otras claves públicas conocidas.

        + +

        Certificando claves

        +

        Está disponible el soporte para certificación de clave, y las identificaciones de usuario pueden ser certificadas individualmente. No es posible aún especificar el nivel de confianza o crear certificados locales y otros tipos especiales de certificados.

        + + + diff --git a/OpenKeychain/src/main/res/raw-et/help_about.html b/OpenKeychain/src/main/res/raw-et/help_about.html index ae7e16aae..ab3c19375 100644 --- a/OpenKeychain/src/main/res/raw-et/help_about.html +++ b/OpenKeychain/src/main/res/raw-et/help_about.html @@ -19,6 +19,7 @@
      • Paul Sarbinowski
      • Sreeram Boyapati
      • Vincent Breitmoser
      • +
      • Tim Bray

      Developers APG 1.x

        diff --git a/OpenKeychain/src/main/res/raw-et/help_start.html b/OpenKeychain/src/main/res/raw-et/help_start.html index 6ded872ea..3a681f8fa 100644 --- a/OpenKeychain/src/main/res/raw-et/help_start.html +++ b/OpenKeychain/src/main/res/raw-et/help_start.html @@ -2,14 +2,12 @@

        Getting started

        -

        First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

        +

        First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

        It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

        Applications

        -

        Several applications support OpenKeychain to encrypt/sign your private communication:

        -

        Conversations: Jabber/XMPP client

        -

        K-9 Mail: OpenKeychain support available in current alpha build!

        +

        Several applications support OpenKeychain to encrypt/sign your private communication:

        K-9 Mail: OpenKeychain support available in current alpha build!

        Conversations
        : Jabber/XMPP client

        PGPAuth
        : App to send a PGP-signed request to a server to open or close something, e.g. a door

        I found a bug in OpenKeychain!

        Please report the bug using the issue tracker of OpenKeychain.

        diff --git a/OpenKeychain/src/main/res/raw-et/help_wot.html b/OpenKeychain/src/main/res/raw-et/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-et/help_wot.html @@ -0,0 +1,17 @@ + + + +

        Web of Trust

        +

        The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

        + +

        Support in OpenKeychain

        +

        There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

        + +

        Trust Model

        +

        Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

        + +

        Certifying keys

        +

        Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

        + + + diff --git a/OpenKeychain/src/main/res/raw-fa-rIR/help_about.html b/OpenKeychain/src/main/res/raw-fa-rIR/help_about.html deleted file mode 100644 index ae7e16aae..000000000 --- a/OpenKeychain/src/main/res/raw-fa-rIR/help_about.html +++ /dev/null @@ -1,49 +0,0 @@ - - - -

        http://www.openkeychain.org

        -

        OpenKeychain is an OpenPGP implementation for Android.

        -

        License: GPLv3+

        - -

        Developers OpenKeychain

        -
          -
        • Dominik Schürmann (Lead developer)
        • -
        • Ash Hughes (crypto patches)
        • -
        • Brian C. Barnes
        • -
        • Bahtiar 'kalkin' Gadimov (UI)
        • -
        • Daniel Hammann
        • -
        • Daniel Haß
        • -
        • Greg Witczak
        • -
        • Miroojin Bakshi
        • -
        • Nikhil Peter Raj
        • -
        • Paul Sarbinowski
        • -
        • Sreeram Boyapati
        • -
        • Vincent Breitmoser
        • -
        -

        Developers APG 1.x

        -
          -
        • Thialfihar (Lead developer)
        • -
        • 'Senecaso' (QRCode, sign key, upload key)
        • -
        • Markus Doits
        • -
        -

        Libraries

        - - - diff --git a/OpenKeychain/src/main/res/raw-fa-rIR/help_changelog.html b/OpenKeychain/src/main/res/raw-fa-rIR/help_changelog.html deleted file mode 100644 index ebada67f9..000000000 --- a/OpenKeychain/src/main/res/raw-fa-rIR/help_changelog.html +++ /dev/null @@ -1,156 +0,0 @@ - - - -

        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 pgp messages/files
        • -
        • refactored edit key 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 pass phrase 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 pass phrase 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-fa-rIR/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-fa-rIR/help_nfc_beam.html deleted file mode 100644 index 88492731c..000000000 --- a/OpenKeychain/src/main/res/raw-fa-rIR/help_nfc_beam.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

        How to receive keys

        -
          -
        1. Go to your partners contacts and open the contact you want to share.
        2. -
        3. Hold the two devices back to back (they have to be almost touching) and you’ll feel a vibration.
        4. -
        5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
        6. -
        7. Tap the card and the content will then load on the your device.
        8. -
        - - diff --git a/OpenKeychain/src/main/res/raw-fa-rIR/help_start.html b/OpenKeychain/src/main/res/raw-fa-rIR/help_start.html deleted file mode 100644 index e8c04c7ae..000000000 --- a/OpenKeychain/src/main/res/raw-fa-rIR/help_start.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -

        شروع کار

        -

        First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

        - -

        It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

        - -

        Applications

        -

        Several applications support OpenKeychain to encrypt/sign your private communication:

        -

        Conversations: Jabber/XMPP client

        -

        K-9 Mail: OpenKeychain support available in current alpha build!

        - -

        I found a bug in OpenKeychain!

        -

        Please report the bug using the issue tracker of OpenKeychain.

        - -

        هم بخشی کردن

        -

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

        - -

        ترجمه ها

        -

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

        - - - diff --git a/OpenKeychain/src/main/res/raw-fa-rIR/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-fa-rIR/nfc_beam_share.html deleted file mode 100644 index 083e055c7..000000000 --- a/OpenKeychain/src/main/res/raw-fa-rIR/nfc_beam_share.html +++ /dev/null @@ -1,11 +0,0 @@ - - - -
          -
        1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
        2. -
        3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
        4. -
        5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
        6. -
        7. Tap the card and the content will then load on the other person’s device.
        8. -
        - - diff --git a/OpenKeychain/src/main/res/raw-fr/help_about.html b/OpenKeychain/src/main/res/raw-fr/help_about.html index 00370c77e..351bdc8f4 100644 --- a/OpenKeychain/src/main/res/raw-fr/help_about.html +++ b/OpenKeychain/src/main/res/raw-fr/help_about.html @@ -19,6 +19,7 @@
      • Paul Sarbinowski
      • Sreeram Boyapati
      • Vincent Breitmoser
      • +
      • Tim Bray

      Les développeurs d'APG 1.x

        diff --git a/OpenKeychain/src/main/res/raw-fr/help_changelog.html b/OpenKeychain/src/main/res/raw-fr/help_changelog.html index 3a8b958c8..2746881fb 100644 --- a/OpenKeychain/src/main/res/raw-fr/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-fr/help_changelog.html @@ -3,11 +3,11 @@

        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)
        • +
        • Violet ! (Dominik, Vincent)
        • +
        • Nouvelle présentation de la visualisation des clefs (Dominik, Vincent)
        • +
        • Nouveaux boutons Android plats (Dominik, Vincent)
        • +
        • Correctifs de l'API (Dominik)
        • +
        • Importation de Keybase.io (Tim Bray)

        2.6.1

          diff --git a/OpenKeychain/src/main/res/raw-fr/help_start.html b/OpenKeychain/src/main/res/raw-fr/help_start.html index 114bc3d81..01a4baa81 100644 --- a/OpenKeychain/src/main/res/raw-fr/help_start.html +++ b/OpenKeychain/src/main/res/raw-fr/help_start.html @@ -4,12 +4,10 @@

          Commencer

          Il vous faut d'abord une clef personnelle secrète. Créez-en une avec l'option du menu dans « Clefs » ou importer des clefs secrètes existantes. Ensuite vous pourrez télécharger les clefs de vos amis ou les échanger avec des codes QR ou par la NFC.

          -

          Il vous est recommendé d'installer le gestionnaire de fichiers OI pour sa fonction améliorée de séléction des fichiers et le lecteur de codes à barres pour balayer les codes QR générés. Cliquer sur les liens ouvrira Google Play Store ou F-Droid pour l'installation.

          +

          Il vous est recommandé d'installer le gestionnaire de fichiers OI pour sa fonction améliorée de sélection des fichiers et le lecteur de codes à barres pour balayer les codes QR générés. Cliquer sur les liens ouvrira Google Play Store ou F-Droid pour l'installation.

          Applications

          -

          Plusieurs applications prennent en charge OpenKeychain pour chiffrer/signer vos communications privées :

          -

          Conversations : un client Jabber/XMPP

          -

          K-9 Mail : la prise en charge d'OpenKeychain est disponible dans la version alpha actuelle !

          +

          Plusieurs applications prennent en charge OpenKeychain pour chiffrer/signer vos communications privées :

          K-9 Mail : OpenKeychain est pris en charge dans la version alphaactuelle !

          Conversations
          : clilent Jabber/XMPP

          PGPAuth
          : appli pour envoyer une demande signée par PGP à un serveur pour ouvrir ou fermer quelque chose, par exemple une porte

          J'ai trouvé un bogue dans OpenKeychain !

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

          diff --git a/OpenKeychain/src/main/res/raw-fr/help_wot.html b/OpenKeychain/src/main/res/raw-fr/help_wot.html new file mode 100644 index 000000000..4162c9b1b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-fr/help_wot.html @@ -0,0 +1,17 @@ + + + +

          Toile confiance

          +

          La toile de confiance décrit la partie de PGP qui s'occupe de la création et du suivi des certifications. Elle fournit des mécanismes pour aider l'utilisateur à suivre à qui appartient une clef publique, et partager cette information avec les autres. Pour assurer la confidentialité d'une communication chiffrée, il est essentiel de savoir que la clef publique vers laquelle vous chiffrez appartient à la personne à qui vous croyez qu'elle appartient.

          + +

          Prise en charge dans OpenKeychain

          +

          OpenKeychain offre seulement une prise en charge de base de la toile de confiance. Un travail important est en cours et ceci pourrait changer dans les versions à venir.

          + +

          Modèle de confiance

          +

          L'évaluation de la confiance est fondée sur la simple supposition que toutes les clefs ayant des clefs secrètes disponibles sont de confiance. Les clefs publiques contenant au moins un ID d'utilisateur certifié par une clef de confiance seront marquées par un point vert dans le listage des clefs. Il n'est pas (encore) possible de spécifier les niveaux de confiance pour les certificats d'autres clefs publiques inconnues.

          + +

          Certifications des clefs

          +

          La prise en charge de la certification des clefs est disponible et les ID d'utilisateur peuvent être certifiées individuellement. Il n'est pas encore possible de spécifier le niveau de confiance ou de créer des certificats locaux et d'autres types spéciaux.

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

          http://www.openkeychain.org

          -

          OpenKeychain un implementazione OpenPGP per Android.

          -

          Licenza: GPLv3+

          - -

          Sviluppatori OpenKeychain

          -
            -
          • Dominik Schürmann (Capo Sviluppatore)
          • -
          • Ash Hughes (Patch crittografia)
          • -
          • Brian C. Barnes
          • -
          • Bahtiar 'kalkin' Gadimov (Interfaccia Utente)
          • -
          • Daniel Hammann
          • -
          • Daniel Haß
          • -
          • Greg Witczak
          • -
          • Miroojin Bakshi
          • -
          • Nikhil Peter Raj
          • -
          • Paul Sarbinowski
          • -
          • Sreeram Boyapati
          • -
          • Vincent Breitmoser
          • -
          -

          Sviluppatori APG 1.x

          -
            -
          • Thialfihar (Capo Sviluppatore)
          • -
          • 'Senecaso' (QRCode, firma chiavi, caricamento chiavi)
          • -
          • Markus Doits
          • -
          -

          Librerie

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

          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

          -
            -
          • alcune correzioni per i bug di regressione
          • -
          -

          2.6

          -
            -
          • certificazioni chiave (grazie a Vincent Breitmoser)
          • -
          • supporto per chiavi segrete parziali GnuPG (grazie a Vincent Breitmoser)
          • -
          • nuovo design per la verifica della firma
          • -
          • lunghezza chiave personalizzata (grazie a Greg Witczak)
          • -
          • fix funzionalità di condivisione da altre app
          • -
          -

          2.5

          -
            -
          • Corretta la decodifica di messaggi PGP / file simmetrici
          • -
          • Refactoring della schermata di modifica chiave (grazie a Ash Hughes)
          • -
          • nuovo design moderno per le schermate di codifica / decodifica
          • -
          • OpenPGP API versione 3 (api account multipli, correzioni interne, ricerca chiavi)
          • -
          -

          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.

          -
            -
          • nuova lista chiave unificata
          • -
          • impronta chiave colorata
          • -
          • supporto per porte
          • -
          • disattiva la possibilità di generare chiavi deboli
          • -
          • molto più lavoro interno sulle API
          • -
          • certificazione ID utente
          • -
          • interrogazione keyserver basate su output leggibile a livello macchina
          • -
          • blocco del menu di navigazione sui tablet
          • -
          • suggerimenti per e-mail sulla creazione di chiavi
          • -
          • ricerca nelle liste di chiavi pubbliche
          • -
          • e molti altri miglioramenti e correzioni ...
          • -
          -

          2.3.1

          -
            -
          • correzione del crash quando si aggiorna da versioni precedenti
          • -
          -

          2.3

          -
            -
          • rimossa esportazione non necessaria delle chiavi pubbliche quando si esportano le chiavi private (grazie a Ash Hughes)
          • -
          • corretto impostazione data di scadenza delle chiavi (grazie a Ash Hughes)
          • -
          • altre correzioni interne quando si modificano le chiavi (grazie a Ash Hughes)
          • -
          • interrogazione server delle chiavi direttamente dalla schermata di importazione
          • -
          • corretto layout e dialog style su Android 2.2-3.0
          • -
          • corretto crash su chiavi con id utente vuoto
          • -
          • corretto crash e liste vuote quando si torna dalla schermata di firma
          • -
          • Bouncy Castle (libreria crittografica) aggiornata da 1.47 a 1.50 e compilata da sorgente
          • -
          • corretto upload delle chiavi dalla schermata di firma
          • -
          -

          2.2

          -
            -
          • nuovo design con drawer di navigazione
          • -
          • nuovo design per la lista chiavi pubbliche
          • -
          • nuova visuale chiavi pubbliche
          • -
          • correzione bug per importazione chiavi
          • -
          • Chiave certificazione incrociata (grazie a Ash Hughes)
          • -
          • password UTF-8 gestite correttamente (grazie a Ash Hughes)
          • -
          • Prima versione con nuove lingue (grazie ai contributori su Transifex)
          • -
          • condivisione di chiavi via Codici QR corretta e migliorata
          • -
          • Verifica firma pacchetto per API
          • -
          -

          2.1.1

          -
            -
          • Aggiornamenti API, preparazione per integrazione con K-9 Mail
          • -
          -

          2.1

          -
            -
          • molte correzioni di bug
          • -
          • nuove API per sviluppatori
          • -
          • PRNG bug fix by Google
          • -
          -

          2.0

          -
            -
          • completo restyle
          • -
          • condivisione chiavi pubbliche via codici qr, nfc beam
          • -
          • firma chiavi
          • -
          • Carica chiavi sul server
          • -
          • corrette caratteristiche di importazione
          • -
          • nuova AIDL API
          • -
          -

          1.0.8

          -
            -
          • supporto base per server delle chiavi
          • -
          • app2sd
          • -
          • Aggiunte opzioni per la cache della frase di accesso: 1, 2, 4, 8 ore
          • -
          • Traduzioni: Norvegese (grazie, Sander Danielsen), Cinese (grazie, Zhang Fredrick)
          • -
          • correzione bug
          • -
          • ottimizzazioni
          • -
          -

          1.0.7

          -
            -
          • corretto problema con la verifica firma di testi con capo finale
          • -
          • maggiori opzioni per il tempo di mantenimento della cache della frase di accesso (20, 40, 60 minuti)
          • -
          -

          1.0.6

          -
            -
          • crash della aggiunta degli account risolto su Froyo
          • -
          • Cancellazione sicura dei file
          • -
          • opzione per cancellare file delle chiavi dopo l'importazione
          • -
          • flusso codifica/decodifica (galleria, ecc.)
          • -
          • nuove opzioni (lingua, forza firme v3)
          • -
          • cambiamenti interfaccia
          • -
          • correzione bug
          • -
          -

          1.0.5

          -
            -
          • Traduzione Italiana e Tedesca
          • -
          • dimensioni pacchetto ridotte, a causa della riduzione dei sorgenti BC
          • -
          • Nuove preferenze GUI
          • -
          • Regolazione layout per la localizzazione
          • -
          • correzione bug firma
          • -
          -

          1.0.4

          -
            -
          • corretto altro crash causato da alcuni bug SDK con query builder
          • -
          -

          1.0.3

          -
            -
          • corretto crash durante codifica/firma e possibilita' di esportare chiave
          • -
          -

          1.0.2

          -
            -
          • liste chiavi filtrabili
          • -
          • preselezione di chiavi di codifica intelligente
          • -
          • nuovo gestore intent per VIEW e SEND, permette la codifica/decodifica file all'infuori di file manager
          • -
          • caratteristiche corrette e aggiunte (preselezione chiavi) per K-9 Mail. nuova build beta disponibile
          • -
          -

          1.0.1

          -
            -
          • elencazione account GMail corrotta in 1.0.0, corretta nuovamente
          • -
          -

          1.0.0

          -
            -
          • integrazione K-9 Mail, APG supporto beta build di K-9 Mail
          • -
          • supporto per altri file manager (incluso ASTRO)
          • -
          • traduzione Slovena
          • -
          • Nuovo database, piu' veloce, utilizzo memoria ridotto
          • -
          • Definiti Intent e ContentProvider per le altre app
          • -
          • correzione bug
          • -
          - - diff --git a/OpenKeychain/src/main/res/raw-it-rIT/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-it-rIT/help_nfc_beam.html deleted file mode 100644 index 6ff56194e..000000000 --- a/OpenKeychain/src/main/res/raw-it-rIT/help_nfc_beam.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

          Come ricevere le chiavi

          -
            -
          1. Vai ai contatti dei tuoi partner e apri il contatto che si desidera condividere.
          2. -
          3. Mantieni i due dispositivi vicini (devono quasi toccarsi) e sentirai una vibrazione.
          4. -
          5. Dopo che ha vibrato, vedrai il contenuto del tuo dispositivo diventare come una scheda e nello sfondo apparirà una animazione come la propulsione a curvatura di Star Trek.
          6. -
          7. Tocca la scheda e il contenuto dopo si trasferira' nel dispositivo dell'altra persona.
          8. -
          - - diff --git a/OpenKeychain/src/main/res/raw-it-rIT/help_start.html b/OpenKeychain/src/main/res/raw-it-rIT/help_start.html deleted file mode 100644 index 77866bc8c..000000000 --- a/OpenKeychain/src/main/res/raw-it-rIT/help_start.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -

          Per iniziare

          -

          In primo luogo è necessaria una chiave segreta personale. Creane una tramite il menu opzioni sotto la voce "Chiavi" o importa chiavi segrete già esistenti. Successivamente, è possibile scaricare le chiavi dei vostri amici o scambiarle con i codici QR o NFC.

          - -

          Si raccomanda di installare OI File Manager per una migliore selezione dei file e Barcode Scanner per scansionare i codici QR. I collegamenti verranno aperti in Google Play Store o F-Droid per l'installazione.

          - -

          Applications

          -

          Several applications support OpenKeychain to encrypt/sign your private communication:

          -

          Conversations: Jabber/XMPP client

          -

          K-9 Mail: OpenKeychain support available in current alpha build!

          - -

          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-it-rIT/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-it-rIT/nfc_beam_share.html deleted file mode 100644 index e75877efe..000000000 --- a/OpenKeychain/src/main/res/raw-it-rIT/nfc_beam_share.html +++ /dev/null @@ -1,11 +0,0 @@ - - - -
            -
          1. Assicurati che NFC sia acceso in Impostazioni > Altro > NFC a assicurati che Android Beam sia pure su On nella stessa sezione.
          2. -
          3. Mantieni i due dispositivi vicini (devono quasi toccarsi) e sentirai una vibrazione.
          4. -
          5. Dopo che ha vibrato, vedrai il contenuto del tuo dispositivo diventare come una scheda e nello sfondo apparirà una animazione come la propulsione a curvatura di Star Trek.
          6. -
          7. Tocca la scheda e il contenuto dopo si trasferira' nel dispositivo dell'altra persona.
          8. -
          - - diff --git a/OpenKeychain/src/main/res/raw-it/help_about.html b/OpenKeychain/src/main/res/raw-it/help_about.html new file mode 100644 index 000000000..4c8c0af07 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-it/help_about.html @@ -0,0 +1,50 @@ + + + +

          http://www.openkeychain.org

          +

          OpenKeychain un implementazione OpenPGP per Android.

          +

          Licenza: GPLv3+

          + +

          Sviluppatori OpenKeychain

          +
            +
          • Dominik Schürmann (Capo Sviluppatore)
          • +
          • Ash Hughes (Patch crittografia)
          • +
          • Brian C. Barnes
          • +
          • Bahtiar 'kalkin' Gadimov (Interfaccia Utente)
          • +
          • Daniel Hammann
          • +
          • Daniel Haß
          • +
          • Greg Witczak
          • +
          • Miroojin Bakshi
          • +
          • Nikhil Peter Raj
          • +
          • Paul Sarbinowski
          • +
          • Sreeram Boyapati
          • +
          • Vincent Breitmoser
          • +
          • Tim Bray
          • +
          +

          Sviluppatori APG 1.x

          +
            +
          • Thialfihar (Capo Sviluppatore)
          • +
          • 'Senecaso' (QRCode, firma chiavi, caricamento chiavi)
          • +
          • Markus Doits
          • +
          +

          Librerie

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

          2.7

          +
            +
          • Porpora! (Dominik, Vincent)
          • +
          • Nuovo design della schermata chiavi (Dominik, Vincent)
          • +
          • Nuovi pulsanti piatti Android (Dominik, Vincent)
          • +
          • Correzioni API (Dominik)
          • +
          • Importazione Keybase.io (Tim Bray)
          • +
          +

          2.6.1

          +
            +
          • alcune correzioni per i bug di regressione
          • +
          +

          2.6

          +
            +
          • certificazioni chiave (grazie a Vincent Breitmoser)
          • +
          • supporto per chiavi segrete parziali GnuPG (grazie a Vincent Breitmoser)
          • +
          • nuovo design per la verifica della firma
          • +
          • lunghezza chiave personalizzata (grazie a Greg Witczak)
          • +
          • fix funzionalità di condivisione da altre app
          • +
          +

          2.5

          +
            +
          • Corretta la decodifica di messaggi PGP / file simmetrici
          • +
          • Refactoring della schermata di modifica chiave (grazie a Ash Hughes)
          • +
          • nuovo design moderno per le schermate di codifica / decodifica
          • +
          • OpenPGP API versione 3 (api account multipli, correzioni interne, ricerca chiavi)
          • +
          +

          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.

          +
            +
          • nuova lista chiave unificata
          • +
          • impronta chiave colorata
          • +
          • supporto per porte
          • +
          • disattiva la possibilità di generare chiavi deboli
          • +
          • molto più lavoro interno sulle API
          • +
          • certificazione ID utente
          • +
          • interrogazione keyserver basate su output leggibile a livello macchina
          • +
          • blocco del menu di navigazione sui tablet
          • +
          • suggerimenti per e-mail sulla creazione di chiavi
          • +
          • ricerca nelle liste di chiavi pubbliche
          • +
          • e molti altri miglioramenti e correzioni ...
          • +
          +

          2.3.1

          +
            +
          • correzione del crash quando si aggiorna da versioni precedenti
          • +
          +

          2.3

          +
            +
          • rimossa esportazione non necessaria delle chiavi pubbliche quando si esportano le chiavi private (grazie a Ash Hughes)
          • +
          • corretto impostazione data di scadenza delle chiavi (grazie a Ash Hughes)
          • +
          • altre correzioni interne quando si modificano le chiavi (grazie a Ash Hughes)
          • +
          • interrogazione server delle chiavi direttamente dalla schermata di importazione
          • +
          • corretto layout e dialog style su Android 2.2-3.0
          • +
          • corretto crash su chiavi con id utente vuoto
          • +
          • corretto crash e liste vuote quando si torna dalla schermata di firma
          • +
          • Bouncy Castle (libreria crittografica) aggiornata da 1.47 a 1.50 e compilata da sorgente
          • +
          • corretto upload delle chiavi dalla schermata di firma
          • +
          +

          2.2

          +
            +
          • nuovo design con drawer di navigazione
          • +
          • nuovo design per la lista chiavi pubbliche
          • +
          • nuova visuale chiavi pubbliche
          • +
          • correzione bug per importazione chiavi
          • +
          • Chiave certificazione incrociata (grazie a Ash Hughes)
          • +
          • password UTF-8 gestite correttamente (grazie a Ash Hughes)
          • +
          • Prima versione con nuove lingue (grazie ai contributori su Transifex)
          • +
          • condivisione di chiavi via Codici QR corretta e migliorata
          • +
          • Verifica firma pacchetto per API
          • +
          +

          2.1.1

          +
            +
          • Aggiornamenti API, preparazione per integrazione con K-9 Mail
          • +
          +

          2.1

          +
            +
          • molte correzioni di bug
          • +
          • nuove API per sviluppatori
          • +
          • PRNG bug fix by Google
          • +
          +

          2.0

          +
            +
          • completo restyle
          • +
          • condivisione chiavi pubbliche via codici qr, nfc beam
          • +
          • firma chiavi
          • +
          • Carica chiavi sul server
          • +
          • corrette caratteristiche di importazione
          • +
          • nuova AIDL API
          • +
          +

          1.0.8

          +
            +
          • supporto base per server delle chiavi
          • +
          • app2sd
          • +
          • Aggiunte opzioni per la cache della frase di accesso: 1, 2, 4, 8 ore
          • +
          • Traduzioni: Norvegese (grazie, Sander Danielsen), Cinese (grazie, Zhang Fredrick)
          • +
          • correzione bug
          • +
          • ottimizzazioni
          • +
          +

          1.0.7

          +
            +
          • corretto problema con la verifica firma di testi con capo finale
          • +
          • maggiori opzioni per il tempo di mantenimento della cache della frase di accesso (20, 40, 60 minuti)
          • +
          +

          1.0.6

          +
            +
          • crash della aggiunta degli account risolto su Froyo
          • +
          • Cancellazione sicura dei file
          • +
          • opzione per cancellare file delle chiavi dopo l'importazione
          • +
          • flusso codifica/decodifica (galleria, ecc.)
          • +
          • nuove opzioni (lingua, forza firme v3)
          • +
          • cambiamenti interfaccia
          • +
          • correzione bug
          • +
          +

          1.0.5

          +
            +
          • Traduzione Italiana e Tedesca
          • +
          • dimensioni pacchetto ridotte, a causa della riduzione dei sorgenti BC
          • +
          • Nuove preferenze GUI
          • +
          • Regolazione layout per la localizzazione
          • +
          • correzione bug firma
          • +
          +

          1.0.4

          +
            +
          • corretto altro crash causato da alcuni bug SDK con query builder
          • +
          +

          1.0.3

          +
            +
          • corretto crash durante codifica/firma e possibilita' di esportare chiave
          • +
          +

          1.0.2

          +
            +
          • liste chiavi filtrabili
          • +
          • preselezione di chiavi di codifica intelligente
          • +
          • nuovo gestore intent per VIEW e SEND, permette la codifica/decodifica file all'infuori di file manager
          • +
          • caratteristiche corrette e aggiunte (preselezione chiavi) per K-9 Mail. nuova build beta disponibile
          • +
          +

          1.0.1

          +
            +
          • elencazione account GMail corrotta in 1.0.0, corretta nuovamente
          • +
          +

          1.0.0

          +
            +
          • integrazione K-9 Mail, APG supporto beta build di K-9 Mail
          • +
          • supporto per altri file manager (incluso ASTRO)
          • +
          • traduzione Slovena
          • +
          • Nuovo database, piu' veloce, utilizzo memoria ridotto
          • +
          • Definiti Intent e ContentProvider per le altre app
          • +
          • correzione bug
          • +
          + + diff --git a/OpenKeychain/src/main/res/raw-it/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-it/help_nfc_beam.html new file mode 100644 index 000000000..6ff56194e --- /dev/null +++ b/OpenKeychain/src/main/res/raw-it/help_nfc_beam.html @@ -0,0 +1,12 @@ + + + +

          Come ricevere le chiavi

          +
            +
          1. Vai ai contatti dei tuoi partner e apri il contatto che si desidera condividere.
          2. +
          3. Mantieni i due dispositivi vicini (devono quasi toccarsi) e sentirai una vibrazione.
          4. +
          5. Dopo che ha vibrato, vedrai il contenuto del tuo dispositivo diventare come una scheda e nello sfondo apparirà una animazione come la propulsione a curvatura di Star Trek.
          6. +
          7. Tocca la scheda e il contenuto dopo si trasferira' nel dispositivo dell'altra persona.
          8. +
          + + diff --git a/OpenKeychain/src/main/res/raw-it/help_start.html b/OpenKeychain/src/main/res/raw-it/help_start.html new file mode 100644 index 000000000..138e0ece2 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-it/help_start.html @@ -0,0 +1,22 @@ + + + +

          Per iniziare

          +

          In primo luogo è necessaria una chiave segreta personale. Creane una tramite il menu opzioni sotto la voce "Chiavi" o importa chiavi segrete già esistenti. Successivamente, è possibile scaricare le chiavi dei vostri amici o scambiarle con i codici QR o NFC.

          + +

          Si raccomanda di installare OI File Manager per una migliore selezione dei file e Barcode Scanner per scansionare i codici QR. I collegamenti verranno aperti in Google Play Store o F-Droid per l'installazione.

          + +

          Applicazioni

          +

          Diverse applicazioni supportano OpenKeychain per codificare/firmare le tue comunicazioni private:

          K-9 Mail: Supporto per OpenKeychain disponibile nella attuale versione alpha!

          Conversations
          : Client Jabber/XMPP

          App per inviare una richiesta firmata PGP a un server per aprire o chiudere qualcosa, ad esempio, una porta

          + +

          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-it/help_wot.html b/OpenKeychain/src/main/res/raw-it/help_wot.html new file mode 100644 index 000000000..98e3aafea --- /dev/null +++ b/OpenKeychain/src/main/res/raw-it/help_wot.html @@ -0,0 +1,17 @@ + + + +

          Rete di Fiducia

          +

          La Rete di Fiducia descrive la parte del PGP che si occupa di creazione e gestione delle certificazioni. Essa fornisce meccanismi per aiutare l'utente a tenere traccia di chi appartiene una chiave pubblica, e condividere queste informazioni con gli altri; Per garantire la privacy della comunicazione crittografata, è essenziale sapere che la chiave pubblica per crittografare appartiene alla persona che si pensa.

          + +

          Supporto in OpenKeychain

          +

          Esiste solo un supporto di base per le Reti di Fiducia in OpenKeychain. Questo è un grosso lavoro in corso e soggetto a modifiche nei prossimi rilasci.

          + +

          Modello di Fiducia

          +

          La valutazione di fiducia si basa sul semplice presupposto che tutte le chiavi che hanno chiavi segrete disponibili sono attendibili. Le chiavi pubbliche che contengono almeno un id utente certificato da una chiave di fiducia saranno contrassegnati con un punto verde negli elenchi principali. Non è (ancora) possibile specificare livelli di attendibilità per i certificati di altre chiavi pubbliche conosciute.

          + +

          Chiavi di certificazione

          +

          Il supporto per la certificazione chiave è disponibile, e gli id utenti possono essere certificati singolarmente. Non è ancora possibile specificare il livello di fiducia o creare certificati locali e altro di tipo speciale.

          + + + diff --git a/OpenKeychain/src/main/res/raw-it/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-it/nfc_beam_share.html new file mode 100644 index 000000000..e75877efe --- /dev/null +++ b/OpenKeychain/src/main/res/raw-it/nfc_beam_share.html @@ -0,0 +1,11 @@ + + + +
            +
          1. Assicurati che NFC sia acceso in Impostazioni > Altro > NFC a assicurati che Android Beam sia pure su On nella stessa sezione.
          2. +
          3. Mantieni i due dispositivi vicini (devono quasi toccarsi) e sentirai una vibrazione.
          4. +
          5. Dopo che ha vibrato, vedrai il contenuto del tuo dispositivo diventare come una scheda e nello sfondo apparirà una animazione come la propulsione a curvatura di Star Trek.
          6. +
          7. Tocca la scheda e il contenuto dopo si trasferira' nel dispositivo dell'altra persona.
          8. +
          + + diff --git a/OpenKeychain/src/main/res/raw-ja/help_about.html b/OpenKeychain/src/main/res/raw-ja/help_about.html index e60add867..a4670e103 100644 --- a/OpenKeychain/src/main/res/raw-ja/help_about.html +++ b/OpenKeychain/src/main/res/raw-ja/help_about.html @@ -19,6 +19,7 @@
        • Paul Sarbinowski
        • Sreeram Boyapati
        • Vincent Breitmoser
        • +
        • Tim Bray

        APG 1.xの開発者達

          diff --git a/OpenKeychain/src/main/res/raw-ja/help_changelog.html b/OpenKeychain/src/main/res/raw-ja/help_changelog.html index 4bf40cbc3..0aae03ba6 100644 --- a/OpenKeychain/src/main/res/raw-ja/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-ja/help_changelog.html @@ -4,10 +4,10 @@

          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)
          • +
          • 新しい鍵のビューのデザイン (Dominik, Vincent)
          • +
          • 新しいフラットな Android ボタン (Dominik, Vincent)
          • +
          • API のフィックス (Dominik)
          • +
          • Keybase.io からのインポート (Tim Bray)

          2.6.1

            diff --git a/OpenKeychain/src/main/res/raw-ja/help_start.html b/OpenKeychain/src/main/res/raw-ja/help_start.html index 502d4adb8..1e522cc74 100644 --- a/OpenKeychain/src/main/res/raw-ja/help_start.html +++ b/OpenKeychain/src/main/res/raw-ja/help_start.html @@ -2,14 +2,12 @@

            入門

            -

            最初にあなたの個人用秘密鍵が必要になります。オプションメニューの"鍵"で生成するか、既存の秘密鍵をインポートします。その後、あなたの友人の鍵をダウンロード、もしくはQRコードやNFCで交換します。

            +

            最初にあなたの個人用秘密鍵が必要になります。オプションメニューの"鍵"で生成するか、既存の秘密鍵をインポートします。その後、あなたの友人の鍵をダウンロード、もしくはQRコードやNFCで交換します。

            ファイルの選択を拡張するにはOI File ManagerBarcode Scannerを生成したQRコードのスキャンのため、それぞれのインストールを必要とします。 リンクをクリックして、Google Play Store上かF-Droidからインストールしてください。

            -

            Applications

            -

            Several applications support OpenKeychain to encrypt/sign your private communication:

            -

            Conversations: Jabber/XMPP client

            -

            K-9 Mail: OpenKeychain support available in current alpha build!

            +

            アプリケーション

            +

            OpenKeychainはプライベートな通信での暗号化/署名をいくつかのアプリケーションでサポートしています:

            K-9 Mail: 現在のOpenKeychain alpha build からサポートが有効です!

            やりとり
            : Jabber/XMPP クライアント

            PGPAuth
            : このアプリはPGP署名されたリクエストをサーバに送り、なにかしらを開けたり閉じたりします、たとえばドアとか

            OpenKeychainでバグを見付けた!

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

            diff --git a/OpenKeychain/src/main/res/raw-ja/help_wot.html b/OpenKeychain/src/main/res/raw-ja/help_wot.html new file mode 100644 index 000000000..3675b6258 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ja/help_wot.html @@ -0,0 +1,17 @@ + + + +

            信頼の輪

            +

            信頼の輪はPGPが証明の作成と維持する一面を説明します。ユーザが公開鍵が属する者の追跡を維持し、他のユーザーとその情報を共有する手助けになるメカニズムを提供します。暗号化通信のプライバシーを確保するためには、あなたが暗号化したいという相手の公開鍵が必要な要素となります

            + +

            OpenKeychainでサポート

            +

            OpenKeychainで信頼の輪の基本のみサポートされます。とても重い作業を進めており今後やってくるリリースにおいて状態が変更されていきます。

            + +

            信頼モデル

            +

            信頼の評価はシンプルな仮定に基づいています、それはすべての鍵は秘密鍵が信頼できるというものです。公開鍵は信頼された鍵で検証された最低1つのユーザIDを含んでおり、それは鍵リストにおいて、緑でマークされます。ただしそれは他の既知の公開鍵の信頼レベルを特別なものには(まだ)しません。

            + +

            鍵の検証

            +

            鍵検証のサポートが提供されており、ユーザIDは個別に検証できます。ただしそれは他の既知の公開鍵の信頼レベルを特別なものにはまだしないか他の特別なタイプの証明です。

            + + + diff --git a/OpenKeychain/src/main/res/raw-ko/help_about.html b/OpenKeychain/src/main/res/raw-ko/help_about.html index ae7e16aae..ab3c19375 100644 --- a/OpenKeychain/src/main/res/raw-ko/help_about.html +++ b/OpenKeychain/src/main/res/raw-ko/help_about.html @@ -19,6 +19,7 @@
          • Paul Sarbinowski
          • Sreeram Boyapati
          • Vincent Breitmoser
          • +
          • Tim Bray

          Developers APG 1.x

            diff --git a/OpenKeychain/src/main/res/raw-ko/help_start.html b/OpenKeychain/src/main/res/raw-ko/help_start.html index 6ded872ea..3a681f8fa 100644 --- a/OpenKeychain/src/main/res/raw-ko/help_start.html +++ b/OpenKeychain/src/main/res/raw-ko/help_start.html @@ -2,14 +2,12 @@

            Getting started

            -

            First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

            +

            First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

            It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

            Applications

            -

            Several applications support OpenKeychain to encrypt/sign your private communication:

            -

            Conversations: Jabber/XMPP client

            -

            K-9 Mail: OpenKeychain support available in current alpha build!

            +

            Several applications support OpenKeychain to encrypt/sign your private communication:

            K-9 Mail: OpenKeychain support available in current alpha build!

            Conversations
            : Jabber/XMPP client

            PGPAuth
            : App to send a PGP-signed request to a server to open or close something, e.g. a door

            I found a bug in OpenKeychain!

            Please report the bug using the issue tracker of OpenKeychain.

            diff --git a/OpenKeychain/src/main/res/raw-ko/help_wot.html b/OpenKeychain/src/main/res/raw-ko/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ko/help_wot.html @@ -0,0 +1,17 @@ + + + +

            Web of Trust

            +

            The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

            + +

            Support in OpenKeychain

            +

            There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

            + +

            Trust Model

            +

            Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

            + +

            Certifying keys

            +

            Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

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

            http://www.openkeychain.org

            -

            OpenKeychain is an OpenPGP implementation for Android.

            -

            License: GPLv3+

            - -

            Developers OpenKeychain

            -
              -
            • Dominik Schürmann (Lead developer)
            • -
            • Ash Hughes (crypto patches)
            • -
            • Brian C. Barnes
            • -
            • Bahtiar 'kalkin' Gadimov (UI)
            • -
            • Daniel Hammann
            • -
            • Daniel Haß
            • -
            • Greg Witczak
            • -
            • Miroojin Bakshi
            • -
            • Nikhil Peter Raj
            • -
            • Paul Sarbinowski
            • -
            • Sreeram Boyapati
            • -
            • Vincent Breitmoser
            • -
            -

            Developers APG 1.x

            -
              -
            • Thialfihar (Lead developer)
            • -
            • 'Senecaso' (QRCode, sign key, upload key)
            • -
            • Markus Doits
            • -
            -

            Libraries

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

            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 pgp messages/files
            • -
            • refactored edit key 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 pass phrase 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 pass phrase 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-nl-rNL/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-nl-rNL/help_nfc_beam.html deleted file mode 100644 index 88492731c..000000000 --- a/OpenKeychain/src/main/res/raw-nl-rNL/help_nfc_beam.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -

            How to receive keys

            -
              -
            1. Go to your partners contacts and open the contact you want to share.
            2. -
            3. Hold the two devices back to back (they have to be almost touching) and you’ll feel a vibration.
            4. -
            5. After it vibrates you’ll see the content on your partners device turn into a card-like object with Star Trek warp speed-looking animation in the background.
            6. -
            7. Tap the card and the content will then load on the your device.
            8. -
            - - diff --git a/OpenKeychain/src/main/res/raw-nl-rNL/help_start.html b/OpenKeychain/src/main/res/raw-nl-rNL/help_start.html deleted file mode 100644 index 6ded872ea..000000000 --- a/OpenKeychain/src/main/res/raw-nl-rNL/help_start.html +++ /dev/null @@ -1,24 +0,0 @@ - - - -

            Getting started

            -

            First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

            - -

            It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

            - -

            Applications

            -

            Several applications support OpenKeychain to encrypt/sign your private communication:

            -

            Conversations: Jabber/XMPP client

            -

            K-9 Mail: OpenKeychain support available in current alpha build!

            - -

            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-nl-rNL/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-nl-rNL/nfc_beam_share.html deleted file mode 100644 index 083e055c7..000000000 --- a/OpenKeychain/src/main/res/raw-nl-rNL/nfc_beam_share.html +++ /dev/null @@ -1,11 +0,0 @@ - - - -
              -
            1. Make sure that NFC is turned on in Settings > More > NFC and make sure that Android Beam is also on in the same section.
            2. -
            3. Hold the two devices back to back (they have to be almost touching) and you'll feel a vibration.
            4. -
            5. After it vibrates you'll see the content on your device turn into a card-like object with Star Trek warp speed-looking animation in the background.
            6. -
            7. Tap the card and the content will then load on the other person’s device.
            8. -
            - - diff --git a/OpenKeychain/src/main/res/raw-nl/help_about.html b/OpenKeychain/src/main/res/raw-nl/help_about.html new file mode 100644 index 000000000..0ac14d919 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/help_about.html @@ -0,0 +1,50 @@ + + + +

            http://www.openkeychain.org

            +

            OpenKeychain is een OpenPGP implementatie voor Android.

            +

            Licentie: GPLv3+

            + +

            Ontwikkelaars OpenKeychain

            +
              +
            • Dominik Schürmann (hoofdontwikkelaar)
            • +
            • Ash Hughes (crypto patches)
            • +
            • Brian C. Barnes
            • +
            • Bahtiar 'kalkin' Gadimov (UI)
            • +
            • Daniel Hammann
            • +
            • Daniel Haß
            • +
            • Greg Witczak
            • +
            • Miroojin Bakshi
            • +
            • Nikhil Peter Raj
            • +
            • Paul Sarbinowski
            • +
            • Sreeram Boyapati
            • +
            • Vincent Breitmoser
            • +
            • Tim Bray
            • +
            +

            Ontwikkelaars APG 1.x

            +
              +
            • Thialfihar (Hoofdontwikkelaar)
            • +
            • 'Senecaso' (QRCode, signeersleutel, uploadsleutel)
            • +
            • Markus Doits
            • +
            +

            Bibliotheken

            + + + diff --git a/OpenKeychain/src/main/res/raw-nl/help_changelog.html b/OpenKeychain/src/main/res/raw-nl/help_changelog.html new file mode 100644 index 000000000..38da3d57c --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/help_changelog.html @@ -0,0 +1,156 @@ + + + +

            2.7

            +
              +
            • Paars! (Dominik, Vincent)
            • +
            • Nieuw sleutel scherm design (Dominik, Vincent)
            • +
            • Nieuwe platte Android toetsen (Dominik, Vincent)
            • +
            • API fixes (Dominik)
            • +
            • Keybase.io import (Tim Bray)
            • +
            +

            2.6.1

            +
              +
            • enige fixes voor regressie bugs
            • +
            +

            2.6

            +
              +
            • sleutel certificaties (dank aan Vincent Breitmoser)
            • +
            • support voor GnuPG deel geheime sleutels (dank aan Vincent Breitmoser)
            • +
            • nieuw design voor handtekeningsverificatie
            • +
            • aangepaste sleutellengte (dank aan Greg Witczak)
            • +
            • fix deel-functionaliteit van andere apps
            • +
            +

            2.5

            +
              +
            • fix decodering van symmetrische pgp berichten/bestanden
            • +
            • bewerk sleutel scherm opnieuw gedaan (dank aan Ash Hughes)
            • +
            • nieuw modern design voor codeer/decodeer schermen
            • +
            • OpenPGP API versie 3 (meerdere api accounts, interne fixes, sleutel lookup)
            • +
            +

            2.4

            +

            Bedankt aan alle gegadigden van Google Summer of Code 2014 die deze release feature groot en zonder bugs maakten! +Naast meerdere kleine patches zijn een redelijk aantal patches gemaakt door de volgende mensen (in alfabetische volgorde): +Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Paul Sarbinowski, Sreeram Boyapati, Vincent Breitmoser.

            +
              +
            • nieuwe verenigde sleutellijst
            • +
            • gekleurde sleutel vingerafdruk
            • +
            • support voor sleutelserver ports
            • +
            • deactiveer mogelijkheid om zwakke sleutels te genereren
            • +
            • veel meer intern werk aan het API
            • +
            • certificeer gebruiker ids
            • +
            • sleutelserver opdracht gebaseerd op machine-leesbare output
            • +
            • Versleutel navigatiemenu op tablets
            • +
            • suggesties voor e-mails bij aanmaken van sleutels
            • +
            • zoek in publieke sleutel lijsten
            • +
            • en veel meer verbeteringen en fixes...
            • +
            +

            2.3.1

            +
              +
            • hotfix voor crash bij het upgraden van oude versies
            • +
            +

            2.3

            +
              +
            • verwijder onnodige export van publieke sleutels bij het exporteren van de geheime sleutel (dank aan Ash Hughes)
            • +
            • fix instellingen verloopdata op sleutels (dank aan Ash Hughes)
            • +
            • meer interne fixes tijdens het bewerken van sleutels (dank aan Ash Hughes)
            • +
            • sleutelservers direct van het importeerscherm zoeken
            • +
            • fix layout en dialoog stijl op Android 2.2-3.0
            • +
            • fix crash op sleutels met lege gebruiker id's
            • +
            • fix crash en lege lijsten bij het terugkomen van het ondertekenscherm
            • +
            • Bouncy Castle (cryptografie bibliotheek) bijgewerkt van 1.47 naar 1.50 en versie van bron
            • +
            • fix uploaden van sleutel van ondertekenscherm
            • +
            +

            2.2

            +
              +
            • nieuw design met navigatiemenu
            • +
            • nieuw publieke sleutel lijst design
            • +
            • nieuw publieke sleutel uiterlijk
            • +
            • bug fixes voor importeren van sleutels
            • +
            • sleutel kruis-certificatie (dank aan Ash Hughes)
            • +
            • behandelt UTF-8 wachtwoorden goed (dank aan Ash Hughes)
            • +
            • eerste versie met nieuwe talen (dank aan de medewerkers bij Transifex)
            • +
            • delen van sleutels via QR Codes gefixt en verbeterd
            • +
            • pakket handtekening verificatie voor API
            • +
            +

            2.1.1

            +
              +
            • API Updates, voorbereiding voor K-9 Mail integratie
            • +
            +

            2.1

            +
              +
            • veel bugfixes
            • +
            • nieuwe API voor ontwikkelaars
            • +
            • PRNG bug fix door Google
            • +
            +

            2.0

            +
              +
            • complete herdesign
            • +
            • deel publieke sleutels via qr codes, nfc beam
            • +
            • sleutels ondertekenen
            • +
            • upload sleutels naar server
            • +
            • fixt importeerfouten
            • +
            • nieuwe AIDL API
            • +
            +

            1.0.8

            +
              +
            • basis sleutelserver support
            • +
            • app2sd
            • +
            • meer keuzes voor wachtwoord cache: 1, 2, 4, 8, uren
            • +
            • vertalingen: Noors (bedankt, Sander Danielsen), Chinees (bedankt, Zhang Fredrick)
            • +
            • bugfixes
            • +
            • optimalisaties
            • +
            +

            1.0.7

            +
              +
            • probleem met handtekeningverificatie van teksten met nieuwe trailing newline gefixt
            • +
            • meer opties voor wachtwoord cache tijd te leven (20, 40, 60 minuten)
            • +
            +

            1.0.6

            +
              +
            • account toevoegen crash op Froyo gefixt
            • +
            • veilige bestandsverwijdering
            • +
            • optie om sleutel te verwijderen na importeren
            • +
            • stream codering/decodering (gallery, etc.)
            • +
            • nieuwe opties (taal, force v3 handtekeningen)
            • +
            • interface veranderingen
            • +
            • bugfixes
            • +
            +

            1.0.5

            +
              +
            • Duitse en Italiaanse vertaling
            • +
            • veel kleiner pakket, door verminderde BC bronnen
            • +
            • nieuwe voorkeuren GUI
            • +
            • layout aanpassing voor plaatsbepaling
            • +
            • handtekening bugfix
            • +
            +

            1.0.4

            +
              +
            • nog een crash gefixt veroorzaakt door een SDK bug met query builder
            • +
            +

            1.0.3

            +
              +
            • crashes tijdens codering/signering en mogelijk sleutel importeren gefixt
            • +
            +

            1.0.2

            +
              +
            • filterbare sleutellijsten
            • +
            • slimmere voor-selectie van codeersleutels
            • +
            • nieuwe Intent behandeling voor VIEW en SEND, maakt het mogelijk om bestanden te coderen/decoderen uit bestandsmanagers
            • +
            • fixes en meer functies (sleutel voorselectie) voor K-9 Mail, nieuwe beta versie beschikbaar
            • +
            +

            1.0.1

            +
              +
            • GMail account lijsten was stuk in 1.0.0, weer gefixt
            • +
            +

            1.0.0

            +
              +
            • K-9 Mail integratie, APG ondersteunende beta versie van K-9 Mail
            • +
            • support voor meer bestandsmanagers (inclusief ASTRO)
            • +
            • Slovenische vertaling
            • +
            • nieuwe database, veel sneller, minder geheugenverbruik
            • +
            • gedefinieerde Intents en inhoudsprovider voor andere apps
            • +
            • bugfixes
            • +
            + + diff --git a/OpenKeychain/src/main/res/raw-nl/help_nfc_beam.html b/OpenKeychain/src/main/res/raw-nl/help_nfc_beam.html new file mode 100644 index 000000000..ac5cebb4b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/help_nfc_beam.html @@ -0,0 +1,12 @@ + + + +

            Hoe sleutels te ontvangen

            +
              +
            1. Ga naar uw partners contacten en open het contact dat u wilt delen.
            2. +
            3. Houd de twee apparaten met de achterkant tegen elkaar (ze moeten elkaar bijna aanraken) en u zult een trilling voelen.
            4. +
            5. Nadat het trilt zult u de inhoud op uw partners apparaat in een soort kaart zien veranderen met Star Trek warp snelheid-eruitziende animatie op de achtergrond.
            6. +
            7. Druk op de kaart en de inhoud zal dan laden op het apparaat.
            8. +
            + + diff --git a/OpenKeychain/src/main/res/raw-nl/help_start.html b/OpenKeychain/src/main/res/raw-nl/help_start.html new file mode 100644 index 000000000..40c79e95f --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/help_start.html @@ -0,0 +1,22 @@ + + + +

            Aan de slag

            +

            Eerst heeft u een persoonlijke geheime sleutel nodig. Maak er een via het opties menu in "Sleutels" of importeer bestaande geheime sleutels. Daarna kunt u de sleutels van uw vrienden importeren of ze uitwisselen via QR Codes of NFC.

            + +

            Het is aanbevolen dat u OI Bestandsmanager installeert voor betere bestandsselectie en Barcode Scanner om gegenereerde QR codes te scannen. Door op de links te klikken zullen de Google Play Store of F-Droid openen voor installatie.

            + +

            Applicaties

            +

            Verschillende applicaties ondersteunen OpenKeychain om uw privécommunicatie te coderen/signeren

            K-9 Mail: OpenKeychain ondersteuning beschikbaar in huidige alpha build!

            Conversaties
            : Jabber/XMPP client

            PGPAuth
            : App to send a PGP-signed request to a server to open or close something, e.g. a door

            + +

            Ik heb een bug in OpenKeychain gevonden!

            +

            Rapporteer de bug met de problemen tracker van OpenKeychain.

            + +

            Bijdragen

            +

            Als u ons wilt 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-nl/help_wot.html b/OpenKeychain/src/main/res/raw-nl/help_wot.html new file mode 100644 index 000000000..efaac3c1e --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/help_wot.html @@ -0,0 +1,17 @@ + + + +

            Web van Vertrouwen

            +

            het Web of Trust beschrijft het deel van PGP dat te maken heeft met aanmaken en boekhouden van certificaten. Het voorziet van mechanismes zodat de gebruiker bij kan houden van aan wie een publieke sleutel toebehoort, en deze informatie met anderen kan delen; om de privacy van versleutelde communicatie te verzekeren, is het essentiëel om te weten dat de publieke sleutel die u versleutelt, toebehoort aan de persoon aan wie u denkt dat het toebehoort.

            + +

            Support in OpenKeychain

            +

            Er is alleen basissupport voor Web van Vertrouwen in OpenKeychain. Dit is een zware 'werk in uitvoering' en onderwerp voor veranderingen in toekomstige releases.

            + +

            Vertrouwen Model

            +

            Vertrouwen evaluatie is gebaseerd om de simpele aanname dat alle sleutels die beschikbare geheime sleutels hebben, vertrouwd zijn. Publieke sleutels die minstens een gebruikers-id bevatten, gecertificeerd door een vertrouwde sleutel, zullen gemarkeerd worden met een groene stip in de sleutel lijsten. Het is (nog) niet mogelijk om vertrouwen niveaus voor certificaten van andere bekende publieke sleutels te specifiëren.

            + +

            Sleutels certificeren

            +

            Support voor sleutelcertificatie is beschikbaar, en gebruikers-id's kunnen individueel gecertificeerd worden. Het is nog niet mogelijk om het niveau van vertrouwen te specifiëren om locale en andere speciale typen van certificaten te maken.

            + + + diff --git a/OpenKeychain/src/main/res/raw-nl/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-nl/nfc_beam_share.html new file mode 100644 index 000000000..5f7a63050 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-nl/nfc_beam_share.html @@ -0,0 +1,11 @@ + + + +
              +
            1. Zorg ervoor dat NFC ingeschakeld is in Instellingen > Meer > NFC en zorg ervoor dat Android Beam ook in dezelfde sectie ingeschakeld is.
            2. +
            3. Houd de twee apparaten met de achterkant tegen elkaar (ze moeten elkaar bijna aanraken) en u zult een trilling voelen.
            4. +
            5. Nadat het trilt zult u de inhoud op uw partners apparaat in een soort kaart zien veranderen met Star Trek warp snelheid-eruitziende animatie op de achtergrond.
            6. +
            7. Druk op de kaart en de inhoud zal dan laden op het apparaat van de andere persoon.
            8. +
            + + diff --git a/OpenKeychain/src/main/res/raw-pl/help_about.html b/OpenKeychain/src/main/res/raw-pl/help_about.html index a033c084a..68cc2810e 100644 --- a/OpenKeychain/src/main/res/raw-pl/help_about.html +++ b/OpenKeychain/src/main/res/raw-pl/help_about.html @@ -19,6 +19,7 @@
          • Paul Sarbinowski
          • Sreeram Boyapati
          • Vincent Breitmoser
          • +
          • Tim Bray

          Deweloperzy APG 1.x

            diff --git a/OpenKeychain/src/main/res/raw-pl/help_changelog.html b/OpenKeychain/src/main/res/raw-pl/help_changelog.html index 8fce6c475..d94ac3c0f 100644 --- a/OpenKeychain/src/main/res/raw-pl/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-pl/help_changelog.html @@ -136,7 +136,7 @@ Daniel Hammann, Daniel Haß, Greg Witczak, Miroojin Bakshi, Nikhil Peter Raj, Pa
            • dodano możliwość filtrowania listy kluczy
            • sprytniejsze automatyczne wybieranie kluczy szyfrujących
            • -
            • dodano nowy sposób obsługi intencji "wyświetl" i "wyślij", umożliwia szyfrowanie/deszyfrowanie plików wprost z menadżera plików.
            • +
            • dodano nowy sposób obsługi intencji "wyświetl" i "wyślij", umożliwia szyfrowanie/deszyfrowanie plików wprost z menadżera plików.
            • poprawki i dodatkowe funkcje (podpowiedź wyboru klucza) dla K-9 Mail, nowe wydanie beta dostępne

            1.0.1

            diff --git a/OpenKeychain/src/main/res/raw-pl/help_start.html b/OpenKeychain/src/main/res/raw-pl/help_start.html index ca10ec4b1..36ff31548 100644 --- a/OpenKeychain/src/main/res/raw-pl/help_start.html +++ b/OpenKeychain/src/main/res/raw-pl/help_start.html @@ -2,14 +2,12 @@

            Pierwsze kroki

            -

            First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

            +

            First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

            Zalecana jest instalacja menadżera plików OI File Manager w celu zapewnienia wygodniejszego wyboru plików oraz programu Barcode Scanner, który jest w stanie skanować wygenerowane kody QR. Kliknięcie na powyższe linki przekieruje Cię do sklepu Google Play / F-Droid.

            Applications

            -

            Several applications support OpenKeychain to encrypt/sign your private communication:

            -

            Conversations: Jabber/XMPP client

            -

            K-9 Mail: OpenKeychain support available in current alpha build!

            +

            Several applications support OpenKeychain to encrypt/sign your private communication:

            K-9 Mail: OpenKeychain support available in current alpha build!

            Conversations
            : Jabber/XMPP client

            PGPAuth
            : App to send a PGP-signed request to a server to open or close something, e.g. a door

            Znalazłem błąd w OpenKeychain!

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

            diff --git a/OpenKeychain/src/main/res/raw-pl/help_wot.html b/OpenKeychain/src/main/res/raw-pl/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-pl/help_wot.html @@ -0,0 +1,17 @@ + + + +

            Web of Trust

            +

            The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

            + +

            Support in OpenKeychain

            +

            There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

            + +

            Trust Model

            +

            Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

            + +

            Certifying keys

            +

            Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

            + + + diff --git a/OpenKeychain/src/main/res/raw-ru/help_about.html b/OpenKeychain/src/main/res/raw-ru/help_about.html index 29cc1af83..4ffd2ba18 100644 --- a/OpenKeychain/src/main/res/raw-ru/help_about.html +++ b/OpenKeychain/src/main/res/raw-ru/help_about.html @@ -19,6 +19,7 @@
          • Paul Sarbinowski
          • Sreeram Boyapati
          • Vincent Breitmoser
          • +
          • Tim Bray

          Разработчики APG 1.x

            diff --git a/OpenKeychain/src/main/res/raw-ru/help_changelog.html b/OpenKeychain/src/main/res/raw-ru/help_changelog.html index cbd689629..fc258a623 100644 --- a/OpenKeychain/src/main/res/raw-ru/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-ru/help_changelog.html @@ -3,11 +3,11 @@

            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)
            • +
            • Пурпурный! (Dominik, Vincent)
            • +
            • Новый вид просмотра ключей (Dominik, Vincent)
            • +
            • Новый вид кнопок в стиле Android (Dominik, Vincent)
            • +
            • Исправления API (Dominik)
            • +
            • Импорт Keybase.io (Tim Bray)

            2.6.1

              diff --git a/OpenKeychain/src/main/res/raw-ru/help_start.html b/OpenKeychain/src/main/res/raw-ru/help_start.html index 022b80afc..9534acead 100644 --- a/OpenKeychain/src/main/res/raw-ru/help_start.html +++ b/OpenKeychain/src/main/res/raw-ru/help_start.html @@ -2,14 +2,12 @@

              Приступая

              -

              Для начала Вас нужен свой секретный ключ. Создайте его в меню раздела "Ключи" или импортируйте ранее созданный ключ. Позже вы сможете поделиться данными своего ключа с друзьями с помощью QR кода или NFC.

              +

              Для начала Вас нужен свой секретный ключ. Создайте его в меню раздела "Ключи" или импортируйте ранее созданный ключ. Позже вы сможете поделиться данными своего ключа с друзьями с помощью QR кода или NFC.

              Рекомендуется установить OI File Manager для удобного выбора файлов и Barcode Scanner для распознавания QR кодов. Перейдите по ссылкам на соответствующие страницы Google Play или F-Droid для дальнейшей установки.

              -

              Applications

              -

              Several applications support OpenKeychain to encrypt/sign your private communication:

              -

              Conversations: Jabber/XMPP client

              -

              K-9 Mail: OpenKeychain support available in current alpha build!

              +

              Приложения

              +

              Некоторые приложения, поддерживающие интеграцию с OpenKeychain для шифрования:

              K-9 Mail: поддержка OpenKeychain доступна в текущей альфа-версии!

              Conversations
              : клиент Jabber/XMPP

              PGPAuth
              : Приложение PGP-подписанных запросов на сервер для открытия или закрытия чего-либо.

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

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

              diff --git a/OpenKeychain/src/main/res/raw-ru/help_wot.html b/OpenKeychain/src/main/res/raw-ru/help_wot.html new file mode 100644 index 000000000..53c862cbc --- /dev/null +++ b/OpenKeychain/src/main/res/raw-ru/help_wot.html @@ -0,0 +1,17 @@ + + + +

              Сеть доверия (WoT)

              +

              Сеть доверия (The Web of Trust) предоставляет механизм, определения принадлежности ключа именно тому пользователю, который в нём указан. Основа этой модели строится на знакомстве людей и сертификации своей подписью ключей своих знакомых. Не менее важно распространение этой информации среди других пользователей WoT.

              + +

              Поддержка в OpenKeychain

              +

              В настоящее время реализованы только базовые возможности WoT. Работа в самом разгаре и в будущих версиях OpenKeychain будут появляться дополнительные возможности.

              + +

              Модель доверия

              +

              Проверка доверия основана на простом принципе, что если доступен секретный ключ, то доверие к нему абсолютное. Однако, публичные должны содержать подписи кого-то, кому вы доверяете, что бы подпись, сделанная таким ключом, была отмечена зелёным индикатором. К сожалению, (пока) нельзя определять степень доверия к другим известным публичным ключам.

              + +

              Сертификация ключей

              +

              Поддержка сертификации ключей уже реализована, и Вы можете сертифицировать отдельные ID пользователя. Пока нельзя выбирать степень доверия, создавать локальные или специальные типы сертификатов.

              + + + diff --git a/OpenKeychain/src/main/res/raw-sl/help_about.html b/OpenKeychain/src/main/res/raw-sl/help_about.html index a57b0e26f..40c487265 100644 --- a/OpenKeychain/src/main/res/raw-sl/help_about.html +++ b/OpenKeychain/src/main/res/raw-sl/help_about.html @@ -19,6 +19,7 @@
            • Paul Sarbinowski
            • Sreeram Boyapati
            • Vincent Breitmoser
            • +
            • Tim Bray

            Razvijalci APG 1.x

              diff --git a/OpenKeychain/src/main/res/raw-sl/help_changelog.html b/OpenKeychain/src/main/res/raw-sl/help_changelog.html index bc282fc66..1b48552ab 100644 --- a/OpenKeychain/src/main/res/raw-sl/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-sl/help_changelog.html @@ -3,11 +3,11 @@

              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)
              • +
              • Vijolična! (Dominik, Vincent)
              • +
              • Nova podoba za ključe (Dominik, Vincent)
              • +
              • Nova podoba - ploski androiidni gumbi (Dominik, Vincent)
              • +
              • Popravki API (Dominik)
              • +
              • Uboz iz Keybase.io (Tim Bray)

              2.6.1

                diff --git a/OpenKeychain/src/main/res/raw-sl/help_start.html b/OpenKeychain/src/main/res/raw-sl/help_start.html index 2b78e289a..4b02415d5 100644 --- a/OpenKeychain/src/main/res/raw-sl/help_start.html +++ b/OpenKeychain/src/main/res/raw-sl/help_start.html @@ -6,10 +6,8 @@

                Priporočamo, da namestite aplikaciji OI File Manager za boljše delo z datotekami in Barcode Scanner za skeniranje kod QR. Klik na povezavi bo odprl trgovino Google Play Store ali F-Droid za namestitev.

                -

                Applications

                -

                Several applications support OpenKeychain to encrypt/sign your private communication:

                -

                Conversations: Jabber/XMPP client

                -

                K-9 Mail: OpenKeychain support available in current alpha build!

                +

                Aplikacije

                +

                Razne aplikacije podpirajo OpenKeychain za šifriranje/podpisovanje vaših zasebnih komunikacij:

                K-9 Mail: Podpora za OpenKeychain je na voljo v trenutni alfa različici!

                Conversations
                : Odjemalec za Jabber/XMPP

                PGPAuth
                : Aplikacija za pošiljanje PGP-podpisanih zahtevkov strežnikom za odpiranje ali zapiranje česa, npr vrat

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

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

                diff --git a/OpenKeychain/src/main/res/raw-sl/help_wot.html b/OpenKeychain/src/main/res/raw-sl/help_wot.html new file mode 100644 index 000000000..62cdf8094 --- /dev/null +++ b/OpenKeychain/src/main/res/raw-sl/help_wot.html @@ -0,0 +1,17 @@ + + + +

                Omrežje zaupanja

                +

                Omrežje zaupanja je del PGP-ja, ki se dotika ustvarjanja, urejanja in hranjenja ključev. Ponuja nam orodja za vodenje evidence ključev in njihovih lastnikov, ter deljenje teh informacij z drugimi. Za zagotavljanje zasebnosti šifrirane komunikacije je bistvenega pomena, da vemo, da ključ s katerim šifriramo določeno vsebino resnično pripada osebi, ki ji je ta vsebina namenjena.

                + +

                Podpora v OpenKeychain

                +

                OpenKeychain ponuja zgolj osnovno podporo za 'Omrežje zaupanja'. V prihodnjih različicah bomo to podporo še nadgrajevali in izboljševali.

                + +

                Model zaupanja

                +

                Ocena zaupanja temelji na predpostavki, da so vsi ključi, ki vsebujejo tudi zasebne ključe, vredni zaupanja. Javni ključi, ki vsebujejo vsaj en uporabniški ID, ki je overjen z zaupanja vrednim ključem, so na seznamu ključev označeni z zeleno piko. Zaenkrat (še) ni možno natančneje določiti stopnje zaupanja potrdil drugih znanih javnih ključev.

                + +

                Overjanje ključev

                +

                Overjanje ključev je na voljo. Uporabniške ID-je ključev overjamo individualno. Zaenkrat ni možno natančneje določiti stopnje zaupanja ali ustvarjati lokalne ali druge posebne vrste potrdil.

                + + + diff --git a/OpenKeychain/src/main/res/raw-tr/help_about.html b/OpenKeychain/src/main/res/raw-tr/help_about.html index 7d2c24f9c..db577c6a3 100644 --- a/OpenKeychain/src/main/res/raw-tr/help_about.html +++ b/OpenKeychain/src/main/res/raw-tr/help_about.html @@ -19,6 +19,7 @@
              • Paul Sarbinowski
              • Sreeram Boyapati
              • Vincent Breitmoser
              • +
              • Tim Bray

              Geliştiriciler APG 1.x

                diff --git a/OpenKeychain/src/main/res/raw-tr/help_start.html b/OpenKeychain/src/main/res/raw-tr/help_start.html index 6ded872ea..3a681f8fa 100644 --- a/OpenKeychain/src/main/res/raw-tr/help_start.html +++ b/OpenKeychain/src/main/res/raw-tr/help_start.html @@ -2,14 +2,12 @@

                Getting started

                -

                First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

                +

                First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

                It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

                Applications

                -

                Several applications support OpenKeychain to encrypt/sign your private communication:

                -

                Conversations: Jabber/XMPP client

                -

                K-9 Mail: OpenKeychain support available in current alpha build!

                +

                Several applications support OpenKeychain to encrypt/sign your private communication:

                K-9 Mail: OpenKeychain support available in current alpha build!

                Conversations
                : Jabber/XMPP client

                PGPAuth
                : App to send a PGP-signed request to a server to open or close something, e.g. a door

                I found a bug in OpenKeychain!

                Please report the bug using the issue tracker of OpenKeychain.

                diff --git a/OpenKeychain/src/main/res/raw-tr/help_wot.html b/OpenKeychain/src/main/res/raw-tr/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-tr/help_wot.html @@ -0,0 +1,17 @@ + + + +

                Web of Trust

                +

                The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

                + +

                Support in OpenKeychain

                +

                There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

                + +

                Trust Model

                +

                Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

                + +

                Certifying keys

                +

                Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

                + + + diff --git a/OpenKeychain/src/main/res/raw-uk/help_about.html b/OpenKeychain/src/main/res/raw-uk/help_about.html index b51b80617..f6e65071c 100644 --- a/OpenKeychain/src/main/res/raw-uk/help_about.html +++ b/OpenKeychain/src/main/res/raw-uk/help_about.html @@ -19,6 +19,7 @@
              • Пауль Сарбіновський
              • Срірам Вояпаті
              • Вінсент Брейтмозер
              • +
              • Тім Брей

              Розробники APG 1.x

                diff --git a/OpenKeychain/src/main/res/raw-uk/help_changelog.html b/OpenKeychain/src/main/res/raw-uk/help_changelog.html index e47c6bf98..b40eca76e 100644 --- a/OpenKeychain/src/main/res/raw-uk/help_changelog.html +++ b/OpenKeychain/src/main/res/raw-uk/help_changelog.html @@ -3,20 +3,20 @@

                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)
                • +
                • Багряний! (Домінік, Вінсент)
                • +
                • Новий дизайн огляду ключа (Домінік, Вінсент)
                • +
                • Нові плоскі кнопки Андроїд(Домінік, Вінсент)
                • +
                • виправлення API (Домінік)
                • +
                • Імпорт Keybase.io (Тім Брей)

                2.6.1

                  -
                • some fixes for regression bugs
                • +
                • деякі виправлення для накопичених вад

                2.6

                • сертифікації ключів (завдяки Вінсенту Бреймозеру)
                • -
                • support for GnuPG partial secret keys (thanks to Vincent Breitmoser)
                • +
                • підтримка часткових секретних ключів для GnuPG (завдяки Вінсенту Брейтмозеру)
                • новий дизайн для перевірки підпису
                • власна довжина ключа (завдяки Ґреґу Вітчаку)
                • виправлено функцію поширення з інших програм
                • diff --git a/OpenKeychain/src/main/res/raw-uk/help_start.html b/OpenKeychain/src/main/res/raw-uk/help_start.html index 1a4a7fab0..5caf05cc0 100644 --- a/OpenKeychain/src/main/res/raw-uk/help_start.html +++ b/OpenKeychain/src/main/res/raw-uk/help_start.html @@ -2,14 +2,12 @@

                  Приступаючи до роботи

                  -

                  First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

                  +

                  Спершу вам потрібний особистий секретний ключ. Створіть один через меню параметрів у „Ключі" або імпортуйте наявні секретні ключі через "Імпорт ключів". Після цього ви зможете завантажувати ключі ваших друзів чи обміняти їх через штрих-коди або NFC.

                  Рекомендуємо вам встановити OI File Manager для поліпшеного виділення файлів та Barcode Scanner для сканування згенерованих штрих-кодів. Натискання посилань відкриє Google Play або F-Droid для встановлення.

                  -

                  Applications

                  -

                  Several applications support OpenKeychain to encrypt/sign your private communication:

                  -

                  Conversations: Jabber/XMPP client

                  -

                  K-9 Mail: OpenKeychain support available in current alpha build!

                  +

                  Програми

                  +

                  Окремі програми підтримують OpenKeychain для шифрування/підписування вашо спілкування:

                  K-9 Mail: підтримка OpenKeychain доступна у поточній альфа-збірці!

                  Спілкування
                  : клієнт Jabber/XMPP

                  PGPAuth
                  : програма надіслала запит, підписаний PGP, на сервер для відкриття чи закриття чогось на кшталт дверей

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

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

                  diff --git a/OpenKeychain/src/main/res/raw-uk/help_wot.html b/OpenKeychain/src/main/res/raw-uk/help_wot.html new file mode 100644 index 000000000..e1296472e --- /dev/null +++ b/OpenKeychain/src/main/res/raw-uk/help_wot.html @@ -0,0 +1,17 @@ + + + +

                  Мережа довіри

                  +

                  Мережа довіри - The Web of Trust - надає механізм визначення приналежності ключа саме тому користувачеві, який в ньому зазначений. Основа цієї моделі будується на знайомстві людей та сертифікації своїм підписом ключів своїх знайомих. Не менш важливо поширення цієї інформації серед інших користувачів WoT.

                  + +

                  Підтримка у OpenKeychain

                  +

                  Наразі реалізовані тільки базові можливості WoT. Робота в самому розпалі, і в майбутніх версіях OpenKeychain будуть з'являтися додаткові можливості.

                  + +

                  Модель довіри

                  +

                  Перевірка довіри заснована на простому принципі, що якщо доступний секретний ключ, то довіра до нього абсолютна. Однак, публічні повинні містити підписи когось, кому ви довіряєте, що б підпис, зроблений таким ключем, був відзначений зеленим індикатором. На жаль, (поки що) не можна визначати ступінь довіри до інших відомих публічних ключів.

                  + +

                  Сертифікація ключів

                  +

                  Підтримка сертифікації ключів вже реалізована, і Ви можете сертифікувати окремі ID користувача. Наразі не можна вибирати ступінь довіри, створювати локальні або спеціальні типи сертифікатів.

                  + + + diff --git a/OpenKeychain/src/main/res/raw-zh/help_about.html b/OpenKeychain/src/main/res/raw-zh/help_about.html index 813676ea2..c9f76dd7c 100644 --- a/OpenKeychain/src/main/res/raw-zh/help_about.html +++ b/OpenKeychain/src/main/res/raw-zh/help_about.html @@ -19,6 +19,7 @@
                • Paul Sarbinowski
                • Sreeram Boyapati
                • Vincent Breitmoser
                • +
                • Tim Bray

                Developers APG 1.x

                  diff --git a/OpenKeychain/src/main/res/raw-zh/help_start.html b/OpenKeychain/src/main/res/raw-zh/help_start.html index 7abb144a0..705bbcceb 100644 --- a/OpenKeychain/src/main/res/raw-zh/help_start.html +++ b/OpenKeychain/src/main/res/raw-zh/help_start.html @@ -2,14 +2,12 @@

                  快速上手

                  -

                  First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

                  +

                  First you need a personal secret key. Create one via the option menus in "Keys" or import existing secret keys. Afterwards, you can download your friends' keys or exchange them via QR Codes or NFC.

                  It is recommended that you install OI File Manager for enhanced file selection and Barcode Scanner to scan generated QR Codes. Clicking on the links will open Google Play Store or F-Droid for installation.

                  Applications

                  -

                  Several applications support OpenKeychain to encrypt/sign your private communication:

                  -

                  Conversations: Jabber/XMPP client

                  -

                  K-9 Mail: OpenKeychain support available in current alpha build!

                  +

                  Several applications support OpenKeychain to encrypt/sign your private communication:

                  K-9 Mail: OpenKeychain support available in current alpha build!

                  Conversations
                  : Jabber/XMPP client

                  PGPAuth
                  : App to send a PGP-signed request to a server to open or close something, e.g. a door

                  我在OpenKeychain發現問題!

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

                  diff --git a/OpenKeychain/src/main/res/raw-zh/help_wot.html b/OpenKeychain/src/main/res/raw-zh/help_wot.html new file mode 100644 index 000000000..29790139b --- /dev/null +++ b/OpenKeychain/src/main/res/raw-zh/help_wot.html @@ -0,0 +1,17 @@ + + + +

                  Web of Trust

                  +

                  The Web of Trust describes the part of PGP which deals with creation and bookkeeping of certifications. It provides mechanisms to help the user keep track of who a public key belongs to, and share this information with others; To ensure the privacy of encrypted communication, it is essential to know that the public key you encrypt to belongs to the person you think it does.

                  + +

                  Support in OpenKeychain

                  +

                  There is only basic support for Web of Trust in OpenKeychain. This is a heavy work in progress and subject to changes in upcoming releases.

                  + +

                  Trust Model

                  +

                  Trust evaluation is based on the simple assumption that all keys which have secret keys available are trusted. Public keys which contain at least one user id certified by a trusted key will be marked with a green dot in the key listings. It is not (yet) possible to specify trust levels for certificates of other known public keys.

                  + +

                  Certifying keys

                  +

                  Support for key certification is available, and user ids can be certified individually. It is not yet possible to specify the level of trust or create local and other special types of certificates.

                  + + + diff --git a/OpenKeychain/src/main/res/raw-zh/nfc_beam_share.html b/OpenKeychain/src/main/res/raw-zh/nfc_beam_share.html index 99ffe4c12..78f00c9f7 100644 --- a/OpenKeychain/src/main/res/raw-zh/nfc_beam_share.html +++ b/OpenKeychain/src/main/res/raw-zh/nfc_beam_share.html @@ -2,7 +2,7 @@
                    -
                  1. 確定在 "設定" > "更多內容…" > "NFC" 裡面已經開啟 NFC 和 Android Beam。
                  2. +
                  3. 確定在 "設定" > "更多內容…" > "NFC" 裡面已經開啟 NFC 和 Android Beam。
                  4. 將兩部裝置背對背貼近(幾乎接觸),你會感覺到一股震動。
                  5. 震動之後你會看見你夥伴的畫面變成卡片狀,並且背景帶有如 Star Trek 般的特效。
                  6. 輕觸卡片,內容隨即顯示在你的裝置上。
                  7. diff --git a/OpenKeychain/src/main/res/values-ar/strings.xml b/OpenKeychain/src/main/res/values-ar/strings.xml new file mode 100644 index 000000000..e3d3a6493 --- /dev/null +++ b/OpenKeychain/src/main/res/values-ar/strings.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OpenKeychain/src/main/res/values-cs-rCZ/strings.xml b/OpenKeychain/src/main/res/values-cs-rCZ/strings.xml deleted file mode 100644 index c3d7cc4c9..000000000 --- a/OpenKeychain/src/main/res/values-cs-rCZ/strings.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - Zvolit veřejný klíč - Zvolit tajný klíč - Zašifrovat - Dešifrovat - Heslo - Vytvořit klíč - Upravit klíč - Nastavení - Registrované aplikace - Nastavení serveru s klíči - Zadat heslo - Importovat klíče - Exportovat klíč - Exportovat klíče - Klíč nenalezen - Nahrát na server s klíči - Nápověda - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OpenKeychain/src/main/res/values-cs/strings.xml b/OpenKeychain/src/main/res/values-cs/strings.xml new file mode 100644 index 000000000..e3d3a6493 --- /dev/null +++ b/OpenKeychain/src/main/res/values-cs/strings.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OpenKeychain/src/main/res/values-de/strings.xml b/OpenKeychain/src/main/res/values-de/strings.xml index 61d4fc642..e2dfa196b 100644 --- a/OpenKeychain/src/main/res/values-de/strings.xml +++ b/OpenKeychain/src/main/res/values-de/strings.xml @@ -273,9 +273,6 @@ Android 4.1 wird benötigt um Androids NFC Beam nutzen zu können! NFC steht auf diesem Gerät nicht zur Verfügung! Nichts zu importieren! - Unzureichende Serveranfrage - Anfrage fehlgeschlagen - Zu viele mögliche Schlüssel. Verfeinere deine Suchanfrage! Datei ist leer Ein allgemeiner Fehler trat auf, bitte schreiben Sie einen neuen Bugreport für OpenKeychain. @@ -330,6 +327,7 @@ Öffentliche Schlüssel suchen Private Schlüssel suchen Teile Schlüssel über… + Durchsuche Keybase.io 512 768 @@ -369,12 +367,14 @@ Um Schlüssel über NFC zu erhalten muss das Gerät entsperrt sein. Hilfe Schlüssel aus der Zwischenablage einfügen + Schlüssel von Keybase.io erhalten Datei entschlüsseln mit OpenKeychain Schlüssel importieren mit OpenKeychain Verschlüsseln mit OpenKeychain Entschlüsseln mit OpenKeychain + Keine verknüpften Apps vorhanden\n\nEine Liste von unterstützten Drittanbieter-Apps finden Sie unter \"Hilfe\"! Erweiterte Informationen anzeigen Erweiterte Informationen ausblenden Erweiterte Einstellungen anzeigen @@ -385,6 +385,7 @@ Speichern Abbrechen Zugriff widerufen + Starte Anwendung Account löschen Paketname SHA-256 der Paketsignatur diff --git a/OpenKeychain/src/main/res/values-es/strings.xml b/OpenKeychain/src/main/res/values-es/strings.xml index dd628f87a..45d3d565b 100644 --- a/OpenKeychain/src/main/res/values-es/strings.xml +++ b/OpenKeychain/src/main/res/values-es/strings.xml @@ -273,9 +273,9 @@ ¡Necesita Android 4.1 para usar la característica NFC Beam (haz NFC) de Android! ¡NFC no está disponible en tu dispositivo! ¡Nada que importar! - Consulta al servidor insuficiente - La consulta al servidor de claves ha fallado - Demasiadas claves posibles. Por favor ¡refine su consulta! + Petición de búsqueda de clave demasiado corta + Error irrecuperable buscando claves en el servidor + La petición de búsqueda de clave devolvió demasiados candidatos; por favor refine su petición El archivo está vacio Ha ocurrido un error genérico, por favor, informa de este bug a OpenKeychain diff --git a/OpenKeychain/src/main/res/values-fa-rIR/strings.xml b/OpenKeychain/src/main/res/values-fa-rIR/strings.xml deleted file mode 100644 index e3d3a6493..000000000 --- a/OpenKeychain/src/main/res/values-fa-rIR/strings.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/OpenKeychain/src/main/res/values-fr/strings.xml b/OpenKeychain/src/main/res/values-fr/strings.xml index 575ce8085..f49127b6f 100644 --- a/OpenKeychain/src/main/res/values-fr/strings.xml +++ b/OpenKeychain/src/main/res/values-fr/strings.xml @@ -273,9 +273,9 @@ Il vous faut Android 4.1 pour utiliser la fonction Beam NFC d\'Android ! La NFC n\'est pas disponible sur votre appareil ! Rien à importer ! - Requête serveur insuffisante - Échec lors de l\'interrogation du serveur de clefs - Il y a trop de clefs possibles. Veuillez affiner votre requête ! + La requête de recherche de clef est trop courte + Erreur irrécupérable lors de la recherche de clef sur le serveur + La requête de recherche de clef a retourné trop de candidats. Veuillez raffiner la requête Le fichier n\'a pas de contenu Une erreur générique est survenue, veuillez créer un nouveau rapport de bogue pour OpenKeychain. diff --git a/OpenKeychain/src/main/res/values-it-rIT/strings.xml b/OpenKeychain/src/main/res/values-it-rIT/strings.xml deleted file mode 100644 index b951bcf71..000000000 --- a/OpenKeychain/src/main/res/values-it-rIT/strings.xml +++ /dev/null @@ -1,475 +0,0 @@ - - - - Seleziona Chiave Pubblica - Seleziona Chiave Privata - Codifica - Decodifica - Frase di accesso - Crea Chiave - Modifica Chiave - Preferenze - App Registrate - Preferenze Server delle Chiavi - Cambia Frase Di Accesso - Imposta Frase di Accesso - Condividi con... - Condivi impronta con... - Condividi chiave con... - Condividi file con... - Codifica File - Decodifica File - Importa Chiavi - Esporta Chiave - Esporta Chiavi - Chiave Non Trovata - Carica sul Server delle Chiavi - Certifica identità - Dettagli Chiave - Aiuto - - Identità - Sottochiavi - Generale - Predefiniti - Avanzato - Chiave Principale - Identità Primaria - Azioni - Intera chiave - La Tua Chiave usata per la certificazione - Carica Chiave - Server delle Chiavi - Codifica e/o Firma - Decodifica e Verifica - Impronta - Chiave da certificare - - Certifica - Decodifica, verifica e salva su file - Decodifica e verifica messaggio - Dagli Appunti - Codifica e salva file - Salva - Annulla - Elimina - Nessuno - OK - Cambia Nuova Frase di Accesso - Imposta Nuova Frase di Accesso - Carica sul Server delle Chiavi - Prossimo - Precedente - Appunti - Condividi... - Chiave di ricerca - Mostra impostazioni avanzate - Nascondi impostazioni avanzate - Condividi messaggio codificato/firmato... - Mostra chiave di certificazione - - Impostazioni - Aiuto - Importa da file - Importa da Codice QR - Importa tramite NFC - Esporta su un file - Cancella chiave - Crea chiave - Crea chiave (avanzato) - Cerca - Server delle Chiavi - Importa da Keybase.io - Server delle Chiavi... - Aggiorna dal server delle chiavi - Carica chiave nel server - Condividi... - Condivi impronta... - Condividi intera chiave... - con.. - con... - con Codice QR - con Codice QR - con NFC - Copia negli appunti - Impostazioni Beam - Annulla - Codifica su... - Seleziona tutto - Aggiungi chiavi - Esporta tutte le chiavi - - Firma - Messaggio - File - Nessuna Frase di Accesso - Frase di Accesso - Di nuovo - Algortimo - Armatura ASCII - Destinatari - Cancella Dopo Codifica - Cancella Dopo Decodifica - Condividi Dopo la Codifica - Algoritmo di Codifica - Algoritmo di Hash - con Chiave Pubblica - con Frase di Accesso - Cache Frase di Accesso - Compressione Messaggio - Compressione File - Forza vecchie Firme OpenPGPv3 - Server Chiavi - ID Chiave - Creazione - Scadenza - Utilizzo - Dimensione Chiave - Identità Primaria - Nome - Commento - Email - Carica chiave nel server delle chiavi selezionati dopo la certificazione - Impronta - Seleziona - Impostare la data di scadenza - - %d selezionato - %d selezionati - - <nessun nome> - <nessuno> - <nessuna chiave> - puo\' codificare - puo\' firmare - può certificare - non può certificare - scaduto - revocato - - 1 chiave - %d chiavi - - - %d server delle chiavi - %d server delle chiavi - - Chiave Privata: - - Nessuno - 15 sec - 1 min - 3 min - 5 min - 10 min - 20 min - 40 min - 1 ora - 2 ore - 4 ore - 8 ore - sempre - DSA - ElGamal - RSA - Apri... - Attenzione - Errore - Errore: %s - - Certifica - Firma - Codifica - Convalida - - Frase di Accesso errata - Imposta prima una frase di accesso. - Nessun gestore file compatibile installato. - Le frasi di accesso non corrispondono. - Si prega di inserire una frase di accesso. - Codifica Simmetrica. - Inserisci la frase di accesso per \'%s\' - Sei sicuro di voler cancellare\n%s? - Eliminato correttamente. - Seleziona un file prima. - Firmato e/o codificato con successo. - Firmato e/o codificato con successo negli appunti. - Inserisci la frase di accesso due volte. - Seleziona almeno una chiave di codifica. - Seleziona almeno una chiave di codifica o di firma. - Perfavore specifica quale file codificare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. - Perfavore specifica quale file decodificare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. - Perfavore specifica su quale file esportare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. - Vuoi veramente eliminare tutte le chiavi pubbliche selezionate?\nNon potrai annullare! - Vuoi veramente eliminare la chiave PRIVATA \'%s\'?\nNon potrai annullare! - Hai apportato modifiche al tuo portachiavi, vuoi salvarlo? - Hai aggiunto una identità vuota, sei sicuro di voler continuare? - Vuoi veramente eliminare la chiave pubblica \'%s\'?\nNon potrai annullare! - Esportare anche le chiavi segrete? - - %d chiave aggiunta correttamente - %d chiavi aggiunte correttamente - - - e %d chiave aggiornata. - e %d chiavi aggiornate. - - - %d chiave aggiunta correttamente. - %d chiavi aggiunte correttamente. - - - %d chiave aggiornata correttamente. - %d chiavi aggiornate correttamente. - - Nessuna chiave aggiunta o aggiornata. - 1 chiave esportata correttamente. - %d chiavi esportate correttamente. - Nessuna chiave esportata. - Nota: supporto sottochiavi solo per ElGamal. - Nota: la generazione di chiavi RSA con lunghezza pari a 1024 bit o inferiore è considerata non sicura ed è disabilitata per la generazione di nuove chiavi. - Impossibile trovare la chiave %08X. - - Trovata %d chiave. - Trovate %d chiavi. - - - %d chiave segreta non valida ignorata. Forse hai esportato con opzione\n--export-secret-subkeys\nAssicurati di esportare con\n--export-secret-keys\ninvece. - %d chiavi private non valide ignorate. Forse hai esportato con opzione\n--export-secret-subkeys\nAssicurati di esportare con\n--export-secret-keys\ninvece. - - Chiave caricata con successo sul server - Identità certificata correttamente - Lista vuota! - Chiave correttamente inviata tramite NFC Beam! - Chiave copiata negli appunti! - Impronta copiata negli appunti! - La chiave è già certificata! - Per favore seleziona una chiave per la certificazione! - Chiave troppo grande per essere condivisa in questo modo! - - Cancellazione di \'%s\' fallita - File non trovato - nessuna chiave privata adatta trovata - memoria esterna non pronta - La grandezza della chiave deve essere almeno di 512bit - La chiave principale non puo\' essere ElGamal - opzione algoritmo sconosciuta - Nessuna email trovata - neccessaria almeno una identità - L\'identità primaria non può essere vuota - necessaria almeno una chiave principale - nessuna frase di accesso inserita - nessuna chiave di firma inserita - dati di codifica non validi - Controllo di integrita\' fallito! I dati sono stati modificati! - frase di accesso errata - errore nel salvataggio di alcune chiavi - impossibile estrarre la chiave privata - La data di scadenza deve essere postuma quella di creazione - - Flusso di dati diretto senza file corrispettivo nel filesystem non e\' supportato. - Devi avere Android 4.1 per usare Android NFC Beam! - NFC non disponibile nel tuo dispositivo! - Niente da importare! - Query di server insufficiente - Interrogazione del server delle chiavi fallita - Troppe chiavi corrispondenti. Riformula meglio la ricerca! - Il File non ha contenuti - Si è verificato un errore generico, si prega di creare una nuova segnalazione di errore per OpenKeychain. - - parte del file caricato e\' un oggetto OpenPGP valido, ma non una chave OpenPGP - parti del file caricato sono oggetti OpenPGP validi, ma non chavi OpenPGP - - È necessario apportare modifiche al portachiavi prima prima che sia possibile salvarlo - - Firma non valida! - Chiave pubblica sconosciuta - Firma valida (non certificata) - Firma valida (certificata) - Decodificato correttamente - Decodificata correttamente ma chiave pubblica sconosciuta - Decodifcato correttamente e firma valida (non certificata) - Decodifcato correttamente e firma valida (certificata) - - Fatto. - Annulla - salvataggio... - importazione... - esportazione... - fabbricazione chiave... - certificazione chiave principale... - fabbricazione portachiavi principale... - aggiunta sottochiavi... - salvataggio chiavi... - - esportazione chiave... - esportazione chiavi... - - - generazione chiave, sono necessari fino a 3 minuti... - generazione chiavi, sono necessari fino a 3 minuti... - - estrazione chiavi di firma... - estrazione chiave... - preparazione flussi... - codifica dati... - decodifica dati... - preparazione firma... - generazione firma... - elaborazione firma... - verifica firma... - firma... - lettura dati... - ricerca chiave... - decompressione dati... - verifica integrita\'... - eliminazione sicura di \'%s\'... - - Ricerca Chiavi Pubbliche - Cerca Chiave Privata - Condividi chiave con... - Cerca Keybase.io - - 512 - 768 - 1024 - 1536 - 2048 - 3072 - 4096 - 8192 - Lunghezza chiave peronalizzata - Digita lunghezza chiave personalizzata (in bit): - La lunghezza della chiave RSA deve essere maggiore di 1024 e al massimo 8192. Inoltre, deve essere multipla di 8. - La lunghezza della chiave DSA deve essere almeno 512 e al massimo 1024. Inoltre, deve essere multipla di 64. - - veloce - molto lento - - Inizia - FAQ - Rete di Fiducia - NFC Beam - Novita\' - Info - Versione: - - Importa chiavi selezionate - Importa dagli appunti - - Codice QR con ID %s mancante - Codici QR con ID %s mancanti - - Perfavore inizia col Codice QR con ID 1 - Codica QR deformato! Prova di nuovo! - Scansione codice QR completata! - Impronta troppo corta (< 16 caratteri) - Scansiona il Codice QR con \'Barcode Scanner\' - Per ricevere le chiavi via NFC, il dispositivo deve essere sbloccato. - Aiuto - Ottieni chiave dagli appunti - Ottieni chiave da Keybase.io - - Decodifica File con OpenKeychain - Importa Chiave con OpenKeychain - Codifica con OpenKeychain - Decodifica con OpenKeychain - - Mostra informazioni dettagliate - Nascondi informazioni dettagliate - Mostra impostazioni avanzate - Nascondi impostazioni avanzate - Nessuna chiave selezionata - Seleziona chiave - Crea una nuova chiave per questo account - Salva - Annulla - Revoca accesso - Cancella account - Nome Pacchetto - SHA-256 della Firma del Pacchetto - Account - Nessun account collegato a questa applicazione - L\'applicazione richiede la creazione di un nuovo account. Si prega di selezionare una chiave privata esistente o crearne una nuova.\nLe applicazioni sono limitate all\'utilizzo delle chiavi selezionate qui! - Le app visualizzate hanno richiesto l\'accesso a OpenKeychain.\nPermetti accesso?\n\nATTENZIONE: Se non sai perche\' questo schermata e\' apparsa, nega l\'accesso! Puoi revocare l\'accesso dopo, usando la schermata \'App Registrate\'. - Permetti accesso - Nega accesso - Per favore selezionare una chiave! - Nessuna chiave pubblica trovata per queste identità: - Esistono piu\' di una chiave pubblica per queste identità: - Per favore ricontrolla la lista destinatari! - Controllo della firma fallito! Hai installato questa app da una fonte diversa? Se sei sicuro che non sia un attacco, revoca la registrazione di questa app in OpenKeychain e dopo registra di nuovo l\'app. - - Condividi tramite Codice QR - Scorri tutti i Codici QR usando \'Prossimo\', a scansionali uno ad uno. - Impronta: - Codice QR con ID %1$d di %2$d - Condividi tramite NFC - - - 1 chiave selezionata. - %d chiavi selezionate. - - Nessuna chiave disponibile... - Puoi iniziare da - o - creazione della tua chiave - importazione chiavi. - - Modifica chiave - Codifica con questa chiave - Certifica identità - Condividi con... - Condividi con NFC tenendo i dispositivi a stretto contatto - Info Principale - Condividi - Sottochiavi - Certificati - - Chiavi - Firma e Codifica - Decodifica e Verifica - Importa Chiavi - App Registrate - Apri drawer di navigazione - Chiudi drawer di navigazione - Modifica - Le Mie Chiavi - Chiave Segreta - disponibile - non disponibile - - Scrivi qui il messaggio da codificare e/o firmare... - Inserisci il testo cifrato qui per la decodifica e/o verifica... - - predefiniti - nessuno - casuale - positivo - revocato - ok - fallito! - errore! - chiave non disponibile - - Certificatore - Dettagli Certificato - Identit - <sconosciuto> - Nessun certificato per questa chiave - Identità da certificare - Ragione della Revoca - Stato Verifica - Tipo - Chiave non trovata! - Errore di elaborazione chiave! - sottochiave non disponibile - ripulito - Le chiavi segrete possono essere cancellate solo individualmente! - Visualizza Dettagli Certificati - sconosciuto - non può firmare - Nessuna sottochiave di codifica disponibile! - diff --git a/OpenKeychain/src/main/res/values-it/strings.xml b/OpenKeychain/src/main/res/values-it/strings.xml new file mode 100644 index 000000000..eae4dd4af --- /dev/null +++ b/OpenKeychain/src/main/res/values-it/strings.xml @@ -0,0 +1,474 @@ + + + + Seleziona Chiave Pubblica + Seleziona Chiave Privata + Codifica + Decodifica + Frase di accesso + Crea Chiave + Modifica Chiave + Preferenze + App Registrate + Preferenze Server delle Chiavi + Cambia Frase Di Accesso + Imposta Frase di Accesso + Condividi con... + Condivi impronta con... + Condividi chiave con... + Condividi file con... + Codifica File + Decodifica File + Importa Chiavi + Esporta Chiave + Esporta Chiavi + Chiave Non Trovata + Carica sul Server delle Chiavi + Certifica identità + Dettagli Chiave + Aiuto + + Identità + Sottochiavi + Generale + Predefiniti + Avanzato + Chiave Principale + Identità Primaria + Azioni + Intera chiave + La Tua Chiave usata per la certificazione + Carica Chiave + Server delle Chiavi + Codifica e/o Firma + Decodifica e Verifica + Impronta + Chiave da certificare + + Certifica + Decodifica, verifica e salva su file + Decodifica e verifica messaggio + Dagli Appunti + Codifica e salva file + Salva + Annulla + Elimina + Nessuno + OK + Cambia Nuova Frase di Accesso + Imposta Nuova Frase di Accesso + Carica sul Server delle Chiavi + Prossimo + Precedente + Appunti + Condividi... + Chiave di ricerca + Mostra impostazioni avanzate + Nascondi impostazioni avanzate + Condividi messaggio codificato/firmato... + Mostra chiave di certificazione + + Impostazioni + Aiuto + Importa da file + Importa da Codice QR + Importa tramite NFC + Esporta su un file + Cancella chiave + Crea chiave + Crea chiave (avanzato) + Cerca + Server delle Chiavi + Importa da Keybase.io + Server delle Chiavi... + Aggiorna dal server delle chiavi + Carica chiave nel server + Condividi... + Condivi impronta... + Condividi intera chiave... + con.. + con... + con Codice QR + con Codice QR + con NFC + Copia negli appunti + Impostazioni Beam + Annulla + Codifica su... + Seleziona tutto + Aggiungi chiavi + Esporta tutte le chiavi + + Firma + Messaggio + File + Nessuna Frase di Accesso + Frase di Accesso + Di nuovo + Algortimo + Armatura ASCII + Destinatari + Cancella Dopo Codifica + Cancella Dopo Decodifica + Condividi Dopo la Codifica + Algoritmo di Codifica + Algoritmo di Hash + con Chiave Pubblica + con Frase di Accesso + Cache Frase di Accesso + Compressione Messaggio + Compressione File + Forza vecchie Firme OpenPGPv3 + Server Chiavi + ID Chiave + Creazione + Scadenza + Utilizzo + Dimensione Chiave + Identità Primaria + Nome + Commento + Email + Carica chiave nel server delle chiavi selezionati dopo la certificazione + Impronta + Seleziona + Impostare la data di scadenza + + %d selezionato + %d selezionati + + <nessun nome> + <nessuno> + <nessuna chiave> + puo\' codificare + puo\' firmare + può certificare + non può certificare + scaduto + revocato + + 1 chiave + %d chiavi + + + %d server delle chiavi + %d server delle chiavi + + Chiave Privata: + + Nessuno + 15 sec + 1 min + 3 min + 5 min + 10 min + 20 min + 40 min + 1 ora + 2 ore + 4 ore + 8 ore + sempre + DSA + ElGamal + RSA + Apri... + Attenzione + Errore + Errore: %s + + Certifica + Firma + Codifica + Convalida + + Frase di Accesso errata + Imposta prima una frase di accesso. + Nessun gestore file compatibile installato. + Le frasi di accesso non corrispondono. + Si prega di inserire una frase di accesso. + Codifica Simmetrica. + Inserisci la frase di accesso per \'%s\' + Sei sicuro di voler cancellare\n%s? + Eliminato correttamente. + Seleziona un file prima. + Firmato e/o codificato con successo. + Firmato e/o codificato con successo negli appunti. + Inserisci la frase di accesso due volte. + Seleziona almeno una chiave di codifica. + Seleziona almeno una chiave di codifica o di firma. + Perfavore specifica quale file codificare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. + Perfavore specifica quale file decodificare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. + Perfavore specifica su quale file esportare.\nATTENZIONE: Il file sara\' sovrascritto se esistente. + Vuoi veramente eliminare tutte le chiavi pubbliche selezionate?\nNon potrai annullare! + Vuoi veramente eliminare la chiave PRIVATA \'%s\'?\nNon potrai annullare! + Hai apportato modifiche al tuo portachiavi, vuoi salvarlo? + Hai aggiunto una identità vuota, sei sicuro di voler continuare? + Vuoi veramente eliminare la chiave pubblica \'%s\'?\nNon potrai annullare! + Esportare anche le chiavi segrete? + + %d chiave aggiunta correttamente + %d chiavi aggiunte correttamente + + + e %d chiave aggiornata. + e %d chiavi aggiornate. + + + %d chiave aggiunta correttamente. + %d chiavi aggiunte correttamente. + + + %d chiave aggiornata correttamente. + %d chiavi aggiornate correttamente. + + Nessuna chiave aggiunta o aggiornata. + 1 chiave esportata correttamente. + %d chiavi esportate correttamente. + Nessuna chiave esportata. + Nota: supporto sottochiavi solo per ElGamal. + Nota: la generazione di chiavi RSA con lunghezza pari a 1024 bit o inferiore è considerata non sicura ed è disabilitata per la generazione di nuove chiavi. + Impossibile trovare la chiave %08X. + + Trovata %d chiave. + Trovate %d chiavi. + + + %d chiave segreta non valida ignorata. Forse hai esportato con opzione\n--export-secret-subkeys\nAssicurati di esportare con\n--export-secret-keys\ninvece. + %d chiavi private non valide ignorate. Forse hai esportato con opzione\n--export-secret-subkeys\nAssicurati di esportare con\n--export-secret-keys\ninvece. + + Chiave caricata con successo sul server + Identità certificata correttamente + Lista vuota! + Chiave correttamente inviata tramite NFC Beam! + Chiave copiata negli appunti! + Impronta copiata negli appunti! + La chiave è già certificata! + Per favore seleziona una chiave per la certificazione! + Chiave troppo grande per essere condivisa in questo modo! + + Cancellazione di \'%s\' fallita + File non trovato + nessuna chiave privata adatta trovata + memoria esterna non pronta + La grandezza della chiave deve essere almeno di 512bit + La chiave principale non puo\' essere ElGamal + opzione algoritmo sconosciuta + Nessuna email trovata + neccessaria almeno una identità + L\'identità primaria non può essere vuota + necessaria almeno una chiave principale + nessuna frase di accesso inserita + nessuna chiave di firma inserita + dati di codifica non validi + Controllo di integrita\' fallito! I dati sono stati modificati! + frase di accesso errata + errore nel salvataggio di alcune chiavi + impossibile estrarre la chiave privata + La data di scadenza deve essere postuma quella di creazione + + Flusso di dati diretto senza file corrispettivo nel filesystem non e\' supportato. + Devi avere Android 4.1 per usare Android NFC Beam! + NFC non disponibile nel tuo dispositivo! + Niente da importare! + Il File non ha contenuti + Si è verificato un errore generico, si prega di creare una nuova segnalazione di errore per OpenKeychain. + + parte del file caricato e\' un oggetto OpenPGP valido, ma non una chave OpenPGP + parti del file caricato sono oggetti OpenPGP validi, ma non chavi OpenPGP + + È necessario apportare modifiche al portachiavi prima prima che sia possibile salvarlo + + Firma non valida! + Chiave pubblica sconosciuta + Firma valida (non certificata) + Firma valida (certificata) + Decodificato correttamente + Decodificata correttamente ma chiave pubblica sconosciuta + Decodifcato correttamente e firma valida (non certificata) + Decodifcato correttamente e firma valida (certificata) + + Fatto. + Annulla + salvataggio... + importazione... + esportazione... + fabbricazione chiave... + certificazione chiave principale... + fabbricazione portachiavi principale... + aggiunta sottochiavi... + salvataggio chiavi... + + esportazione chiave... + esportazione chiavi... + + + generazione chiave, sono necessari fino a 3 minuti... + generazione chiavi, sono necessari fino a 3 minuti... + + estrazione chiavi di firma... + estrazione chiave... + preparazione flussi... + codifica dati... + decodifica dati... + preparazione firma... + generazione firma... + elaborazione firma... + verifica firma... + firma... + lettura dati... + ricerca chiave... + decompressione dati... + verifica integrita\'... + eliminazione sicura di \'%s\'... + + Ricerca Chiavi Pubbliche + Cerca Chiave Privata + Condividi chiave con... + Cerca Keybase.io + + 512 + 768 + 1024 + 1536 + 2048 + 3072 + 4096 + 8192 + Lunghezza chiave peronalizzata + Digita lunghezza chiave personalizzata (in bit): + La lunghezza della chiave RSA deve essere maggiore di 1024 e al massimo 8192. Inoltre, deve essere multipla di 8. + La lunghezza della chiave DSA deve essere almeno 512 e al massimo 1024. Inoltre, deve essere multipla di 64. + + veloce + molto lento + + Inizia + FAQ + Rete di Fiducia + NFC Beam + Novita\' + Info + Versione: + + Importa chiavi selezionate + Importa dagli appunti + + Codice QR con ID %s mancante + Codici QR con ID %s mancanti + + Perfavore inizia col Codice QR con ID 1 + Codica QR deformato! Prova di nuovo! + Scansione codice QR completata! + Impronta troppo corta (< 16 caratteri) + Scansiona il Codice QR con \'Barcode Scanner\' + Per ricevere le chiavi via NFC, il dispositivo deve essere sbloccato. + Aiuto + Ottieni chiave dagli appunti + Ottieni chiave da Keybase.io + + Decodifica File con OpenKeychain + Importa Chiave con OpenKeychain + Codifica con OpenKeychain + Decodifica con OpenKeychain + + Nessuna applicazione registrata!\n\nUna lista di applicazioni di terze parti supportate è disponibile in \'Aiuto\'! + Mostra informazioni dettagliate + Nascondi informazioni dettagliate + Mostra impostazioni avanzate + Nascondi impostazioni avanzate + Nessuna chiave selezionata + Seleziona chiave + Crea una nuova chiave per questo account + Salva + Annulla + Revoca accesso + Avvia applicazione + Cancella account + Nome Pacchetto + SHA-256 della Firma del Pacchetto + Account + Nessun account collegato a questa applicazione + L\'applicazione richiede la creazione di un nuovo account. Si prega di selezionare una chiave privata esistente o crearne una nuova.\nLe applicazioni sono limitate all\'utilizzo delle chiavi selezionate qui! + Le app visualizzate hanno richiesto l\'accesso a OpenKeychain.\nPermetti accesso?\n\nATTENZIONE: Se non sai perche\' questo schermata e\' apparsa, nega l\'accesso! Puoi revocare l\'accesso dopo, usando la schermata \'App Registrate\'. + Permetti accesso + Nega accesso + Per favore selezionare una chiave! + Nessuna chiave pubblica trovata per queste identità: + Esistono piu\' di una chiave pubblica per queste identità: + Per favore ricontrolla la lista destinatari! + Controllo della firma fallito! Hai installato questa app da una fonte diversa? Se sei sicuro che non sia un attacco, revoca la registrazione di questa app in OpenKeychain e dopo registra di nuovo l\'app. + + Condividi tramite Codice QR + Scorri tutti i Codici QR usando \'Prossimo\', a scansionali uno ad uno. + Impronta: + Codice QR con ID %1$d di %2$d + Condividi tramite NFC + + + 1 chiave selezionata. + %d chiavi selezionate. + + Nessuna chiave disponibile... + Puoi iniziare da + o + creazione della tua chiave + importazione chiavi. + + Modifica chiave + Codifica con questa chiave + Certifica identità + Condividi con... + Condividi con NFC tenendo i dispositivi a stretto contatto + Info Principale + Condividi + Sottochiavi + Certificati + + Chiavi + Firma e Codifica + Decodifica e Verifica + Importa Chiavi + App Registrate + Apri drawer di navigazione + Chiudi drawer di navigazione + Modifica + Le Mie Chiavi + Chiave Segreta + disponibile + non disponibile + + Scrivi qui il messaggio da codificare e/o firmare... + Inserisci il testo cifrato qui per la decodifica e/o verifica... + + predefiniti + nessuno + casuale + positivo + revocato + ok + fallito! + errore! + chiave non disponibile + + Certificatore + Dettagli Certificato + Identit + <sconosciuto> + Nessun certificato per questa chiave + Identità da certificare + Ragione della Revoca + Stato Verifica + Tipo + Chiave non trovata! + Errore di elaborazione chiave! + sottochiave non disponibile + ripulito + Le chiavi segrete possono essere cancellate solo individualmente! + Visualizza Dettagli Certificati + sconosciuto + non può firmare + Nessuna sottochiave di codifica disponibile! + diff --git a/OpenKeychain/src/main/res/values-ja/strings.xml b/OpenKeychain/src/main/res/values-ja/strings.xml index 1bcf4553b..c40e9dbdc 100644 --- a/OpenKeychain/src/main/res/values-ja/strings.xml +++ b/OpenKeychain/src/main/res/values-ja/strings.xml @@ -264,9 +264,9 @@ Android NFC Beam機能を使うにはAndroid 4.1 が必要です! あなたのデバイスにはNFCが存在しません! インポートするものがありません! - サーバへのクエリーが不足しています - 鍵サーバへのクエリーが失敗 - 鍵が多すぎます。クエリーを整えてください! + 鍵検索のクエリが短かすぎます + サーバでの鍵の検索が回復不可能なエラーになりました + 鍵検索のクエリが沢山の候補を返しました; クエリを精密化してください ファイルに内容がありません 一般エラーが発生しました、この新しいバグの情報をOpenKeychainプロジェクトに送ってください diff --git a/OpenKeychain/src/main/res/values-nl-rNL/strings.xml b/OpenKeychain/src/main/res/values-nl-rNL/strings.xml deleted file mode 100644 index bf6d7f911..000000000 --- a/OpenKeychain/src/main/res/values-nl-rNL/strings.xml +++ /dev/null @@ -1,198 +0,0 @@ - - - - Publieke sleutel selecteren - Privésleutel selecteren - Versleutelen - Ontsleutelen - Wachtwoord - Sleutel aanmaken - Sleutel bewerken - Instellingen - Geregistreerde apps - Wachtwoord instellen - Versleutelen naar bestand - Ontsleutelen naar bestand - Sleutels importeren - Sleutels exporteren - Sleutels exporteren - Sleutel niet gevonden - Help - - Algemeen - Standaard - Geavanceerd - - Opslaan - Annuleren - Verwijderen - Geen - OK - Volgende - Terug - - Instellingen - Importeren uit bestand - Importeren met QR-code - Importeren met NFC - Exporteren naar bestand - Sleutel verwijderen - Sleutel aanmaken - Sleutel aanmaken (expert) - Zoeken - Beam-instellingen - - Ondertekenen - Bericht - Bestand - Geen wachtwoord - Wachtwoord - Opnieuw - Algoritme - ASCII-armor - Verwijderen na versleuteling - Verwijderen na ontsleuteling - Versleutelingsalgoritme - Verificatie-algoritme - Wachtwoordcache - Berichtcompressie - Bestandscompressie - Sleutel-id - Aanmaak - Verlopen - Gebruik - Sleutelgrootte - Naam - Opmerking - E-mailadres - <geen> - <geen sleutel> - versleutelbaar - ondertekenbaar - verlopen - Privésleutel: - - Geen - 15 sec. - 1 min. - 3 min. - 5 min. - 10 min. - 20 min. - 40 min. - 1 uur - 2 uur - 4 uur - 8 uur - DSA - ElGamal - RSA - Openen... - Waarschuwing - Fout - Fout: %s - - - Wachtwoord verkeerd. - Stel eerst een wachtwoord in. - Geen compatibele bestandsbeheerder geïnstalleerd. - De wachtwoorden komen niet overeen. - Symmetrische versleuteling. - Voer het wachtwoord in voor \'%s\' - Weer u zeker dat u het volgende wilt verwijderen:\n%s? - Succesvol verwijderd. - Selecteer eerst een bestand. - Voer het wachtwoord tweemaal in. - Selecteer ten minste één versleutelingssleutel. - Selecter ten minste één versleutelings-/ondertekeningssleutel. - Weet u zeker dat u de privésleutel \'%s\' wilt verwijderen?\nDit kan niet ongedaan worden gemaakt. - Geen sleutels toegevoegd of bijgewerkt. - 1 sleutel succesvol geëxporteerd. - Geen sleutels geëxporteerd. - Kan de sleutel %08X niet vinden. - Lijst is leeg - - verwijderen \'%s\' mislukt - bestand niet gevonden - geen geschikte privésleutel gevonden - externe opslag niet gereed - sleutelgrootte moet minstens 512-bits zijn - de hoofdsleutel kan geen ElGamal-sleutel zijn - onbekende algoritmekeuze - ten minste een hoofdsleutel is vereist - geen wachtwoord opgegeven - geen ondertekeningssleutel opgegeven - geen geldige versleutelingsgegevens - wachtwoord verekerd - kan privésleutel niet uitpakken - - Uw apparaat biedt geen ondersteuning voor NFC - Niets te importeren - - - opslaan... - importeren... - exporteren... - sleutel maken... - hoofdsleutel certificeren... - hoofdsleutelbos maken... - sub-sleutels toevoegen... - ondertekeningssleutel uitpakken... - sleutel uitpakken... - streams voorbereiden... - gegevens versleutelen... - gegevens ontsleutelen... - handtekening voorbereiden... - handtekening genereren... - handtekening verwerken... - handtekening verifiëren... - ondertekenen... - gegevens lezen... - sleutel opzoeken... - gegevens decomprimeren... - integriteit verifiëren... - \'%s\' veilig verwijderen... - - Publieke sleutels zoeken - Privésleutels zoeken - Sleutel delen met... - - 512 - 1024 - 2048 - 4096 - - snel - zeer langzaam - - Beginnen - NFC Beam - Lijst van wijzigingen - Over - Versie: - - Geselecteerde sleutels importeren - QR-code ongeldig. Probeer het opnieuw - QR-code gescand - - - Geen sleutel geselecteerd - Sleutel selecteren - Opslaan - Annuleren - Toegang herroepen - Toegang toestaan - Toegang weigeren - Selecteert u a.u.b. een sleutel - Bekijkt u a.u.b. de ontvangers - - U gaat door alle QR-codes met \'Volgende\', en scant ze een voor een. - - - - - - - diff --git a/OpenKeychain/src/main/res/values-nl/strings.xml b/OpenKeychain/src/main/res/values-nl/strings.xml new file mode 100644 index 000000000..d35d83517 --- /dev/null +++ b/OpenKeychain/src/main/res/values-nl/strings.xml @@ -0,0 +1,474 @@ + + + + Publieke sleutel selecteren + Privésleutel selecteren + Versleutelen + Ontsleutelen + Wachtwoord + Sleutel aanmaken + Sleutel bewerken + Instellingen + Geregistreerde apps + Sleutelserver Voorkeur + Wachtwoord wijzigen + Wachtwoord instellen + Delen met... + Vingerafdruk delen met... + Sleutel delen met... + Bestand delen met... + Versleutelen naar bestand + Ontsleutelen naar bestand + Sleutels importeren + Sleutels exporteren + Sleutels exporteren + Sleutel niet gevonden + Upload naar Sleutelserver + Certifiëer Identiteiten + Sleutel Details + Help + + Identiteiten + Subsleutels + Algemeen + Standaard + Geavanceerd + Master Sleutel + Primaire Identiteit + Acties + Hele sleutel + Uw Sleutel die u gebruikt voor certificatie + Upload Sleutel + Sleutelserver + Versleutel en/of Signeer + Decodeer en Verifiëer + Vingerafdruk + Sleutel om te certificeren + + Certifiëer + Decodeer, verifiëer en sla bestand op + Decodeer en verifiëer bericht + Van Klembord + Codeer en sla bestanden op + Opslaan + Annuleren + Verwijderen + Geen + OK + Verander Nieuw Wachtwoord + Bepaal Nieuwe Wachtwoord + Upload Naar Sleutelserver + Volgende + Terug + Klembord + Delen met... + Opzoeksleutel + Toon geavanceerde instellingen + Verberg geavanceerde instellingen + Gecodeerd/ondertekend bericht delen... + Toon certificatiesleutel + + Instellingen + Help + Importeren uit bestand + Importeren met QR-code + Importeren met NFC + Exporteren naar bestand + Sleutel verwijderen + Sleutel aanmaken + Sleutel aanmaken (expert) + Zoeken + Sleutelserver + Importeren uit Keybase.io + Sleutelserver... + Update van sleutelserver + Upload naar sleutelserver + Delen... + Deel vingerafdruk... + Hele sleutel delen... + met... + met... + met QR Code + met QR Code + met NFC + Kopieer naar klembord + Beam-instellingen + Annuleren + Versleutelen naar... + Alles selecteren + Sleutels toevoegen + Alle sleutels exporteren + + Ondertekenen + Bericht + Bestand + Geen wachtwoord + Wachtwoord + Opnieuw + Algoritme + ASCII-armor + Ontvangers + Verwijderen na versleuteling + Verwijderen na ontsleuteling + Delen Na Versleuteling + Versleutelingsalgoritme + Verificatie-algoritme + met Publieke Sleutel + met Wachtwoord + Wachtwoordcache + Berichtcompressie + Bestandscompressie + Forceer oude OpenPGPv3 Handtekeningen + Sleutelservers + Sleutel-id + Aanmaak + Verlopen + Gebruik + Sleutelgrootte + Primaire identiteit + Naam + Opmerking + E-mailadres + Upload sleutel naar geselecteerde sleutelserver na bevestiging + Vingerafdruk + Selecteren + Bepaal verloopdatum + + %d geselecteerd + %d geselecteerd + + <no naam> + <geen> + <geen sleutel> + versleutelbaar + ondertekenbaar + kan certificeren + kan niet certificeren + verlopen + ingetrokken + + 1 sleutel + %d sleutels + + + %d sleutelserver + %d sleutelservers + + Privésleutel: + + Geen + 15 sec. + 1 min. + 3 min. + 5 min. + 10 min. + 20 min. + 40 min. + 1 uur + 2 uur + 4 uur + 8 uur + voor altijd + DSA + ElGamal + RSA + Openen... + Waarschuwing + Fout + Fout: %s + + Certificeer + Ondertekenen + Versleutelen + Legitimeren + + Wachtwoord verkeerd. + Stel eerst een wachtwoord in. + Geen compatibele bestandsbeheerder geïnstalleerd. + De wachtwoorden komen niet overeen. + Vul een wachtwoord in. + Symmetrische versleuteling. + Voer het wachtwoord in voor \'%s\' + Weer u zeker dat u het volgende wilt verwijderen:\n%s? + Succesvol verwijderd. + Selecteer eerst een bestand. + Succesvol gesigneerd en/of gecodeerd. + Succesvol gesigneerd en/of gecodeerd naar klembord. + Voer het wachtwoord tweemaal in. + Selecteer ten minste één versleutelingssleutel. + Selecter ten minste één versleutelings-/ondertekeningssleutel. + Specifieer naar welk bestand er gecodeerd moet worden.\nWAARSCHUWING: Bestand zal vervangen worden als het bestaat. + Specifieer naar welk bestand gedecodeerd moet worden.\nWAARSCHUWING: Bestand zal vervangen worden als het bestaat. + Specifieer naar welk bestand er geëxporteerd moet worden.\nWAARSCHUWING: Bestand zal vervangen worden als het bestaat. + Weet u zeker dat u alle weergegeven publieke sleutels wilt verwijderen?\nU kunt dit niet ongedaan maken! + Weet u zeker dat u de privésleutel \'%s\' wilt verwijderen?\nDit kan niet ongedaan worden gemaakt. + U heeft veranderingen aangebracht tot de sleutelring, wilt u deze opslaan? + U heeft een lege identiteit toegevoegd, weet u zeker dat u wilt doorgaan? + Wilt u echt de publieke sleutel \'%s\' verwijderen?\nDit kunt u niet ongedaan maken! + Ook geheime sleutels exporteren? + + Succesvol %d sleutel toegevoegd + Succesvol %d sleutels toegevoegd + + + en %d sleutel bijgewerkt. + en %d sleutels bijgewerkt. + + + Succesvol %d sleutel toegevoegd. + Succesvol %d sleutels toegevoegd. + + + Succesvol %d sleutel bijgewerkt. + Succesvol %d sleutels bijgewerkt. + + Geen sleutels toegevoegd of bijgewerkt. + 1 sleutel succesvol geëxporteerd. + Succesvol %d sleutels geëxporteerd. + Geen sleutels geëxporteerd. + Opmerking: alleen subsleutels ondersteunen ElGamal. + Opmerking: RSA sleutel met lengte 1024-bit en minder genereren wordt als onveilig beschouwd en is uitgeschakeld voor het genereren van nieuwe sleutels. + Kan de sleutel %08X niet vinden. + + %d sleutel gevonden. + %d sleutels gevonden. + + + %d slechte geheime sleutel genegeerd. Misschien heeft u geëxporteerd met de optie\n --export-secret-subkeys\nZorg ervoor dat u in plaats daarvan met\n --export-secret-keys\nexporteert. + %d slechte geheime sleutels genegeerd. Misschien heeft u geëxporteerd met de optie\n --export-secret-subkeys\nZorg ervoor dat u in plaats daarvan met\n --export-secret-keys\nexporteert. + + Succesvol sleutel naar server geüpload + Succesvol identiteiten gecertificeerd + Lijst is leeg + Succesvol sleutel verstuurd met NFC Beam! + Sleutel is gekopieerd naar het klembord! + Sleutel is gekopieerd naar het klembord! + Sleutel is al gecertificeerd! + Selecteer een sleutel die gebruikt moet worden voor certificatie! + Sleutel is te groot om op deze manier gedeeld te worden! + + verwijderen \'%s\' mislukt + bestand niet gevonden + geen geschikte privésleutel gevonden + externe opslag niet gereed + sleutelgrootte moet minstens 512-bits zijn + de hoofdsleutel kan geen ElGamal-sleutel zijn + onbekende algoritmekeuze + geen e-mail gevonden + minstens een identiteit vereist + primaire identiteit mag niet leeg zijn + ten minste een hoofdsleutel is vereist + geen wachtwoord opgegeven + geen ondertekeningssleutel opgegeven + geen geldige versleutelingsgegevens + integriteitcheck niet geslaagd! Data is bewerkt! + wachtwoord verekerd + fout bij het opslaan van bepaalde sleutels + kan privésleutel niet uitpakken + vervaldatum moet na de aanmaakdatum zijn + + Directe binaire data zonder eigenlijke bestand in bestandssysteem wordt niet ondersteund. + U heeft minstens Android 4.1 nodig om Androids NFC Beam eigenschap te gebruiken! + Uw apparaat biedt geen ondersteuning voor NFC + Niets te importeren + Bestand heeft geen inhoud + Een algemene fout is opgetreden, maak alstublieft een nieuwe bug report voor OpenKeychain. + + Deel van het geladen bestand is geldig OpenPGP object maar niet een OpenPGP sleutel + Delen van het geladen bestand zijn geldige OpenPGP objecten maar niet OpenPGP sleutels + + U moet veranderingen maken aan de sleutelring voor u het kunt opslaan. + + Ongeldige handtekening! + Onbekende publieke sleutel + Geldige handtekening (ongecertificeerd) + Geldige handtekening (gecertificeerd) + Succesvol gedecodeerd + Succesvol gedecodeerd maar onbekende publieke sleutel + Succesvol gedecodeerd en geldige handtekening (ongecertificeerd) + Succesvol gedecodeerd en geldige handtekening (gecertificeerd) + + Gereed. + Annuleren + opslaan... + importeren... + exporteren... + sleutel maken... + hoofdsleutel certificeren... + hoofdsleutelbos maken... + sub-sleutels toevoegen... + sleutel opslaan... + + sleutel exporteren... + sleutels exporteren... + + + sleutel genereren, dit kan tot 3 minuten duren... + sleutels genereren, dit kan tot 3 minuten duren... + + ondertekeningssleutel uitpakken... + sleutel uitpakken... + streams voorbereiden... + gegevens versleutelen... + gegevens ontsleutelen... + handtekening voorbereiden... + handtekening genereren... + handtekening verwerken... + handtekening verifiëren... + ondertekenen... + gegevens lezen... + sleutel opzoeken... + gegevens decomprimeren... + integriteit verifiëren... + \'%s\' veilig verwijderen... + + Publieke sleutels zoeken + Privésleutels zoeken + Sleutel delen met... + Doorzoek Keybase.io + + 512 + 768 + 1024 + 1536 + 2048 + 3072 + 4096 + 8192 + Aangepaste sleutelgrootte + Typ aangepaste sleutellengte (in bits): + RSA sleutel lengte moet groter zijn dan 1024 en maximaal 8192. Het moet ook deelbaar zijn door 8. + DSA sleutellengte moet minstens 512 zijn en maximaal 1024. Het moet ook deelbaar zijn door 64. + + snel + zeer langzaam + + Beginnen + FAQ + Web van Vertrouwen + NFC Beam + Lijst van wijzigingen + Over + Versie: + + Geselecteerde sleutels importeren + Importeren uit klembord + + Missende QR code met ID %s + Missende QR Codes met ID\'s %s + + Begin met QR Code met ID 1 + QR-code ongeldig. Probeer het opnieuw + QR-code gescand + Vingerafdruk is te kort (< 16 tekens) + Scan QR Code met \'Barcode Scanner\' + Om sleutels via NFC te ontvangen moet het apparaat ontgrendeld zijn. + Help + Verkrijg sleutel uit klembord + Verkrijg sleutel uit Keybase.io + + Decodeer bestand met OpenKeychain + Importeer Sleutel met OpenKeychain + Codeer met OpenKeychain + Decodeer met OpenKeychain + + Geen geregistreerde applicaties!\n\nEen lijst van ondersteunde derde-partij applicaties kan gevonden worden in \'Help\'! + Toon geavanceerde informatie + Verberg geavanceerde informatie + Toon geavanceerde instellingen + Verberg geavanceerde instellingen + Geen sleutel geselecteerd + Sleutel selecteren + Maak nieuwe sleutel voor dit account + Opslaan + Annuleren + Toegang herroepen + Start applicatie + Verwijder account + Pakketnaam + SHA-256 van Pakkethandtekening + Accounts + Geen accounts verbonden aan deze applicatie. + Deze applicatie vraagt de aanmaak van een nieuw account aan. Selecteer een bestaande privésleutel of maak een nieuwe.\nApplicaties zijn gelimiteerd tot het gebruik van sleutels die u hier selecteert! + De weergegeven applicatie vraagt toegang tot OpenKeychain.\nSta toegang toe?\n\nWAARSCHUWING: Als u niet weet waarom dit scherm verscheen, sta dan geen toegang toe! U kunt toegang later weghalen door het \'Geregistreerde Applicaties\' scherm te gebruiken. + Toegang toestaan + Toegang weigeren + Selecteert u a.u.b. een sleutel + Geen publieke sleutels zijn gevonden voor deze identiteiten: + Meer dan een publieke sleutel bestaat voor deze identiteiten: + Bekijkt u a.u.b. de ontvangers + Handtekening check mislukt! Hebt u deze app van een andere bron geïnstalleerd? Als u zeker weet dat dit geen aanval is, haal dan de registratie van deze app in OpenKeychain weg en registreer de app opnieuw. + + Delen met QR-code + U gaat door alle QR-codes met \'Volgende\', en scant ze een voor een. + Vingerafdruk: + QR Code met ID %1$d van %2$d + Deel met NFC + + + 1 sleutel geselecteerd. + %d sleutels geselecteerd. + + Nog geen sleutels beschikbaar... + U kunt beginnen door + of + uw eigen sleutel aanmaken + sleutels importeren. + + Sleutel bewerken + Codeer met deze sleutel + Certifiëer identiteiten + Delen met... + Delen via NFC door de apparaten met de achterkant tegen elkaar te houden + Hoofd Info + Delen + Subsleutels + Certificaten + + Sleutels + Ondertekenen en Versleutelen + Decoderen en Verifiëren + Importeer Sleutels + Geregistreerde apps + Open navigatiemenu + Sluit navigatiemenu + Bewerken + Mijn Sleutels + Geheime Sleutel + beschikbaar + onbeschikbaar + + Schrijf bericht hier om te versleutelen en/of ondertekenen... + Voer cijfertekst hier in om te decoderen en/of verifiëren... + + standaard + geen + eenvoudig + positief + ingetrokken + ok + mislukt! + fout! + sleutel onbeschikbaar + + Certificeer + Certificaat Details + Identiteit + <onbekend> + Geen certificaten voor deze sleutel + Identiteiten om te certificeren + Intrek Reden + Verificatie Status + Type + Sleutel niet gevonden! + Fout bij verwerken sleutel! + subsleutel onbeschikbaar + gestript + Geheime sleutels kunnen alleen individueel verwijderd worden! + Toon Certificaat Details + onbekend + kan niet ondertekenen + Geen codeer-subsleutel beschikbaar! + diff --git a/OpenKeychain/src/main/res/values-pl/strings.xml b/OpenKeychain/src/main/res/values-pl/strings.xml index 2f327c9bd..d1b7de393 100644 --- a/OpenKeychain/src/main/res/values-pl/strings.xml +++ b/OpenKeychain/src/main/res/values-pl/strings.xml @@ -259,9 +259,6 @@ Potrzebujesz Androida 4.1 aby korzystać z Android NFC Beam NCF jest niedostępne na twoim urządzeniu Nie ma nic do zaimportowania! - Niewystarczające zapytanie do serwera - Odpytywanie serwera zakończone niepowodzeniem - Zbyt wiele możliwych kluczy. Proszę zweryfikuj swoje zapytanie! Plik jest pusty Wystąpił błąd ogólny, proszę zgłoś go autorom OpenKeychain. diff --git a/OpenKeychain/src/main/res/values-ru/strings.xml b/OpenKeychain/src/main/res/values-ru/strings.xml index b51bcbde2..0becea0bc 100644 --- a/OpenKeychain/src/main/res/values-ru/strings.xml +++ b/OpenKeychain/src/main/res/values-ru/strings.xml @@ -13,6 +13,10 @@ Настройки сервера ключей Изменить пароль Задать пароль + Отправить... + Отправить отпечаток... + Отправить ключ... + Отправить файл... Зашифровать в файл Расшифровать в файл Импорт ключей @@ -20,22 +24,32 @@ Экспорт ключей Ключ не найден Загрузить на сервер ключей + Сертифицировать Сведения о ключе Помощь + Идентификаторы + Доп. ключи Приложение Алгоритмы Дополнительно Основной ключ + Основной идентификатор Действия + Ключ Ваш ключ для сертификации Загрузить ключ Сервер ключей Зашифровать и/или Подписать Расшифровать и проверить + Отпечаток ключа + Сертифицируемый ключ Сертифицировать + Расшифровать, проверить и сохранить файл + Расшифровать и проверить сообщение Из буфера обмена + Зашифровать и сохранить файл Сохранить Отмена Удалить @@ -51,6 +65,8 @@ Найти ключ Показать расширенные настройки Скрыть расширенные настройки + Отправить зашифрованное/подписанное сообщение... + Просмотр ключа Настройки Помощь @@ -63,6 +79,7 @@ Создать ключ (эксперт) Поиск Сервер ключей + Импорт с сервера Keybase.io Сервер ключей... Обновить с сервера ключей Загрузить на сервер ключей @@ -108,6 +125,7 @@ Годен до... Применение Размер ключа + Основной идентификатор Имя Комментарий Email @@ -174,6 +192,8 @@ Вы уверены, что хотите удалить\n%s ? Удалено. Сначала выберите файл. + Успешно подписано и/или зашифровано. + Успешно подписано и/или зашифровано в буфер обмена. Дважды введите пароль. Укажите хотя бы один ключ. Выберите хотя бы один ключ для шифрования или подписи. @@ -182,6 +202,8 @@ Пожалуйста, выберите файл для экспорта.\nВНИМАНИЕ! Если файл существует, он будет перезаписан. Вы уверены, что хотите удалить выбранные ключи?\nЭто действие нельзя отменить! Вы уверены, что ходите удалить СЕКРЕТНЫЙ ключ \'%s\'?\nЭто действие нельзя отменить! + Изменения внесены. Сохранить? + Вы добавили пустой идентификатор. Вы уверены, что хотите продолжить? Вы правда хотите удалить публичный ключ \'%s\'?\nЭто действие нельзя отменить! Экспортировать секретные ключи? @@ -222,10 +244,13 @@ %d плохих секретных ключей проигнорировано. Возможно, вы экспортируете с параметром\n--export-secret-subkeys\nВместо этого используйте\n--export-secret-keys\n Ключ успешно загружен на сервер + Подписанные идентификаторы Список пуст! Ключ успешно передан через NFC! Ключ скопирован в буфер обмена! + Отпечаток ключа скопирован в буфер обмена! Ключ уже был сертифицирован ранее! + Выберите ключ, используемый для сертификации! Ключ слишком большой для этого способа передачи! Неверная подпись! Неизвестный ключ Верная подпись (не сертифицирована) Верная подпись (сертифицирована) Успешно расшифровано + Успешно расшифровано, но публичный ключ не известен + Успешно расшифровано и подпись верна (не сертифицирована) + Успешно расшифровано и подпись верна (сертифицирована) Готово. Отмена @@ -308,6 +339,7 @@ Найти публичные ключи Найти секретные ключи Отправить... + Поиск на сервере Keybase.io 512 768 @@ -348,12 +380,14 @@ Разблокируйте устройство, что бы получить ключ через NFC. Помощь Получить ключ из буфера + Получить ключ с сервера Keybase.io OpenKeychain: Расшифровать файл OpenKeychain: Импортировать ключ OpenKeychain: Зашифровать OpenKeychain: Расшифровать + Нет связанных приложений!\n\nСписок приложений, поддерживающих интеграцию, доступен в разделе \'Помощь\'! Показать подробную информацию Скрыть подробную информацию Показать расширенные настройки @@ -364,6 +398,7 @@ Сохранить Отмена Отозвать доступ + Запустить приложение Удалить аккаунт Наименование пакета SHA-256 подписи пакета @@ -374,6 +409,8 @@ Разрешить доступ Запретить доступ Пожалуйста, выберите ключ! + Для этих идентификаторов не найдены публичные ключи: + Для этих идентификаторов найдено более одного публичного ключа: Пожалуйста, проверьте получателей! Проверка подписи пакета не удалась! Если вы установили программу из другого источника, отзовите для неё доступ к этой программе или обновите право доступа. @@ -394,7 +431,15 @@ создать свой ключ Импортировать ключи + Изменить ключ Зашифровать этим ключом + Сертифицировать + Отправить... + Отправить по NFC, удерживая устройства рядом + Основные данные + Отправить... + Доп. ключи + Сертификация Ключи Подписать и зашифровать @@ -414,14 +459,18 @@ по умолчанию нет + отозван ok сбой! ошибка! ключ не доступен + Кем подписан Детали сертификации + Идентификатор <неизв.> Этот ключ не сертифицирован + Идентификаторы Причина отзыва Статус верификации Тип @@ -431,4 +480,5 @@ Секретные ключи можно удалять только по одному! Просмотреть детали сертификации неизв. + Нет доп. ключа для шифрования! diff --git a/OpenKeychain/src/main/res/values-sl/strings.xml b/OpenKeychain/src/main/res/values-sl/strings.xml index f80db4b6c..8b12cdebe 100644 --- a/OpenKeychain/src/main/res/values-sl/strings.xml +++ b/OpenKeychain/src/main/res/values-sl/strings.xml @@ -291,9 +291,6 @@ Za uporabo storitve NFC Beam potrebujete najmanj Android 4.1! NFC ni na voljo na vaši napravi! Ni česa uvoziti! - Pomanjkljiva poizvedba na strežniku - Poizvedba na strežniku ni bila uspešna - Preveč možnih ključev. Redefinirajte svoje iskanje! Datoteka nima vsebine Pripetila se je splošna napaka, prosimo ustvarite poročilo o \'hrošču\'. @@ -403,6 +400,7 @@ Šifriraj z OpenKeychain Dešifriraj z OpenKeychain + Ni nobene prijavljene aplikacije!\n\nSeznam podprtih aplikacij drugih avtorjev lahko najdete v Pomoči! Pokaži dodatne informacije Skrij dodatne informacije Pokaži napredne nastavitve @@ -413,6 +411,7 @@ Shrani Prekliči Prekliči dostop + Zaženi aplikacijo Izbriši račun Ime paketa SHA-256 podpisa paketa diff --git a/OpenKeychain/src/main/res/values-uk/strings.xml b/OpenKeychain/src/main/res/values-uk/strings.xml index 54204a044..b27b6ffd3 100644 --- a/OpenKeychain/src/main/res/values-uk/strings.xml +++ b/OpenKeychain/src/main/res/values-uk/strings.xml @@ -13,6 +13,10 @@ Налаштування сервера ключів Змінити парольну фразу Задати парольну фразу + Поділитися через… + Поділитися відбитком із… + Поділитися ключем з… + Поширити файл з… Зашифрувати до файлу Розшифрувати до файлу Імпортувати ключі @@ -20,22 +24,32 @@ Експортувати ключі Ключ не знайдено Завантажити на сервер ключів + Сертифікувати сутності Подробиці про ключ Довідка + Сутності + Підключі Загальне Типове Додаткове Основний ключ + Первинна сутність Дії + Цілий ключ Ваш ключ використаний для сертифікації Завантажити ключ Сервер ключів Шифрувати і/або підписати Розшифрувати і Перевірити + Відбиток + Ключ для сертикації Сертифікувати + Розшифрувати, перевірити та зберегти файл + Розшифрувати і перевірити повідомлення З буфера обміну + Шифрувати і зберегти файл Зберегти Скасувати Вилучити @@ -51,6 +65,8 @@ Шукати ключ Показати додаткові налаштування Приховати додаткові налаштування + Поширити зашифроване/підписане повідомлення… + Переглянути ключ сертифікації Параметри Довідка @@ -63,6 +79,7 @@ Створити ключ (експерт) Пошук Сервер ключів + Імпорт із Keybase.io Сервер ключів… Оновити з сервера ключів Завантажити на сервер ключів @@ -102,11 +119,13 @@ Стиснення повідомлення Стиснення файлу Примусово старі підписи OpenPGPv3 + Сервери ключів ІД ключа Створення Закінчення Використання Розмір ключа + Первинна сутність Назва Коментар Ел. пошта @@ -128,6 +147,16 @@ не можна сертифікувати закінчився скасовано + + 1 ключ + %d ключі + %d ключів + + + %d сервер ключів + %d сервери ключів + %d серверів ключів + Секретний ключ: Жоден @@ -177,6 +206,7 @@ Ви справді хочете вилучити усі вибрані відкриті ключі?\nВи не зможете це відмінити! Ви справді хочете вилучити секретний ключ \'%s\'?\nВи не зможете це відмінити! Ви внесли зміни до в\'язки ключів, ви б хотіли. Волієте їх зберегти? + Ви вже додали порожню сутність. Ви справді хочете продовжити? Ви справді хочете вилучити відкритий ключ \'%s\'?\nВи не зможете це відмінити! Також експортувати секретні ключі? @@ -217,8 +247,13 @@ %d поганих секретних ключів проігноровано. Можливо ви експортували з параметром\n --export-secret-subkeys\nЗробіть ваш експорт з \n --export-secret-keys\nнатомість. Успішно завантажено ключ на сервер + Успішно сертифіковані сутності Цей список - порожній! + Успішно надіслано ключ через промінь NFC! Ключ вже скопійовано у буфер обміну! + Відбиток вже скопійовано до буфера обміну! + Ключ вже сертифіковано! + Будь ласка, виберіть ключ для використання у сертифікації! Ключ надто великий для цього способу поширення! + Пряма передача даних без використання файлу в пам\'яті пристрою не підтримується. + Вам потрібний Android 4.1 для використання функції Androids NFC промінь! NFC недоступний на вашому пристрої! Нема що імпортувати! - Запит обмеженого сервера - Збій сервера ключа запиту + Запит пошуку ключа надто короткий + Невиправна помилка пошуку ключів в сервері + Запит пошуку ключа видав надто багато варіантів. Уточніть пошуковий запит Файл не має вмісту Трапилася загальна помилка, будь ласка, створіть новий звіт про помилку для OpenKeychain. @@ -302,6 +342,7 @@ Пошук публічних ключів Пошук секретних ключів Поділитися ключем з… + Пошук Keybase.io 512 768 @@ -342,12 +383,14 @@ Розблокуйте пристрій, щоб отримати ключ через NFC. Довідка Отримати ключ з буфера обміну + Отримати ключ із Keybase.io Розшифрувати файл з OpenKeychain Імпортувати ключ з OpenKeychain Зашифрувати з OpenKeychain Розшифрувати з OpenKeychain + Немає зареєстрованих програм!\n\nСписок підтримуваних сторонніх програм можна знайти у „Довідці“! Показати додаткову інформацію Приховати додаткову інформацію Показати додаткові налаштування @@ -358,6 +401,7 @@ Зберегти Скасувати Відкликати доступ + Запустити програму Видалити профіль Назва пакунку SHA-256 підписку пакунку @@ -368,6 +412,8 @@ Дозволити доступ Не дозволити доступ Будь ласка, виберіть ключ! + Немає публічних ключів для цих сутностей: + Наявно більше одного публічного ключа для цих сутностей: Будь ласка, перевірте список одержувачів! Перевірка підпису пакету не вдалася! Може ви встановили програму з іншого джерела? Якщо ви впевнені, що це не атака, то відкличте реєстрацію програми у OpenKeychain та знову зареєструйте її. @@ -388,7 +434,17 @@ створюється ваш власний ключ імпортуюся ключі. + Редагувати ключ + Шифрувати з цим ключем + Сертифікувати сутності + Поділитися із… + Поширити через NFC, тримаючи пристрої пліч-о-пліч + Основна інформація + Поділитися + Підключі + Сертифікати + Ключі Підписати і зашифрувати Розшифрувати і Перевірити Імпортувати ключі @@ -408,13 +464,18 @@ жоден випадковий додатний + відкликано Гаразд Невдача! Помилка! Недоступний ключ + Ким підписаний Дані сертифікату + Сутність + <невідомо> Немає сертифікатів для цього ключа + Сутності для сертифікації Причина відхилення Стан перевірки Тип @@ -423,4 +484,7 @@ підключ недоступний Секретні ключі можна вилучити лише окремо! Переглянути дані сертифікату + невідомий + не можна підписати + Жодний підключ шифрування недоступний! -- cgit v1.2.3