mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Room dialog (#905)
* support ToolIcon className and fix label padding * factor some ExportDialog classes out to Modal * initial RoomDialog prototype * change label for another-session button * remove unused css * add color comments * Move the collaboration button to the main menu, add support for mobile * remove button for creating another session * add locks * Fix alignment issue * Reorder button * reuse current scene for collab session * keep collaboration state on restore Co-authored-by: Jed Fox <git@twopointzero.us>
This commit is contained in:
parent
aa9a6b0909
commit
b82b0754ac
15 changed files with 341 additions and 40 deletions
|
@ -41,7 +41,8 @@
|
|||
"canvasBackground": "Canvas background",
|
||||
"drawingCanvas": "Drawing Canvas",
|
||||
"layers": "Layers",
|
||||
"language": "Language"
|
||||
"language": "Language",
|
||||
"createRoom": "Share a live-collaboration session"
|
||||
},
|
||||
"buttons": {
|
||||
"clearReset": "Reset the canvas",
|
||||
|
@ -62,7 +63,9 @@
|
|||
"done": "Done",
|
||||
"edit": "Edit",
|
||||
"undo": "Undo",
|
||||
"redo": "Redo"
|
||||
"redo": "Redo",
|
||||
"roomDialog": "Share a live-collaboration session",
|
||||
"createNewRoom": "Create new room"
|
||||
},
|
||||
"alerts": {
|
||||
"clearReset": "This will clear the whole canvas. Are you sure?",
|
||||
|
@ -105,5 +108,16 @@
|
|||
"errorStack": "Error stack trace:",
|
||||
"errorStack_loading": "Loading data. please wait...",
|
||||
"sceneContent": "Scene content:"
|
||||
},
|
||||
"roomDialog": {
|
||||
"desc_intro": "You can invite people to your current scene to collaborate with you.",
|
||||
"desc_privacy": "Don't worry, the session uses end-to-end encryption, so whatever you draw will stay private. Not even our server will be able to see what you come up with.",
|
||||
"desc_start": "To begin, click the button below. (Will use the current scene. If you don't want this, you can manually clear it, first)",
|
||||
"button_startSession": "Start session",
|
||||
"button_stopSession": "Stop session",
|
||||
"desc_inProgressIntro": "Live-collaboration session is now in progress.",
|
||||
"desc_persistenceWarning": "Note that the scene data is shared across collaborators in a P2P fashion, and not persisted to our server. Thus, if all of you disconnect, you will loose the data unless you export it to a file or a shareable link.",
|
||||
"desc_shareLink": "Share this link with anyone you want to collaborate with:",
|
||||
"desc_exitSession": "Stopping the session will disconnect your from the room, but you'll be able to continue working with the scene, locally. Note that this won't affect other people, and they'll still be able to collaborate on their version."
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue