cryptalk/public/js/cryptalk_modules/templates.js

56 lines
2.4 KiB
JavaScript
Raw Normal View History

2014-09-18 12:21:07 -04:00
// The templating function only supports variables.
// Define a variable as so: {variable_name}
define({
help: '' +
'<li> \n' +
'Cryptalk, encrypted instant chat. \n' +
' \n' +
'---------------------------------------------------------------------------------- \n' +
' \n' +
'Available commands: \n' +
2014-09-18 13:17:41 -04:00
' /generate Generate a random room id \n' +
2014-09-18 12:21:07 -04:00
' /join RoomId Joins a room \n' +
2014-09-18 13:17:41 -04:00
' /leave Leaves the current room \n' +
' /nick NickName Sets an optinal nickname \n' +
2014-09-18 12:21:07 -04:00
' /key OurStrongPassphrase Sets the password used for \n' +
' encryption/decryption \n' +
' /clear Clears on-screen buffer \n' +
' /help This \n' +
' \n' +
' Besides that, it\'s just to talk! \n' +
' \n' +
'Code available for review at https://www.github.com/hexagon/cryptalk \n' +
' \n' +
'--------------------------------------------------------------------------------- \n' +
'</li> ',
2014-09-18 13:17:41 -04:00
default_nick: 'Anonymous',
2014-09-18 12:21:07 -04:00
post: {
info: '<li>INF> <i class="info">{text}</i></li>',
server: '<li>SRV> <i class="server">{text}</i></li>',
error: '<li>ERR> <i class="error">{text}</i></li>',
2014-09-18 13:17:41 -04:00
message: '<li>{nick}> <i class="message">{text}</i></li>'
2014-09-18 12:21:07 -04:00
},
messages: {
key_weak: 'Hmm, that\'s a weak key, try again...',
key_ok_ready: 'Key set, you can now start communicating.',
key_ok_but_no_room: 'Key set, you can now join a room and start communicating.',
msg_no_room: 'You have to join a room before sending messages. See /help.',
msg_no_key: 'You have to set an encryption key before sending a message. See /help.',
2014-09-18 13:17:41 -04:00
nick_short: 'Nickname is too short, try again.',
nick_set: 'From now on, you\'re referred to as \'{nick}\'.',
leave_from_nowhere: 'How are you supposed to leave, while being nowhere?',
2014-09-18 12:21:07 -04:00
// Available variables: 'commandName'
unrecognized_command: 'Unrecognized command: "{commandName}"',
// Available variables: 'roomName'
joined_room: 'Joined room {roomName}',
left_room: 'Left room {roomName}',
2014-09-18 13:17:41 -04:00
already_in_room: 'You are already in a room ({roomName}), stoopid.',
2014-09-18 12:21:07 -04:00
unable_to_decrypt: 'Unabled to decrypt received message, keys does not match.'
}
});