summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/src/language.h
blob: ab2c46dfcae48eb2d0ca1d8eea74cb2175f65d4f (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#pragma once

#define LANG_INLINE_PREFIX	            "[OTR INFO] "

#define LANG_START_OTR						LPGEN("Start OTR")
#define LANG_STOP_OTR						LPGEN("Stop OTR")

#define LANG_YES							LPGENW("Yes")
#define LANG_NO								LPGENW("No")

#define LANG_OTR_TOOLTIP					LPGEN("OTR status (Click for more options)")
#define LANG_STATUS_DISABLED				LPGENW("OTR Encryption: Disabled")
#define LANG_STATUS_UNVERIFIED				LPGENW("OTR Encryption: UNVERIFIED")
#define LANG_STATUS_PRIVATE					LPGENW("OTR Encryption: Private")
#define LANG_STATUS_FINISHED				LPGENW("OTR Encryption: Finished")

#define LANG_MENU_START						LPGENW("&Start OTR session")
#define LANG_MENU_REFRESH					LPGENW("&Refresh OTR session")
#define LANG_MENU_STOP						LPGENW("Sto&p OTR session")
#define LANG_MENU_VERIFY					LPGENW("&Verify Fingerprint")
#define LANG_MENU_TOGGLEHTML				LPGENW("&Convert HTML (for Pidgin)")

#define LANG_SESSION_TERMINATED_OTR			LPGENW("OTR encrypted session with '%s' has been terminated")
#define LANG_SESSION_REQUEST_OTR			LPGENW("Requesting OTR encrypted session with '%s'")
#define LANG_SESSION_START_OTR				LPGENW("Beginning OTR encrypted session with '%s'")
#define LANG_SESSION_START_OTR_VERIFY		LPGENW("Beginning OTR encrypted session with '%s' (NOT VERIFIED)")
#define LANG_SESSION_TRY_CONTINUE_OTR		LPGENW("Trying to refresh OTR encrypted session with '%s'")
#define LANG_SESSION_HAS_CONTINUE_OTR		LPGENW("OTR encrypted session was refreshed by '%s'")
#define LANG_SESSION_HAS_CONTINUE_OTR_VERIFY LPGENW("OTR encrypted session was refreshed by '%s' (NOT VERIFIED)")
#define LANG_SESSION_CONTINUE_OTR			LPGENW("OTR encrypted session with '%s' successfully refreshed")
#define LANG_SESSION_CONTINUE_OTR_VERIFY	LPGENW("OTR encrypted session with '%s' successfully refreshed (NOT VERIFIED)")
#define LANG_SESSION_TERMINATED_BY_OTR		LPGENW("OTR encrypted session has been terminated by '%s'. You should do that, too!")
#define LANG_SESSION_NOT_STARTED_OTR		LPGENW("OTR encrypted session with '%s' could not be started")

#define LANG_ENCRYPTION_ERROR				LPGENW("OTR could not encrypt when sending message")

#define LANG_OTR_INFO						LPGEN("OTR Information")

#define LANG_FINGERPRINT_VERIFIED			LPGENW("OTR encrypted session with '%s' is now using a VERIFIED fingerprint")
#define LANG_FINGERPRINT_NOT_VERIFIED		LPGENW("OTR encrypted session with '%s' is now using a NOT VERIFIED fingerprint")

#define LANG_ICON_UNVERIFIED				LPGEN("OTR unverified")
#define LANG_ICON_FINISHED					LPGEN("OTR finished")
#define LANG_ICON_PRIVATE					LPGEN("OTR private")
#define LANG_ICON_NOT_PRIVATE				LPGEN("OTR not secure")
#define LANG_ICON_OTR						LPGEN("OTR")
#define LANG_ICON_REFRESH					LPGEN("Refresh")

#define LANG_GENERATE_KEY					LPGENW("Generating new private key for protocol '%s'.\nPlease Wait...")

#define LANG_OPT_GENERAL					LPGENW("General")
#define LANG_OPT_PROTO						LPGENW("Protocols")
#define LANG_OPT_CONTACTS					LPGENW("Contacts")
#define LANG_OPT_FINGER						LPGENW("Fingerprints")

#define LANG_CONTACT						LPGENW("Contact")
#define LANG_PROTO							LPGENW("Account")
#define LANG_POLICY							LPGENW("Policy")
#define LANG_VERIFIED						LPGENW("Verified")
#define LANG_ACTIVE							LPGENW("Active")
#define LANG_FINGERPRINT					LPGENW("Fingerprint")
#define LANG_HTMLCONV						LPGENW("Conv. HTML")

#define LANG_POLICY_DEFAULT					LPGENW("Default")
#define LANG_POLICY_ALWAYS					LPGENW("Always")
#define LANG_POLICY_OPP						LPGENW("Opportunistic")
#define LANG_POLICY_MANUAL					LPGENW("Manual")
#define LANG_POLICY_NEVER 					LPGENW("Never")

#define LANG_OTR_ASK_NEWKEY					LPGENW("Generating new key for '%s'. Continue?")
#define LANG_OTR_ASK_REMOVEKEY				LPGENW("Removing key for '%s'. Continue?")

#define LANG_OTR_FPVERIFY_TITLE				LPGENW("OTR Fingerprint Verification")
#define LANG_OTR_FPVERIFY_DESC				LPGENW("OTR encrypted session with '%s'.\nThe OTR fingerprint used by your contact is NOT VERIFIED.\nDo you trust it?")
#define LANG_OTR_FPVERIFIED_DESC			LPGENW("OTR encrypted session with '%s'.\nThe OTR fingerprint used by your contact is already verified.\nDo you still trust it?")
#define LANG_YOUR_PRIVKEY					LPGENW("Your Fingerprint to tell your contact (use a trusted channel!)")
#define LANG_CONTACT_FINGERPRINT			LPGENW("VERIFY: Fingerprint from contact")

#define LANG_SMP_VERIFY_TITLE				LPGENW("OTR Authenticate: %s (%s)")
#define LANG_SMPTYPE_QUESTION				LPGENW("Challenge Question")
#define	LANG_SMPTYPE_PASSWORD				LPGENW("Known Password")
#define LANG_SMPTYPE_FINGERPRINT			LPGENW("Manual fingerprint comparison")
#define LANG_SMP_ANSWER						LPGENW("Secret Answer")
#define LANG_SMP_QUESTION					LPGENW("Question")
#define LANG_SMP_PASSWORD					LPGENW("Password")

#define LANG_SMP_SUCCESS					LPGENW("Authentication successful.")
#define LANG_SMP_SUCCESS_VERIFY				LPGENW("Your contact authenticated you successfully. You can send your own request to authenticate him.")
#define LANG_SMP_ERROR						LPGENW("Error during authentication.")
#define LANG_SMP_FAILED						LPGENW("Authentication failed")
#define LANG_SMP_IN_PROGRESS				LPGENW("Authentication for '%s' is already in progress.")

#define LANG_SMP_PROGRESS_TITLE				LPGENW("OTR Authenticating: %s (%s)")
#define LANG_SMP_PROGRESS_DESC				LPGENW("Authenticating contact:\n%s (%s)")

#define LANG_OTR_SMPQUESTION_VERIFY_DESC	LPGENW("OTR encrypted session with '%s' (UNVERIFIED).\nUse a question only your partner can answer.")
#define LANG_OTR_SMPQUESTION_VERIFIED_DESC	LPGENW("OTR encrypted session with '%s' (VERIFIED).\nVerify the session again using a question only your partner can answer.")

#define LANG_OTR_SMPPASSWORD_VERIFY_DESC	LPGENW("OTR encrypted session with '%s' (UNVERIFIED).\nUse a known password.")
#define LANG_OTR_SMPPASSWORD_VERIFIED_DESC	LPGENW("OTR encrypted session with '%s' (VERIFIED).\nVerify the session again using a known password.")

#define LANG_OTR_SMPQUESTION_RESPOND_DESC	LPGENW("Your contact '%s' wants to verify your identity with a question only you can answer.")

#define LANG_OTR_SMPPASSWORD_RESPOND_DESC	LPGENW("Your contact '%s' wants to verify your identity with a secret password you should know.")

#define LANG_FINGERPRINT_STILL_IN_USE		LPGENW("Fingerprint '%s' still in use in conversation with '%s' (%s). You cannot delete it!")
#define LANG_FINGERPRINT_NOT_DELETED		LPGENW("Fingerprint '%s' in use in conversation with '%s' (%s). It could not be deleted!")

#define LANG_OTR_SECUREIM_STARTED			LPGENW("Cannot start OTR for '%s'. SecureIM is already running")
#define LANG_OTR_SECUREIM_TITLE				LPGENW("OTR: SecureIM installed")
#define LANG_OTR_SECUREIM_TEXT				LPGENW("You are using SecureIM. MirOTR will only work for contacts with SecureIM disabled")