mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-11 03:25:05 -05:00
Merge branch 'master' of github.com:open-keychain/open-keychain
This commit is contained in:
commit
c2f6aa09c5
@ -496,7 +496,7 @@ public class UncachedKeyRing {
|
||||
// Replace modified key in the keyring
|
||||
ring = replacePublicKey(ring, modified);
|
||||
if (ring == null) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_NO_SECRET_KEYRING, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_SECRET_DUMMY, indent);
|
||||
return null;
|
||||
}
|
||||
indent -= 1;
|
||||
@ -667,7 +667,7 @@ public class UncachedKeyRing {
|
||||
// replace pubkey in keyring
|
||||
ring = replacePublicKey(ring, modified);
|
||||
if (ring == null) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_NO_SECRET_KEYRING, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_SECRET_DUMMY, indent);
|
||||
return null;
|
||||
}
|
||||
indent -= 1;
|
||||
@ -712,7 +712,7 @@ public class UncachedKeyRing {
|
||||
|
||||
if (getMasterKeyId() != masterKeyId
|
||||
|| !Arrays.equals(getFingerprint(), other.getFingerprint())) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_HETEROGENEOUS, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_HETEROGENEOUS, indent);
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -760,7 +760,7 @@ public class UncachedKeyRing {
|
||||
// otherwise, just insert the public key
|
||||
result = replacePublicKey(result, key);
|
||||
if (result == null) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_NO_SECRET_KEYRING, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_SECRET_DUMMY, indent);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@ -792,7 +792,7 @@ public class UncachedKeyRing {
|
||||
if (modified != resultKey) {
|
||||
result = replacePublicKey(result, modified);
|
||||
if (result == null) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_NO_SECRET_KEYRING, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_SECRET_DUMMY, indent);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@ -820,7 +820,7 @@ public class UncachedKeyRing {
|
||||
if (modified != resultKey) {
|
||||
result = replacePublicKey(result, modified);
|
||||
if (result == null) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_NO_SECRET_KEYRING, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_SECRET_DUMMY, indent);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@ -837,7 +837,7 @@ public class UncachedKeyRing {
|
||||
return new UncachedKeyRing(result);
|
||||
|
||||
} catch (IOException e) {
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_FATAL_ENCODE, indent);
|
||||
log.add(LogLevel.ERROR, LogType.MSG_MG_ERROR_ENCODE, indent);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -333,14 +333,14 @@ public class OperationResultParcel implements Parcelable {
|
||||
|
||||
|
||||
// keyring consolidation
|
||||
MSG_MG_ERROR_SECRET_DUMMY(R.string.msg_mg_error_secret_dummy),
|
||||
MSG_MG_ERROR_ENCODE(R.string.msg_mg_error_encode),
|
||||
MSG_MG_ERROR_HETEROGENEOUS(R.string.msg_mg_error_heterogeneous),
|
||||
MSG_MG_PUBLIC (R.string.msg_mg_public),
|
||||
MSG_MG_SECRET (R.string.msg_mg_secret),
|
||||
MSG_MG_FATAL_ENCODE (R.string.msg_mg_fatal_encode),
|
||||
MSG_MG_HETEROGENEOUS (R.string.msg_mg_heterogeneous),
|
||||
MSG_MG_NEW_SUBKEY (R.string.msg_mg_new_subkey),
|
||||
MSG_MG_FOUND_NEW (R.string.msg_mg_found_new),
|
||||
MSG_MG_UNCHANGED (R.string.msg_mg_unchanged),
|
||||
MSG_MG_NO_SECRET_KEYRING (R.string.msg_mg_no_secret_keyring),
|
||||
|
||||
// secret key create
|
||||
MSG_CR (R.string.msg_cr),
|
||||
|
@ -572,8 +572,8 @@
|
||||
<!--Keyring merging log entries-->
|
||||
<string name="msg_mg_public">Incorporándolas en el juego de claves públicas %s</string>
|
||||
<string name="msg_mg_secret">Incorporándolas en el juego de claves secretas (privadas) %s</string>
|
||||
<string name="msg_mg_fatal_encode">Error fatal codificando la firma</string>
|
||||
<string name="msg_mg_heterogeneous">¡Se intentaron fusionar juegos de claves con diferentes huellas de validación de claves!</string>
|
||||
<string name="msg_mg_error_encode">Error fatal codificando la firma</string>
|
||||
<string name="msg_mg_error_heterogeneous">¡Se intentaron fusionar juegos de claves con diferentes huellas de validación de claves!</string>
|
||||
<string name="msg_mg_new_subkey">Añadiendo nueva subclave %s</string>
|
||||
<string name="msg_mg_found_new">Se encontraron %s nuevos certificados en el juego de claves</string>
|
||||
<string name="msg_mg_unchanged">No hay nuevos certificados</string>
|
||||
|
@ -572,8 +572,8 @@
|
||||
<!--Keyring merging log entries-->
|
||||
<string name="msg_mg_public">Fusion vers le trousseau public %s</string>
|
||||
<string name="msg_mg_secret">Fusion vers le trousseau secret %s</string>
|
||||
<string name="msg_mg_fatal_encode">Erreur fatale lors de l\'encodage de la signature</string>
|
||||
<string name="msg_mg_heterogeneous">Il a été tenté de fusionner des trousseaux avec des empreintes différentes !</string>
|
||||
<string name="msg_mg_error_encode">Erreur fatale lors de l\'encodage de la signature</string>
|
||||
<string name="msg_mg_error_heterogeneous">Il a été tenté de fusionner des trousseaux avec des empreintes différentes !</string>
|
||||
<string name="msg_mg_new_subkey">Ajout de la nouvelle sous-clef %s</string>
|
||||
<string name="msg_mg_found_new">%s nouveaux certificats trouvés dans le trousseau</string>
|
||||
<string name="msg_mg_unchanged">Aucun nouveau certificat</string>
|
||||
|
@ -572,8 +572,8 @@
|
||||
<!--Keyring merging log entries-->
|
||||
<string name="msg_mg_public">Fusione nel portachiavi pubblico %s</string>
|
||||
<string name="msg_mg_secret">Fusione nel portachiavi privato %s</string>
|
||||
<string name="msg_mg_fatal_encode">Errore fatale nella codifica della firma</string>
|
||||
<string name="msg_mg_heterogeneous">Tentativo di unire portachiavi con impronte digitali diverse!</string>
|
||||
<string name="msg_mg_error_encode">Errore fatale nella codifica della firma</string>
|
||||
<string name="msg_mg_error_heterogeneous">Tentativo di unire portachiavi con impronte digitali diverse!</string>
|
||||
<string name="msg_mg_new_subkey">Aggiunta nuova sottochiave %s</string>
|
||||
<string name="msg_mg_found_new">Trovati %s nuovi certificati nel portachiavi</string>
|
||||
<string name="msg_mg_unchanged">Nessun nuovo certificato</string>
|
||||
|
@ -555,8 +555,8 @@
|
||||
<!--Keyring merging log entries-->
|
||||
<string name="msg_mg_public">公開鍵の鍵輪 %s にマージ中</string>
|
||||
<string name="msg_mg_secret">秘密鍵の鍵輪 %s にマージ中</string>
|
||||
<string name="msg_mg_fatal_encode">署名のエンコードでの致命的なエラー</string>
|
||||
<string name="msg_mg_heterogeneous">指紋が異なる鍵輪をマージしようとしています!</string>
|
||||
<string name="msg_mg_error_encode">署名のエンコードでの致命的なエラー</string>
|
||||
<string name="msg_mg_error_heterogeneous">指紋が異なる鍵輪をマージしようとしています!</string>
|
||||
<string name="msg_mg_new_subkey">新しい副鍵 %s を追加中</string>
|
||||
<string name="msg_mg_found_new">鍵輪に新しい検証を %s 発見</string>
|
||||
<string name="msg_mg_unchanged">新しい証明がない</string>
|
||||
|
@ -552,8 +552,8 @@
|
||||
<!--Keyring merging log entries-->
|
||||
<string name="msg_mg_public">Злиття у публічну в\'язку %s</string>
|
||||
<string name="msg_mg_secret">Злиття у секретну в\'язку %s</string>
|
||||
<string name="msg_mg_fatal_encode">Фатальна помилка шифрування підпису</string>
|
||||
<string name="msg_mg_heterogeneous">Спробували злити в\'язки із різними відбитками!</string>
|
||||
<string name="msg_mg_error_encode">Фатальна помилка шифрування підпису</string>
|
||||
<string name="msg_mg_error_heterogeneous">Спробували злити в\'язки із різними відбитками!</string>
|
||||
<string name="msg_mg_new_subkey">Додається новий підключ %s</string>
|
||||
<string name="msg_mg_found_new">Знайдено %s нових сертифікатів у в\'язці</string>
|
||||
<string name="msg_mg_unchanged">Немає нових сертифікатів</string>
|
||||
|
@ -500,6 +500,8 @@
|
||||
<string name="cert_verify_error">error!</string>
|
||||
<string name="cert_verify_unavailable">key unavailable</string>
|
||||
|
||||
<!-- LogType log messages. Errors should have _ERROR_ in their name and end with a ! -->
|
||||
|
||||
<!-- Import Public log entries -->
|
||||
<string name="msg_ip_apply_batch">Applying insert batch operation.</string>
|
||||
<string name="msg_ip_bad_type_secret">Tried to import secret keyring as public. This is a bug, please file a report!</string>
|
||||
@ -620,14 +622,14 @@
|
||||
<string name="msg_kc_uid_dup">Removing duplicate user id "%s". The secret key contained two of them. This may result in missing certifications!</string>
|
||||
|
||||
<!-- Keyring merging log entries -->
|
||||
<string name="msg_mg_error_secret_dummy">New public subkey found, but secret subkey dummy generation is not supported!</string>
|
||||
<string name="msg_mg_error_heterogeneous">Tried to merge keyrings with differing fingerprints!</string>
|
||||
<string name="msg_mg_error_encode">Fatal error encoding signature!</string>
|
||||
<string name="msg_mg_public">Merging into public keyring %s</string>
|
||||
<string name="msg_mg_secret">Merging into secret keyring %s</string>
|
||||
<string name="msg_mg_fatal_encode">Fatal error encoding signature</string>
|
||||
<string name="msg_mg_heterogeneous">Tried to merge keyrings with differing fingerprints!</string>
|
||||
<string name="msg_mg_new_subkey">Adding new subkey %s</string>
|
||||
<string name="msg_mg_found_new">Found %s new certificates in keyring</string>
|
||||
<string name="msg_mg_unchanged">No new certificates</string>
|
||||
<string name="msg_mg_no_secret_keyring">No secret keyring to add subkey to</string>
|
||||
|
||||
<!-- createSecretKeyRing -->
|
||||
<string name="msg_cr">Generating new master key</string>
|
||||
|
Loading…
Reference in New Issue
Block a user