1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import { LanguageStrings } from "./mod.ts";
export const PO_EN_US: LanguageStrings = {
microphone: "Microphone",
chatbox_placeholder: "Type a message",
chatbox_label: "send message",
join_message: author => [author, " joined."],
leave_message: author => [author, " left."],
summary_empty_message: "(empty message)",
summery_image: "(image)",
camera: "Camera",
file: "File",
leave: "Leave",
screen: "Screen",
image_alt: "Image (click to open)",
warn_mem_download: "Downloading to memory because serviceworker is not available.",
confirm_update: "Really update?",
warn_short_secret: "Room name is very short. E2EE is insecure!",
warn_secure_context: "This page is not a 'Secure Context'",
warn_no_webrtc: "WebRTC not supported.",
warn_no_crypto: "SubtleCrypto not availible",
warn_no_sw: "Your browser does not support the Service Worker API, forced automatic updates are unavoidable.",
warn_old_url: "You were redirected from the old URL format. The server knows the room secret now - E2EE is insecure!",
confirm_quit: "You have local resources shared. Really quit?",
controls: "Controls",
license: "License",
source_code: "Source code",
stop_sharing: "Stop sharing",
documentation: "Documentation",
known_rooms: "Known Rooms",
chat: "Chat",
settings: "Settings",
edit: "Edit",
finish_edit: "Finish edit",
add_current_room: "Add current room",
add: "Add",
move_down: "Move down",
move_up: "Move up",
unknown_user: "Unknown user",
status_checking: "Checking...",
status_connected: "Connected",
status_failed: "Connection failed",
status_disconnected: "Disconnected",
status_no_conn: "Not connected",
status_await_channel_open: "Waiting for data channel to open…",
status_await_channel_close: "Waiting for data channel to close…",
downloading: "Downloading…",
download_again: "Download again",
download: "Download",
status_drain_buffer: amount => `Draining buffers… (buffer: ${amount})`,
status_buffering: "Buffering…",
status_closing: "Channel closing…",
mute: "Mute",
video_stream: "video stream",
audio_stream: "video stream",
disable: "Disable",
enable: "Enable",
status_await_track: "Awaiting track…",
notification_perm_explain: "For keks-meet to send notifications, it needs you to grant permission: ",
grant: "Grant",
clear_prefs: "Want to clear all settings? Use this:",
}
|