mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
76 lines
2.0 KiB
TypeScript
76 lines
2.0 KiB
TypeScript
|
export const chat = 'Chat'
|
||
|
export const settings = 'Settings'
|
||
|
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'
|
||
|
export const ok = 'ok'
|
||
|
export const connected = 'connected'
|
||
|
export const disconnected = 'disconnected'
|
||
|
|
||
|
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',
|
||
|
}
|
||
|
|
||
|
export const controls = {
|
||
|
release: 'Release Controls',
|
||
|
request: 'Request Controls',
|
||
|
lock: 'Lock Controls',
|
||
|
unlock: 'Unlock Controls',
|
||
|
}
|
||
|
|
||
|
export const room = {
|
||
|
lock: 'Lock Room',
|
||
|
unlock: 'Unlock Room',
|
||
|
locked: 'Room Locked',
|
||
|
unlocked: 'Room Unlocked',
|
||
|
}
|
||
|
|
||
|
export const setting = {
|
||
|
scroll: 'Scroll Sensitivity',
|
||
|
scroll_invert: 'Invert Scroll',
|
||
|
autoplay: 'Autoplay Video',
|
||
|
ignore_emotes: 'Ignore Emotes',
|
||
|
chat_sound: 'Play Chat Sound',
|
||
|
}
|
||
|
|
||
|
export const connection = {
|
||
|
success: 'Successfully connected',
|
||
|
}
|
||
|
|
||
|
export const notifications = {
|
||
|
logged_out: '{name} logged out!',
|
||
|
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',
|
||
|
}
|