2020-04-05 14:57:22 +12:00
|
|
|
export const logout = 'logout'
|
|
|
|
export const unsupported = 'this browser does not support webrtc'
|
|
|
|
export const admin_loggedin = 'You are logged in as an admin'
|
|
|
|
export const you = 'You'
|
2020-04-06 22:25:07 +12:00
|
|
|
export const send_a_message = 'Send a message'
|
2020-04-07 01:29:53 +12:00
|
|
|
|
|
|
|
export const side = {
|
|
|
|
chat: 'Chat',
|
|
|
|
settings: 'Settings',
|
|
|
|
}
|
2020-04-05 14:57:22 +12:00
|
|
|
|
|
|
|
export const connect = {
|
|
|
|
title: 'Please Login',
|
|
|
|
displayname: 'Display Name',
|
|
|
|
password: 'Password',
|
|
|
|
connect: 'Connect',
|
|
|
|
}
|
|
|
|
|
|
|
|
export const context = {
|
|
|
|
ignore: 'Ignore',
|
|
|
|
unignore: 'Unignore',
|
|
|
|
mute: 'Mute',
|
|
|
|
unmute: 'Unmute',
|
|
|
|
release: 'Force Release Controls',
|
|
|
|
take: 'Force Take Controls',
|
|
|
|
give: 'Give Controls',
|
|
|
|
kick: 'Kick',
|
|
|
|
ban: 'Ban IP',
|
2020-04-06 22:22:36 +12:00
|
|
|
confirm: {
|
|
|
|
kick_title: 'Kick {name}?',
|
|
|
|
kick_text: 'Are you sure you want to kick {name}?',
|
|
|
|
ban_title: 'Ban {name}?',
|
|
|
|
ban_text: 'Are you sure you want to ban {name}? You will need to restart the server to undo this.',
|
|
|
|
mute_title: 'Mute {name}?',
|
|
|
|
mute_text: 'Are you sure you want to mute {name}?',
|
|
|
|
unmute_title: 'Unmute {name}?',
|
|
|
|
unmute_text: 'Are you sure you want to unmute {name}?',
|
|
|
|
button_yes: 'Yes',
|
|
|
|
button_cancel: 'Cancel',
|
2020-04-07 00:56:20 +12:00
|
|
|
},
|
2020-04-05 14:57:22 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
export const controls = {
|
|
|
|
release: 'Release Controls',
|
|
|
|
request: 'Request Controls',
|
|
|
|
lock: 'Lock Controls',
|
|
|
|
unlock: 'Unlock Controls',
|
|
|
|
}
|
|
|
|
|
|
|
|
export const room = {
|
2021-01-15 09:41:00 +13:00
|
|
|
lock: 'Lock Room (for users)',
|
|
|
|
unlock: 'Unlock Room (for users)',
|
|
|
|
locked: 'Room Locked (for users)',
|
|
|
|
unlocked: 'Room Unlocked (for users)',
|
2020-04-05 14:57:22 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
export const setting = {
|
|
|
|
scroll: 'Scroll Sensitivity',
|
|
|
|
scroll_invert: 'Invert Scroll',
|
|
|
|
autoplay: 'Autoplay Video',
|
|
|
|
ignore_emotes: 'Ignore Emotes',
|
|
|
|
chat_sound: 'Play Chat Sound',
|
2020-07-13 18:10:18 +12:00
|
|
|
keyboard_layout: 'Keyboard Layout',
|
2020-09-27 12:13:34 +13:00
|
|
|
broadcast_is_active: 'Broadcast Enabled',
|
|
|
|
broadcast_url: 'RTMP url',
|
2020-04-05 14:57:22 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
export const connection = {
|
2020-04-07 01:29:53 +12:00
|
|
|
logged_out: 'You have been logged out!',
|
|
|
|
connected: 'Successfully connected',
|
|
|
|
disconnected: 'You have been disconnected',
|
|
|
|
button_confirm: 'Ok',
|
2020-04-05 14:57:22 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
export const notifications = {
|
2020-04-07 01:29:53 +12:00
|
|
|
connected: '{name} connected',
|
|
|
|
disconnected: '{name} disconnected',
|
2020-04-05 14:57:22 +12:00
|
|
|
controls_taken: '{name} took the controls',
|
|
|
|
controls_taken_force: 'force took the controls',
|
|
|
|
controls_taken_steal: 'took the controls from {name}',
|
|
|
|
controls_released: '{name} released the controls',
|
|
|
|
controls_released_force: 'force released the controls',
|
|
|
|
controls_released_steal: 'released the controls from {name}',
|
|
|
|
controls_given: 'gave the controls to {name}',
|
|
|
|
controls_has: '{name} has the controls',
|
|
|
|
controls_has_alt: 'But I let them know you wanted it',
|
|
|
|
controls_requesting: '{name} is requesting the controls',
|
|
|
|
resolution: 'changed the resolution to {width}x{height}@{rate}',
|
|
|
|
banned: 'banned {name}',
|
|
|
|
kicked: 'kicked {name}',
|
|
|
|
muted: 'muted {name}',
|
|
|
|
unmuted: 'unmuted {name}',
|
|
|
|
room_locked: 'locked the room',
|
|
|
|
room_unlocked: 'unlocked the room',
|
|
|
|
}
|