Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
m1k1o
GitHub Repository: m1k1o/neko
Path: blob/master/client/src/locale/en-us.ts
1301 views
1
export const logout = 'log out'
2
export const unsupported = 'this web-browser does not support WebRTC'
3
export const admin_loggedin = 'You are logged in as an admin'
4
export const you = 'You'
5
export const somebody = 'Somebody'
6
export const send_a_message = 'Send a message'
7
8
export const side = {
9
chat: 'Chat',
10
files: 'Files',
11
settings: 'Settings',
12
}
13
14
export const connect = {
15
login_title: 'Please Log In',
16
invitation_title: 'You have been invited to this room',
17
displayname: 'Enter your display name',
18
password: 'Password',
19
connect: 'Connect',
20
error: 'Login error',
21
empty_displayname: 'Display Name cannot be empty.',
22
}
23
24
export const context = {
25
ignore: 'Ignore',
26
unignore: 'Unignore',
27
mute: 'Mute',
28
unmute: 'Unmute',
29
release: 'Force Release Controls',
30
take: 'Force Take Controls',
31
give: 'Give Controls',
32
kick: 'Kick',
33
ban: 'Ban IP',
34
confirm: {
35
kick_title: 'Kick {name}?',
36
kick_text: 'Are you sure you want to kick {name}?',
37
ban_title: 'Ban {name}?',
38
ban_text: 'Do you want to ban {name}? You will need to restart the server to undo this.',
39
mute_title: 'Mute {name}?',
40
mute_text: 'Are you sure you want to mute {name}?',
41
unmute_title: 'Unmute {name}?',
42
unmute_text: 'Do you want to unmute {name}?',
43
button_yes: 'Yes',
44
button_cancel: 'Cancel',
45
},
46
}
47
48
export const controls = {
49
release: 'Release Controls',
50
request: 'Request Controls',
51
lock: 'Lock Controls',
52
unlock: 'Unlock Controls',
53
has: 'You have control',
54
hasnot: 'You do not have control',
55
}
56
57
export const locks = {
58
control: {
59
lock: 'Lock Controls (for users)',
60
unlock: 'Unlock Controls (for users)',
61
locked: 'Controls Locked (for users)',
62
unlocked: 'Controls Unlocked (for users)',
63
notif_locked: 'locked controls for users',
64
notif_unlocked: 'unlocked controls for users',
65
},
66
login: {
67
lock: 'Lock Room (for users)',
68
unlock: 'Unlock Room (for users)',
69
locked: 'Room Locked (for users)',
70
unlocked: 'Room Unlocked (for users)',
71
notif_locked: 'locked the room',
72
notif_unlocked: 'unlocked the room',
73
},
74
file_transfer: {
75
lock: 'Lock File Transfer (for users)',
76
unlock: 'Unlock File Transfer (for users)',
77
locked: 'File Transfer Locked (for users)',
78
unlocked: 'File Transfer Unlocked (for users)',
79
notif_locked: 'locked file transfer',
80
notif_unlocked: 'unlocked file transfer',
81
},
82
}
83
84
export const setting = {
85
scroll: 'Scroll Sensitivity',
86
scroll_invert: 'Invert Scroll',
87
autoplay: 'Autoplay Video',
88
ignore_emotes: 'Ignore Emotes',
89
chat_sound: 'Play Chat Sound',
90
keyboard_layout: 'Keyboard Layout',
91
broadcast_title: 'Live Broadcast',
92
}
93
94
export const connection = {
95
logged_out: 'You have been logged out.',
96
reconnecting: 'Reconnecting...',
97
connected: 'Connected',
98
disconnected: 'Disconnected',
99
kicked: 'You have been removed from this room.',
100
button_confirm: 'OK',
101
}
102
103
export const notifications = {
104
connected: '{name} connected',
105
disconnected: '{name} disconnected',
106
controls_taken: '{name} took the controls',
107
controls_taken_force: 'took the controls forcibly',
108
controls_taken_steal: 'took the controls from {name}',
109
controls_released: '{name} released the controls',
110
controls_released_force: 'released the controls forcibly',
111
controls_released_steal: 'released the controls from {name}',
112
controls_given: 'gave the controls to {name}',
113
controls_has: '{name} has the controls',
114
controls_has_alt: 'But I let the person know you wanted it',
115
controls_requesting: '{name} is requesting the controls',
116
resolution: 'changed the resolution to {width}x{height}@{rate}',
117
banned: 'banned {name}',
118
kicked: 'kicked {name}',
119
muted: 'muted {name}',
120
unmuted: 'unmuted {name}',
121
}
122
123
export const files = {
124
downloads: 'Downloads',
125
uploads: 'Uploads',
126
upload_here: 'Click or drag files here to upload',
127
}
128
129