summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js b/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
index 7f6c52f..7565d2d 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
@@ -1,214 +1,212 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Strings) == 'undefined') { Clipperz.PM.Strings = {}; } 26if (typeof(Clipperz.PM.Strings) == 'undefined') { Clipperz.PM.Strings = {}; }
29 27
30Clipperz.PM.Strings.messagePanelConfigurations = { 28Clipperz.PM.Strings.messagePanelConfigurations = {
31 29
32 30
33 //------------------------------------------------------------------------- 31 //-------------------------------------------------------------------------
34 // 32 //
35 // Registration - connection 33 // Registration - connection
36 // 34 //
37 'registration_verify': function() { 35 'registration_verify': function() {
38 return { 36 return {
39 'title': null, 37 'title': null,
40 'text': Clipperz.PM.Strings['connectionRegistrationSendingRequestMessageText'] 38 'text': Clipperz.PM.Strings['connectionRegistrationSendingRequestMessageText']
41 } 39 }
42 }, 40 },
43 41
44 'registration_sendingCredentials': function() { 42 'registration_sendingCredentials': function() {
45 return { 43 return {
46 'title': null, 44 'title': null,
47 'text': Clipperz.PM.Strings['connectionRegistrationSendingCredentialsMessageText'] 45 'text': Clipperz.PM.Strings['connectionRegistrationSendingCredentialsMessageText']
48 } 46 }
49 }, 47 },
50 48
51 //------------------------------------------------------------------------- 49 //-------------------------------------------------------------------------
52 // 50 //
53 // One Time Password login message panel 51 // One Time Password login message panel
54 // 52 //
55 53
56 'OTP_login_start': function() { 54 'OTP_login_start': function() {
57 return { 55 return {
58 'title': Clipperz.PM.Strings['OTPloginMessagePanelInitialTitle'], 56 'title': Clipperz.PM.Strings['OTPloginMessagePanelInitialTitle'],
59 'text': Clipperz.PM.Strings['OTPloginMessagePanelInitialText'], 57 'text': Clipperz.PM.Strings['OTPloginMessagePanelInitialText'],
60 'steps': '+3', 58 'steps': '+3',
61 'buttons': {} 59 'buttons': {}
62 } 60 }
63 }, 61 },
64 62
65 'OTP_login_loadingOTP': function() { 63 'OTP_login_loadingOTP': function() {
66 return { 64 return {
67 'title': Clipperz.PM.Strings['OTPloginMessagePanelLoadingTitle'], 65 'title': Clipperz.PM.Strings['OTPloginMessagePanelLoadingTitle'],
68 'text': Clipperz.PM.Strings['OTPloginMessagePanelLoadingText'] 66 'text': Clipperz.PM.Strings['OTPloginMessagePanelLoadingText']
69 } 67 }
70 }, 68 },
71 69
72 'OTP_login_extractingPassphrase': function() { 70 'OTP_login_extractingPassphrase': function() {
73 return { 71 return {
74 'title': Clipperz.PM.Strings['OTPloginMessagePanelProcessingTitle'], 72 'title': Clipperz.PM.Strings['OTPloginMessagePanelProcessingTitle'],
75 'text': Clipperz.PM.Strings['OTPloginMessagePanelProcessingText'] 73 'text': Clipperz.PM.Strings['OTPloginMessagePanelProcessingText']
76 } 74 }
77 }, 75 },
78 76
79 77
80 //------------------------------------------------------------------------- 78 //-------------------------------------------------------------------------
81 // 79 //
82 // Login message panel 80 // Login message panel
83 // 81 //
84 'login_start': function() { 82 'login_start': function() {
85 return { 83 return {
86 'title': Clipperz.PM.Strings['loginMessagePanelInitialTitle'], 84 'title': Clipperz.PM.Strings['loginMessagePanelInitialTitle'],
87 'text': Clipperz.PM.Strings['loginMessagePanelInitialText'], 85 'text': Clipperz.PM.Strings['loginMessagePanelInitialText'],
88 'steps': '+7', 86 'steps': '+7',
89 'buttons': { 87 'buttons': {
90 'ok': Clipperz.PM.Strings['loginMessagePanelInitialButtonLabel'] 88 'ok': Clipperz.PM.Strings['loginMessagePanelInitialButtonLabel']
91 } 89 }
92 } 90 }
93 }, 91 },
94 92
95 'login_connected': function() { 93 'login_connected': function() {
96 return { 94 return {
97 'title': Clipperz.PM.Strings['loginMessagePanelConnectedTitle'], 95 'title': Clipperz.PM.Strings['loginMessagePanelConnectedTitle'],
98 'text': Clipperz.PM.Strings['loginMessagePanelConnectedText'], 96 'text': Clipperz.PM.Strings['loginMessagePanelConnectedText'],
99 'buttons': {} 97 'buttons': {}
100 } 98 }
101 }, 99 },
102 100
103 'login_failed':function() { 101 'login_failed':function() {
104 return { 102 return {
105 'title': Clipperz.PM.Strings['loginMessagePanelFailureTitle'], 103 'title': Clipperz.PM.Strings['loginMessagePanelFailureTitle'],
106 'text': Clipperz.PM.Strings['loginMessagePanelFailureText'], 104 'text': Clipperz.PM.Strings['loginMessagePanelFailureText'],
107 'button': Clipperz.PM.Strings['loginMessagePanelFailureButtonLabel'] 105 'button': Clipperz.PM.Strings['loginMessagePanelFailureButtonLabel']
108 } 106 }
109 }, 107 },
110 108
111 //------------------------------------------------------------------------- 109 //-------------------------------------------------------------------------
112 // 110 //
113 // Login message panel - connection 111 // Login message panel - connection
114 // 112 //
115 'connection_sendingCredentials': function() { 113 'connection_sendingCredentials': function() {
116 return { 114 return {
117 'title': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageTitle'], 115 'title': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageTitle'],
118 'text': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageText'] 116 'text': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageText']
119 } 117 }
120 }, 118 },
121 119
122 'connection_credentialVerification': function() { 120 'connection_credentialVerification': function() {
123 return { 121 return {
124 'title': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageTitle'], 122 'title': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageTitle'],
125 'text': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageText'] 123 'text': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageText']
126 } 124 }
127 }, 125 },
128 126
129 'connection_loggedIn': function() { 127 'connection_loggedIn': function() {
130 return { 128 return {
131 'title': Clipperz.PM.Strings['connectionLoginDoneMessageTitle'], 129 'title': Clipperz.PM.Strings['connectionLoginDoneMessageTitle'],
132 'text': Clipperz.PM.Strings['connectionLoginDoneMessageText'] 130 'text': Clipperz.PM.Strings['connectionLoginDoneMessageText']
133 } 131 }
134 }, 132 },
135 133
136 //------------------------------------------------------------------------- 134 //-------------------------------------------------------------------------
137 // 135 //
138 //Login message panel - user 136 //Login message panel - user
139 // 137 //
140 'connection_upgrading': function() { 138 'connection_upgrading': function() {
141 return { 139 return {
142 'title': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageTitle'], 140 'title': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageTitle'],
143 'text': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageText'], 141 'text': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageText'],
144 'steps': '+1' 142 'steps': '+1'
145 } 143 }
146 }, 144 },
147 145
148 'connection_done': function() { 146 'connection_done': function() {
149 return { 147 return {
150 'title': Clipperz.PM.Strings['userLoginPanelConnectedMessageTitle'], 148 'title': Clipperz.PM.Strings['userLoginPanelConnectedMessageTitle'],
151 'text': Clipperz.PM.Strings['userLoginPanelConnectedMessageText'] 149 'text': Clipperz.PM.Strings['userLoginPanelConnectedMessageText']
152 } 150 }
153 }, 151 },
154 152
155 'connection_tryOlderSchema': function() { 153 'connection_tryOlderSchema': function() {
156 return { 154 return {
157 'title': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageTitle'], 155 'title': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageTitle'],
158 'text': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageText'], 156 'text': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageText'],
159 'steps': '+4' 157 'steps': '+4'
160 } 158 }
161 }, 159 },
162 160
163 'connection_loadingUserData': function() { 161 'connection_loadingUserData': function() {
164 return { 162 return {
165 'title': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageTitle'], 163 'title': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageTitle'],
166 'text': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageText'] 164 'text': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageText']
167 } 165 }
168 }, 166 },
169 167
170 'connection_decryptingUserData': function() { 168 'connection_decryptingUserData': function() {
171 return { 169 return {
172 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageTitle'], 170 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageTitle'],
173 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageText'], 171 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageText'],
174 'steps': '+1' 172 'steps': '+1'
175 } 173 }
176 }, 174 },
177 175
178 'connection_decryptingUserStatistics': function() { 176 'connection_decryptingUserStatistics': function() {
179 return { 177 return {
180 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageTitle'], 178 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageTitle'],
181 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageText'] 179 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageText']
182 } 180 }
183 }, 181 },
184 182
185 'collectingEntropy': function() { 183 'collectingEntropy': function() {
186 return { 184 return {
187 'text': Clipperz.PM.Strings['panelCollectingEntryopyMessageText'], 185 'text': Clipperz.PM.Strings['panelCollectingEntryopyMessageText'],
188 'steps': '+1' 186 'steps': '+1'
189 } 187 }
190 }, 188 },
191 189
192 //------------------------------------------------------------------------- 190 //-------------------------------------------------------------------------
193 // 191 //
194 // Cards block - delete card panel 192 // Cards block - delete card panel
195 // 193 //
196 'deleteRecord_collectData': function() { 194 'deleteRecord_collectData': function() {
197 return { 195 return {
198 'title': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageTitle'], 196 'title': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageTitle'],
199 'text': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageText'] 197 'text': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageText']
200 } 198 }
201 }, 199 },
202 200
203 'deleteRecord_encryptData': function() { 201 'deleteRecord_encryptData': function() {
204 return { 202 return {
205 'title': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageTitle'], 203 'title': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageTitle'],
206 'text': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageText'] 204 'text': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageText']
207 } 205 }
208 }, 206 },
209 207
210 'deleteRecord_sendingData': function() { 208 'deleteRecord_sendingData': function() {
211 return { 209 return {
212 'title': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageTitle'], 210 'title': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageTitle'],
213 'text': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageText'] 211 'text': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageText']
214 } 212 }