aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-10-13 00:26:59 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2014-10-13 00:26:59 +0200
commit815ed2e233aca0aab04bce1ab5657dd953c72ce2 (patch)
tree9d95b2448e4810f889cc4ad0d1b9c15211dbdd87 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results
parentb47412eb1e2b983f803e6227ea5d07fdead9fe5a (diff)
downloadopen-keychain-815ed2e233aca0aab04bce1ab5657dd953c72ce2.tar.gz
open-keychain-815ed2e233aca0aab04bce1ab5657dd953c72ce2.tar.bz2
open-keychain-815ed2e233aca0aab04bce1ab5657dd953c72ce2.zip
rewrite export with new operation style
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
index dc47942fc..3a7328d5a 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
@@ -580,6 +580,24 @@ public abstract class OperationResult implements Parcelable {
MSG_CRT_WARN_CERT_FAILED (LogLevel.WARN, R.string.msg_crt_warn_cert_failed),
MSG_CRT_WARN_SAVE_FAILED (LogLevel.WARN, R.string.msg_crt_warn_save_failed),
+ MSG_IMPORT (LogLevel.START, R.plurals.msg_import),
+ MSG_IMPORT_ERROR (LogLevel.ERROR, R.string.msg_import_error),
+ MSG_IMPORT_PARTIAL (LogLevel.ERROR, R.string.msg_import_partial),
+ MSG_IMPORT_SUCCESS (LogLevel.OK, R.string.msg_import_success),
+
+ MSG_EXPORT (LogLevel.START, R.plurals.msg_export),
+ MSG_EXPORT_PUBLIC (LogLevel.DEBUG, R.string.msg_export_public),
+ MSG_EXPORT_SECRET (LogLevel.DEBUG, R.string.msg_export_secret),
+ MSG_EXPORT_ALL (LogLevel.START, R.string.msg_export_all),
+ MSG_EXPORT_ERROR_NO_FILE (LogLevel.ERROR, R.string.msg_export_error_no_file),
+ MSG_EXPORT_ERROR_FOPEN (LogLevel.ERROR, R.string.msg_export_error_fopen),
+ MSG_EXPORT_ERROR_NO_URI (LogLevel.ERROR, R.string.msg_export_error_no_uri),
+ MSG_EXPORT_ERROR_URI_OPEN (LogLevel.ERROR, R.string.msg_export_error_uri_open),
+ MSG_EXPORT_ERROR_STORAGE (LogLevel.ERROR, R.string.msg_export_error_storage),
+ MSG_EXPORT_ERROR_DB (LogLevel.ERROR, R.string.msg_export_error_db),
+ MSG_EXPORT_ERROR_IO (LogLevel.ERROR, R.string.msg_export_error_io),
+ MSG_EXPORT_SUCCESS (LogLevel.OK, R.string.msg_export_success),
+
MSG_CRT_UPLOAD_SUCCESS (LogLevel.OK, R.string.msg_crt_upload_success),
MSG_ACC_SAVED (LogLevel.INFO, R.string.api_settings_save_msg),