blob: 059d5c25f54d876fe31d8477bf6909f9097587c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
$labels = [];
$labels['inbox_settings'] = 'Inbox Settings';
$labels['encryption'] = 'Encryption';
$labels['encrypt_inbox'] = 'Encrypt incoming mail to my inbox';
$labels['forwarding'] = 'Forwarding';
$labels['fwd_addr'] = 'Forward mail to this address';
$labels['storage'] = 'Storage';
$labels['store_addr'] = 'Store mail send to this address';
$labels['settings_saved'] = 'Inbox settings saved';
$labels['inbox_keys'] = 'Encryption Keys';
$labels['no_query'] = 'One or more database queries are not yet configured';
$labels['no_db'] = 'Failed to connect to the database';
$labels['sql_error'] = 'Encountered an error while performing the operation; please check your SQL syntax and database DSN';
$labels['keygen'] = 'Generate Key';
$labels['key_import'] = 'Import Key';
$labels['key_delete'] = 'Delete Key';
$labels['no_keys'] = 'There are no encryption keys associated with your account yet';
$labels['fingerprint'] = 'Key Fingerprint';
$labels['comment'] = 'Comment';
$labels['comment_placeholder'] = 'A comment to remember this key by';
$labels['generating_key'] = 'Generating an encryption key';
$labels['paste_key_data'] = 'Paste ASCII-armored PGP public key(s) here. Please do not upload private keys.';
$labels['invalid_pgp_data'] = 'Imported blob does not contain valid PGP data, or contains private keys';
$labels['no_key_data'] = 'Imported blob does not contain any PGP public keys';
$labels['importing_key'] = 'Importing encryption key(s)';
$labels['keys_imported'] = 'Encryption key(s) added';
$labels['confirm_delete_key'] = 'Are you sure you want to remove this encryption key from your account?';
$labels['deleting_key'] = 'Removing encryption key...';
$labels['keys_deleted'] = 'Encryption key(s) removed'
?>
|