2015-02-06 15:46:50 +00:00
{
2019-01-11 23:33:01 +00:00
"addPeople" : {
"add" : "Invite" ,
2020-04-01 07:47:51 +00:00
"addContacts" : "Invite your contacts" ,
2022-01-18 17:36:05 +00:00
"contacts" : "contacts" ,
2020-04-01 07:47:51 +00:00
"copyInvite" : "Copy meeting invitation" ,
"copyLink" : "Copy meeting link" ,
"copyStream" : "Copy live streaming link" ,
2019-01-11 23:33:01 +00:00
"countryNotSupported" : "We do not support this destination yet." ,
"countryReminder" : "Calling outside the US? Please make sure you start with the country code!" ,
2020-04-01 07:47:51 +00:00
"defaultEmail" : "Your Default Email" ,
2019-01-11 23:33:01 +00:00
"disabled" : "You can't invite people." ,
2019-07-02 13:14:58 +00:00
"failedToAdd" : "Failed to add participants" ,
2020-04-01 07:47:51 +00:00
"googleEmail" : "Google Email" ,
"inviteMoreHeader" : "You are the only one in the meeting" ,
"inviteMoreMailSubject" : "Join {{appName}} meeting" ,
"inviteMorePrompt" : "Invite more people" ,
"linkCopied" : "Link copied to clipboard" ,
2019-01-11 23:33:01 +00:00
"noResults" : "No matching search results" ,
2020-04-01 07:47:51 +00:00
"outlookEmail" : "Outlook Email" ,
2021-05-12 13:21:22 +00:00
"phoneNumbers" : "phone numbers" ,
"searching" : "Searching..." ,
2020-04-01 07:47:51 +00:00
"shareInvite" : "Share meeting invitation" ,
"shareLink" : "Share the meeting link to invite others" ,
"shareStream" : "Share the live streaming link" ,
2021-05-12 13:21:22 +00:00
"sipAddresses" : "sip addresses" ,
2019-07-22 10:10:25 +00:00
"telephone" : "Telephone: {{number}}" ,
2020-04-01 07:47:51 +00:00
"title" : "Invite people to this meeting" ,
"yahooEmail" : "Yahoo Email"
2019-01-11 23:33:01 +00:00
} ,
2017-11-20 11:13:42 +00:00
"audioDevices" : {
"bluetooth" : "Bluetooth" ,
2022-04-07 14:45:01 +00:00
"car" : "Car Audio" ,
2017-11-20 11:13:42 +00:00
"headphones" : "Headphones" ,
2022-01-18 17:36:05 +00:00
"none" : "No audio devices available" ,
2017-11-20 11:13:42 +00:00
"phone" : "Phone" ,
2022-01-18 17:36:05 +00:00
"speaker" : "Speaker"
2017-11-20 11:13:42 +00:00
} ,
2017-04-05 15:14:26 +00:00
"audioOnly" : {
2019-08-02 17:22:19 +00:00
"audioOnly" : "Low bandwidth"
2017-04-05 15:14:26 +00:00
} ,
2021-09-14 15:31:30 +00:00
"breakoutRooms" : {
"actions" : {
"add" : "Add breakout room" ,
"autoAssign" : "Auto assign to breakout rooms" ,
"close" : "Close" ,
"join" : "Join" ,
"leaveBreakoutRoom" : "Leave breakout room" ,
"more" : "More" ,
"remove" : "Remove" ,
"sendToBreakoutRoom" : "Send participant to:"
2021-12-03 08:48:26 +00:00
} ,
2022-01-18 17:36:05 +00:00
"defaultName" : "Breakout room #{{index}}" ,
"mainRoom" : "Main room" ,
2021-12-03 08:48:26 +00:00
"notifications" : {
"joined" : "Joining the \"{{name}}\" breakout room" ,
2022-01-18 17:36:05 +00:00
"joinedMainRoom" : "Joining the main room" ,
"joinedTitle" : "Breakout Rooms"
2021-09-14 15:31:30 +00:00
}
} ,
2019-01-11 23:33:01 +00:00
"calendarSync" : {
"addMeetingURL" : "Add a meeting link" ,
"confirmAddLink" : "Do you want to add a Jitsi link to this event?" ,
"error" : {
"appConfiguration" : "Calendar integration is not properly configured." ,
"generic" : "An error has occurred. Please check your calendar settings or try refreshing the calendar." ,
"notSignedIn" : "An error occurred while authenticating to see calendar events. Please check your calendar settings and try logging in again."
2018-06-07 20:32:18 +00:00
} ,
2019-01-11 23:33:01 +00:00
"join" : "Join" ,
"joinTooltip" : "Join the meeting" ,
"nextMeeting" : "next meeting" ,
"noEvents" : "There are no upcoming events scheduled." ,
"ongoingMeeting" : "ongoing meeting" ,
"permissionButton" : "Open settings" ,
"permissionMessage" : "The Calendar permission is required to see your meetings in the app." ,
"refresh" : "Refresh calendar" ,
"today" : "Today"
2015-02-06 15:46:50 +00:00
} ,
2022-05-06 10:14:10 +00:00
"carmode" : {
"actions" : {
"selectSoundDevice" : "Select sound device"
} ,
"labels" : {
"buttonLabel" : "Car mode" ,
2022-09-30 10:06:58 +00:00
"title" : "Car mode" ,
2022-05-06 10:14:10 +00:00
"videoStopped" : "Your video is stopped"
}
} ,
2019-01-11 23:33:01 +00:00
"chat" : {
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"enter" : "Enter room" ,
2019-10-09 08:34:01 +00:00
"error" : "Error: your message was not sent. Reason: {{error}}" ,
2022-11-08 15:46:46 +00:00
"fieldPlaceHolder" : "Aa" ,
2022-03-03 17:29:38 +00:00
"lobbyChatMessageTo" : "Lobby chat message to {{recipient}}" ,
2022-01-18 17:36:05 +00:00
"message" : "Message" ,
"messageAccessibleTitle" : "{{user}} says:" ,
"messageAccessibleTitleMe" : "me says:" ,
2019-10-07 12:35:04 +00:00
"messageTo" : "Private message to {{recipient}}" ,
2022-01-18 17:36:05 +00:00
"messagebox" : "Type a message" ,
2022-10-14 14:09:42 +00:00
"newMessages" : "New messages" ,
2019-01-11 23:33:01 +00:00
"nickname" : {
"popover" : "Choose a nickname" ,
2021-09-10 18:57:36 +00:00
"title" : "Enter a nickname to use chat" ,
"titleWithPolls" : "Enter a nickname to use chat and polls"
2019-01-13 19:34:38 +00:00
} ,
2022-01-18 17:36:05 +00:00
"noMessagesMessage" : "There are no messages in the meeting yet. Start a conversation here!" ,
2019-10-07 12:35:04 +00:00
"privateNotice" : "Private message to {{recipient}}" ,
2022-10-17 10:05:59 +00:00
"sendButton" : "Send" ,
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"smileysPanel" : "Emoji panel" ,
"tabs" : {
"chat" : "Chat" ,
"polls" : "Polls"
} ,
2021-09-10 18:57:36 +00:00
"title" : "Chat" ,
"titleWithPolls" : "Chat and Polls" ,
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"you" : "you"
2015-02-06 15:46:50 +00:00
} ,
2020-01-23 09:32:52 +00:00
"chromeExtensionBanner" : {
"buttonText" : "Install Chrome Extension" ,
2022-06-16 06:55:30 +00:00
"buttonTextEdge" : "Install Edge Extension" ,
2022-01-18 17:36:05 +00:00
"close" : "Close" ,
2021-06-10 12:48:44 +00:00
"dontShowAgain" : "Don’ t show me this again" ,
2022-01-18 17:36:05 +00:00
"installExtensionText" : "Install the extension for Google Calendar and Office 365 integration"
2020-01-23 09:32:52 +00:00
} ,
2019-04-09 15:53:12 +00:00
"connectingOverlay" : {
"joiningRoom" : "Connecting you to your meeting..."
} ,
2019-01-11 23:33:01 +00:00
"connection" : {
"ATTACHED" : "Attached" ,
"AUTHENTICATING" : "Authenticating" ,
"AUTHFAIL" : "Authentication failed" ,
"CONNECTED" : "Connected" ,
"CONNECTING" : "Connecting" ,
"CONNFAIL" : "Connection failed" ,
"DISCONNECTED" : "Disconnected" ,
"DISCONNECTING" : "Disconnecting" ,
"ERROR" : "Error" ,
"FETCH_SESSION_ID" : "Obtaining session-id..." ,
2019-07-22 10:10:25 +00:00
"GET_SESSION_ID_ERROR" : "Get session-id error: {{code}}" ,
2019-01-11 23:33:01 +00:00
"GOT_SESSION_ID" : "Obtaining session-id... Done" ,
2020-02-05 22:43:44 +00:00
"LOW_BANDWIDTH" : "Video for {{displayName}} has been turned off to save bandwidth"
2015-02-06 15:46:50 +00:00
} ,
2019-01-11 23:33:01 +00:00
"connectionindicator" : {
"address" : "Address:" ,
2020-10-02 13:20:24 +00:00
"audio_ssrc" : "Audio SSRC:" ,
2019-01-11 23:33:01 +00:00
"bandwidth" : "Estimated bandwidth:" ,
2015-02-06 15:46:50 +00:00
"bitrate" : "Bitrate:" ,
2018-09-17 18:21:03 +00:00
"bridgeCount" : "Server count: " ,
2020-08-13 21:56:14 +00:00
"codecs" : "Codecs (A/V): " ,
2019-01-11 23:33:01 +00:00
"connectedTo" : "Connected to:" ,
2022-12-06 17:29:33 +00:00
"e2eeVerified" : "E2EE verified:" ,
2019-01-11 23:33:01 +00:00
"framerate" : "Frame rate:" ,
2015-02-06 15:46:50 +00:00
"less" : "Show less" ,
2015-03-04 09:27:44 +00:00
"localaddress" : "Local address:" ,
"localaddress_plural" : "Local addresses:" ,
2019-01-11 23:33:01 +00:00
"localport" : "Local port:" ,
"localport_plural" : "Local ports:" ,
2020-07-13 15:20:59 +00:00
"maxEnabledResolution" : "send max" ,
2019-01-11 23:33:01 +00:00
"more" : "Show more" ,
"packetloss" : "Packet loss:" ,
2022-01-18 17:36:05 +00:00
"participant_id" : "Participant id:" ,
2017-09-26 16:55:09 +00:00
"quality" : {
"good" : "Good" ,
"inactive" : "Inactive" ,
"lost" : "Lost" ,
"nonoptimal" : "Nonoptimal" ,
"poor" : "Poor"
} ,
2019-01-11 23:33:01 +00:00
"remoteaddress" : "Remote address:" ,
"remoteaddress_plural" : "Remote addresses:" ,
"remoteport" : "Remote port:" ,
"remoteport_plural" : "Remote ports:" ,
"resolution" : "Resolution:" ,
2020-10-02 13:20:24 +00:00
"savelogs" : "Save logs" ,
2019-01-11 23:33:01 +00:00
"status" : "Connection:" ,
"transport" : "Transport:" ,
2020-10-02 13:20:24 +00:00
"transport_plural" : "Transports:" ,
"video_ssrc" : "Video SSRC:"
2015-02-06 15:46:50 +00:00
} ,
2019-01-11 23:33:01 +00:00
"dateUtils" : {
"earlier" : "Earlier" ,
"today" : "Today" ,
"yesterday" : "Yesterday"
} ,
"deepLinking" : {
2019-07-22 10:10:25 +00:00
"appNotInstalled" : "You need the {{app}} mobile app to join this meeting on your phone." ,
2019-08-15 17:10:20 +00:00
"description" : "Nothing happened? We tried launching your meeting in the {{app}} desktop app. Try again or launch it in the {{app}} web app." ,
2023-02-23 15:01:55 +00:00
"descriptionNew" : "Nothing happened? We tried launching your meeting in the {{app}} desktop app. <br /><br /> You can try again or launch it on web." ,
2019-07-22 10:10:25 +00:00
"descriptionWithoutWeb" : "Nothing happened? We tried launching your meeting in the {{app}} desktop app." ,
2019-01-11 23:33:01 +00:00
"downloadApp" : "Download the app" ,
2023-02-23 15:01:55 +00:00
"downloadMobileApp" : "Download from App Store" ,
2020-05-14 21:45:00 +00:00
"ifDoNotHaveApp" : "If you don't have the app yet:" ,
"ifHaveApp" : "If you already have the app:" ,
"joinInApp" : "Join this meeting using the app" ,
2023-02-23 15:01:55 +00:00
"joinInAppNew" : "Join in app" ,
"joinInBrowser" : "Join in browser" ,
"launchMeetingLabel" : "How do you want to join this meeting?" ,
2019-01-11 23:33:01 +00:00
"launchWebButton" : "Launch in web" ,
2023-02-23 15:01:55 +00:00
"noMobileApp" : "You don’ t have the app?" ,
"termsAndConditions" : "By continuing you agree to our <a href='{{termsAndConditionsLink}}' rel='noopener noreferrer' target='_blank'>terms & conditions.</a>" ,
2019-07-22 10:10:25 +00:00
"title" : "Launching your meeting in {{app}}..." ,
2023-02-23 15:01:55 +00:00
"titleNew" : "Launching your meeting ..." ,
2021-12-09 11:16:08 +00:00
"tryAgainButton" : "Try again in desktop" ,
"unsupportedBrowser" : "It looks like you're using a browser we don't support."
2019-01-11 23:33:01 +00:00
} ,
2019-07-22 10:10:25 +00:00
"defaultLink" : "e.g. {{url}}" ,
2019-07-25 16:15:32 +00:00
"defaultNickname" : "ex. Jane Pink" ,
2019-01-11 23:33:01 +00:00
"deviceError" : {
"cameraError" : "Failed to access your camera" ,
"cameraPermission" : "Error obtaining camera permission" ,
"microphoneError" : "Failed to access your microphone" ,
"microphonePermission" : "Error obtaining microphone permission"
} ,
"deviceSelection" : {
2023-02-24 14:37:30 +00:00
"hid" : {
"callControl" : "Call control" ,
"connectedDevices" : "Connected devices:" ,
"deleteDevice" : "Delete device" ,
"pairDevice" : "Pair device"
} ,
2019-01-11 23:33:01 +00:00
"noPermission" : "Permission not granted" ,
"previewUnavailable" : "Preview unavailable" ,
"selectADevice" : "Select a device" ,
2023-03-06 13:14:52 +00:00
"testAudio" : "Test"
2015-02-20 16:17:46 +00:00
} ,
2022-06-16 09:49:07 +00:00
"dialIn" : {
"screenTitle" : "Dial-in summary"
} ,
2022-01-18 17:36:05 +00:00
"dialOut" : {
"statusMessage" : "is now {{status}}"
} ,
2015-02-20 16:17:46 +00:00
"dialog" : {
2022-01-18 17:36:05 +00:00
"Back" : "Back" ,
"Cancel" : "Cancel" ,
"IamHost" : "I am the host" ,
"Ok" : "OK" ,
"Remove" : "Remove" ,
"Share" : "Share" ,
"Submit" : "Submit" ,
2022-03-02 15:28:42 +00:00
"WaitForHostMsg" : "The conference has not yet started. If you are the host then please authenticate. Otherwise, please wait for the host to arrive." ,
2022-01-18 17:36:05 +00:00
"WaitingForHostTitle" : "Waiting for the host ..." ,
"Yes" : "Yes" ,
2018-06-07 20:32:18 +00:00
"accessibilityLabel" : {
2023-03-06 15:13:29 +00:00
"close" : "Close dialog" ,
"liveStreaming" : "Live Stream" ,
"sharingTabs" : "Sharing options"
2018-06-07 20:32:18 +00:00
} ,
2020-04-01 07:47:51 +00:00
"add" : "Add" ,
2022-03-08 09:10:30 +00:00
"addMeetingNote" : "Add a note about this meeting" ,
"addOptionalNote" : "Add a note (optional):" ,
2017-05-03 23:57:52 +00:00
"allow" : "Allow" ,
2019-07-02 13:14:58 +00:00
"alreadySharedVideoMsg" : "Another participant is already sharing a video. This conference allows only one shared video at a time." ,
2019-01-11 23:33:01 +00:00
"alreadySharedVideoTitle" : "Only one shared video is allowed at a time" ,
"applicationWindow" : "Application window" ,
2021-03-24 14:09:40 +00:00
"authenticationRequired" : "Authentication required" ,
2019-01-11 23:33:01 +00:00
"cameraConstraintFailedError" : "Your camera does not satisfy some of the required constraints." ,
"cameraNotFoundError" : "Camera was not found." ,
"cameraNotSendingData" : "We are unable to access your camera. Please check if another application is using this device, select another device from the settings menu or try to reload the application." ,
"cameraNotSendingDataTitle" : "Unable to access camera" ,
"cameraPermissionDeniedError" : "You have not granted permission to use your camera. You can still join the conference but others won't see you. Use the camera button in the address bar to fix this." ,
2022-01-11 14:39:39 +00:00
"cameraTimeoutError" : "Could not start video source. Timeout occurred!" ,
2019-01-11 23:33:01 +00:00
"cameraUnknownError" : "Cannot use camera for an unknown reason." ,
"cameraUnsupportedResolutionError" : "Your camera does not support required video resolution." ,
"close" : "Close" ,
2019-07-22 10:10:25 +00:00
"conferenceDisconnectMsg" : "You may want to check your network connection. Reconnecting in {{seconds}} sec..." ,
2019-01-11 23:33:01 +00:00
"conferenceDisconnectTitle" : "You have been disconnected." ,
2019-07-22 10:10:25 +00:00
"conferenceReloadMsg" : "We're trying to fix this. Reconnecting in {{seconds}} sec..." ,
2019-01-11 23:33:01 +00:00
"conferenceReloadTitle" : "Unfortunately, something went wrong." ,
2018-05-16 14:00:16 +00:00
"confirm" : "Confirm" ,
2018-10-18 08:28:08 +00:00
"confirmNo" : "No" ,
"confirmYes" : "Yes" ,
2015-02-23 12:35:16 +00:00
"connectError" : "Oops! Something went wrong and we couldn't connect to the conference." ,
2019-07-22 10:10:25 +00:00
"connectErrorWithMsg" : "Oops! Something went wrong and we couldn't connect to the conference: {{msg}}" ,
2015-03-13 14:01:42 +00:00
"connecting" : "Connecting" ,
2017-11-03 19:05:03 +00:00
"contactSupport" : "Contact support" ,
2020-07-23 08:16:40 +00:00
"copied" : "Copied" ,
2019-01-11 23:33:01 +00:00
"copy" : "Copy" ,
"dismiss" : "Dismiss" ,
2019-06-14 09:03:32 +00:00
"displayNameRequired" : "Hi! What’ s your name?" ,
2019-01-11 23:33:01 +00:00
"done" : "Done" ,
2021-08-18 12:33:21 +00:00
"e2eeDescription" : "End-to-End Encryption is currently EXPERIMENTAL. Please keep in mind that turning on end-to-end encryption will effectively disable server-side provided services such as: phone participation. Also keep in mind that the meeting will only work for people joining from browsers with support for insertable streams." ,
2021-09-21 11:00:23 +00:00
"e2eeDisabledDueToMaxModeDescription" : "Cannot enable End-to-End Encryption due to large number of participants in the conference." ,
2022-01-18 17:36:05 +00:00
"e2eeLabel" : "Enable End-to-End Encryption" ,
2020-06-17 10:53:46 +00:00
"e2eeWarning" : "WARNING: Not all participants in this meeting seem to have support for End-to-End encryption. If you enable it they won't be able to see nor hear you." ,
2021-09-21 11:00:23 +00:00
"e2eeWillDisableDueToMaxModeDescription" : "WARNING: End-to-End Encryption will be automatically disabled if more participants join the conference." ,
2021-06-10 12:48:44 +00:00
"embedMeeting" : "Embed meeting" ,
2022-11-08 15:46:46 +00:00
"enterDisplayName" : "Enter your name" ,
2019-01-11 23:33:01 +00:00
"error" : "Error" ,
"gracefulShutdown" : "Our service is currently down for maintenance. Please try again later." ,
2021-09-10 11:05:16 +00:00
"grantModeratorDialog" : "Are you sure you want to grant moderator rights to {{participantName}}?" ,
"grantModeratorTitle" : "Grant moderator rights" ,
2022-10-04 10:52:37 +00:00
"hide" : "Hide" ,
2021-07-07 08:07:30 +00:00
"hideShareAudioHelper" : "Don't show this dialog again" ,
2019-01-11 23:33:01 +00:00
"incorrectPassword" : "Incorrect username or password" ,
2022-01-18 17:36:05 +00:00
"incorrectRoomLockPassword" : "Incorrect password" ,
2019-07-22 10:10:25 +00:00
"internalError" : "Oops! Something went wrong. The following error occurred: {{error}}" ,
2019-01-11 23:33:01 +00:00
"internalErrorTitle" : "Internal error" ,
2019-07-22 10:10:25 +00:00
"kickMessage" : "You can contact {{participantDisplayName}} for more details." ,
2019-01-05 16:49:21 +00:00
"kickParticipantButton" : "Kick" ,
2018-12-19 18:40:17 +00:00
"kickParticipantDialog" : "Are you sure you want to kick this participant?" ,
2019-07-02 13:14:58 +00:00
"kickParticipantTitle" : "Kick this participant?" ,
2019-07-22 10:10:25 +00:00
"kickTitle" : "Ouch! {{participantDisplayName}} kicked you out of the meeting" ,
2022-03-08 09:10:30 +00:00
"linkMeeting" : "Link meeting" ,
"linkMeetingTitle" : "Link meeting to Salesforce" ,
2019-01-11 23:33:01 +00:00
"liveStreaming" : "Live Streaming" ,
2020-04-29 17:06:08 +00:00
"liveStreamingDisabledBecauseOfActiveRecordingTooltip" : "Not possible while recording is active" ,
2022-01-18 17:36:05 +00:00
"localUserControls" : "Local user controls" ,
2019-01-11 23:33:01 +00:00
"lockMessage" : "Failed to lock the conference." ,
2021-04-09 12:30:25 +00:00
"lockRoom" : "Add meeting $t(lockRoomPassword)" ,
2019-01-11 23:33:01 +00:00
"lockTitle" : "Lock failed" ,
2021-03-24 14:09:40 +00:00
"login" : "Login" ,
2022-06-08 09:43:31 +00:00
"logoutQuestion" : "Are you sure you want to logout and leave the conference?" ,
2019-01-11 23:33:01 +00:00
"logoutTitle" : "Logout" ,
2019-07-02 13:14:58 +00:00
"maxUsersLimitReached" : "The limit for maximum number of participants has been reached. The conference is full. Please contact the meeting owner or try again later!" ,
"maxUsersLimitReachedTitle" : "Maximum participants limit reached" ,
2019-01-11 23:33:01 +00:00
"micConstraintFailedError" : "Your microphone does not satisfy some of the required constraints." ,
"micNotFoundError" : "Microphone was not found." ,
2019-06-12 21:05:41 +00:00
"micNotSendingData" : "Go to your computer's settings to unmute your mic and adjust its level" ,
"micNotSendingDataTitle" : "Your mic is muted by your system settings" ,
2019-01-11 23:33:01 +00:00
"micPermissionDeniedError" : "You have not granted permission to use your microphone. You can still join the conference but others won't hear you. Use the camera button in the address bar to fix this." ,
2022-08-30 14:21:58 +00:00
"micTimeoutError" : "Could not start audio source. Timeout occurred!" ,
2019-01-11 23:33:01 +00:00
"micUnknownError" : "Cannot use microphone for an unknown reason." ,
2021-09-10 11:05:16 +00:00
"moderationAudioLabel" : "Allow attendees to unmute themselves" ,
"moderationVideoLabel" : "Allow attendees to start their video" ,
"muteEveryoneDialog" : "The participants can unmute themselves at any time." ,
"muteEveryoneDialogModerationOn" : "The participants can send a request to speak at any time." ,
2022-01-18 17:36:05 +00:00
"muteEveryoneElseDialog" : "Once muted, you won't be able to unmute them, but they can unmute themselves at any time." ,
"muteEveryoneElseTitle" : "Mute everyone except {{whom}}?" ,
2021-02-24 21:45:07 +00:00
"muteEveryoneElsesVideoDialog" : "Once the camera is disabled, you won't be able to turn it back on, but they can turn it back on at any time." ,
2021-09-10 11:05:16 +00:00
"muteEveryoneElsesVideoTitle" : "Stop everyone's video except {{whom}}?" ,
2022-01-18 17:36:05 +00:00
"muteEveryoneSelf" : "yourself" ,
"muteEveryoneStartMuted" : "Everyone starts muted from now on" ,
"muteEveryoneTitle" : "Mute everyone?" ,
2021-09-10 11:05:16 +00:00
"muteEveryonesVideoDialog" : "The participants can turn on their video at any time." ,
"muteEveryonesVideoDialogModerationOn" : "The participants can send a request to turn on their video at any time." ,
2021-03-22 09:49:25 +00:00
"muteEveryonesVideoDialogOk" : "Disable" ,
2021-09-10 11:05:16 +00:00
"muteEveryonesVideoTitle" : "Stop everyone's video?" ,
2016-10-26 19:14:38 +00:00
"muteParticipantBody" : "You won't be able to unmute them, but they can unmute themselves at any time." ,
2017-01-06 01:18:07 +00:00
"muteParticipantButton" : "Mute" ,
2022-01-18 17:36:05 +00:00
"muteParticipantsVideoBody" : "You won't be able to turn the camera back on, but they can turn it back on at any time." ,
"muteParticipantsVideoBodyModerationOn" : "You won't be able to turn the camera back on and neither will they." ,
"muteParticipantsVideoButton" : "Stop video" ,
2021-06-07 15:19:01 +00:00
"muteParticipantsVideoDialog" : "Are you sure you want to turn off this participant's camera? You won't be able to turn the camera back on, but they can turn it back on at any time." ,
2021-11-03 10:38:12 +00:00
"muteParticipantsVideoDialogModerationOn" : "Are you sure you want to turn off this participant's camera? You won't be able to turn the camera back on and neither will they." ,
2021-02-24 21:45:07 +00:00
"muteParticipantsVideoTitle" : "Disable camera of this participant?" ,
2021-07-21 13:20:45 +00:00
"noDropboxToken" : "No valid Dropbox token" ,
2021-04-22 15:05:14 +00:00
"password" : "Password" ,
2020-04-03 08:48:41 +00:00
"passwordLabel" : "The meeting has been locked by a participant. Please enter the $t(lockRoomPassword) to join." ,
2019-07-02 13:14:58 +00:00
"passwordNotSupported" : "Setting a meeting $t(lockRoomPassword) is not supported." ,
"passwordNotSupportedTitle" : "$t(lockRoomPasswordUppercase) not supported" ,
"passwordRequired" : "$t(lockRoomPasswordUppercase) required" ,
2021-06-28 12:11:12 +00:00
"permissionCameraRequiredError" : "Camera permission is required to participate in conferences with video. Please grant it in Settings" ,
2022-01-18 17:36:05 +00:00
"permissionErrorTitle" : "Permission required" ,
2021-06-28 12:11:12 +00:00
"permissionMicRequiredError" : "Microphone permission is required to participate in conferences with audio. Please grant it in Settings" ,
2019-01-11 23:33:01 +00:00
"popupError" : "Your browser is blocking pop-up windows from this site. Please enable pop-ups in your browser's security settings and try again." ,
"popupErrorTitle" : "Pop-up blocked" ,
2020-06-25 13:44:17 +00:00
"readMore" : "more" ,
2022-03-08 09:10:30 +00:00
"recentlyUsedObjects" : "Your recently used objects" ,
2019-01-11 23:33:01 +00:00
"recording" : "Recording" ,
2020-04-29 17:06:08 +00:00
"recordingDisabledBecauseOfActiveLiveStreamingTooltip" : "Not possible while a live stream is active" ,
2019-01-11 23:33:01 +00:00
"rejoinNow" : "Rejoin now" ,
2019-07-22 10:10:25 +00:00
"remoteControlAllowedMessage" : "{{user}} accepted your remote control request!" ,
"remoteControlDeniedMessage" : "{{user}} rejected your remote control request!" ,
"remoteControlErrorMessage" : "An error occurred while trying to request remote control permissions from {{user}}!" ,
"remoteControlRequestMessage" : "Will you allow {{user}} to remotely control your desktop?" ,
2019-01-11 23:33:01 +00:00
"remoteControlShareScreenWarning" : "Note that if you press \"Allow\" you will share your screen!" ,
2017-02-17 00:59:30 +00:00
"remoteControlStopMessage" : "The remote control session ended!" ,
2019-01-11 23:33:01 +00:00
"remoteControlTitle" : "Remote desktop control" ,
2022-01-18 17:36:05 +00:00
"remoteUserControls" : "Remote user controls of {{username}}" ,
2019-07-02 13:14:58 +00:00
"removePassword" : "Remove $t(lockRoomPassword)" ,
2019-01-11 23:33:01 +00:00
"removeSharedVideoMsg" : "Are you sure you would like to remove your shared video?" ,
"removeSharedVideoTitle" : "Remove shared video" ,
"reservationError" : "Reservation system error" ,
2019-07-22 10:10:25 +00:00
"reservationErrorMsg" : "Error code: {{code}}, message: {{msg}}" ,
2019-01-11 23:33:01 +00:00
"retry" : "Retry" ,
2020-04-02 13:18:10 +00:00
"screenSharingAudio" : "Share audio" ,
2020-06-18 23:15:49 +00:00
"screenSharingFailed" : "Oops! Something went wrong, we weren’ t able to start screen sharing!" ,
"screenSharingFailedTitle" : "Screen sharing failed!" ,
"screenSharingPermissionDeniedError" : "Oops! Something went wrong with your screen sharing permissions. Please reload and try again." ,
2022-03-08 09:10:30 +00:00
"searchInSalesforce" : "Search in Salesforce" ,
"searchResults" : "Search results({{count}})" ,
"searchResultsDetailsError" : "Something went wrong while retrieving owner data." ,
"searchResultsError" : "Something went wrong while retrieving data." ,
"searchResultsNotFound" : "No search results found." ,
"searchResultsTryAgain" : "Try using alternative keywords." ,
2019-10-07 12:35:04 +00:00
"sendPrivateMessage" : "You recently received a private message. Did you intend to reply to that privately, or you want to send your message to the group?" ,
"sendPrivateMessageCancel" : "Send to the group" ,
"sendPrivateMessageOk" : "Send privately" ,
"sendPrivateMessageTitle" : "Send privately?" ,
2019-01-11 23:33:01 +00:00
"serviceUnavailable" : "Service unavailable" ,
"sessTerminated" : "Call terminated" ,
2021-10-06 23:08:51 +00:00
"sessionRestarted" : "Call restarted because of a connection issue." ,
2021-07-07 08:07:30 +00:00
"shareAudio" : "Continue" ,
2022-01-11 14:39:39 +00:00
"shareAudioTitle" : "How to share audio" ,
2021-07-07 08:07:30 +00:00
"shareAudioWarningD1" : "you need to stop screen sharing before sharing your audio." ,
"shareAudioWarningD2" : "you need to restart your screen sharing and check the \"share audio\" option." ,
2022-01-18 17:36:05 +00:00
"shareAudioWarningH1" : "If you want to share just audio:" ,
"shareAudioWarningTitle" : "You need to stop screen sharing before sharing audio" ,
2021-07-07 08:07:30 +00:00
"shareMediaWarningGenericH2" : "If you want to share your screen and audio" ,
2022-01-18 17:36:05 +00:00
"shareScreenWarningD1" : "you need to stop audio sharing before sharing your screen." ,
"shareScreenWarningD2" : "you need to stop audio sharing, start screen sharing and check the \"share audio\" option." ,
"shareScreenWarningH1" : "If you want to share just your screen:" ,
"shareScreenWarningTitle" : "You need to stop audio sharing before sharing your screen" ,
2021-07-09 14:16:35 +00:00
"shareVideoLinkError" : "Please provide a correct video link." ,
2021-05-13 11:36:19 +00:00
"shareVideoTitle" : "Share video" ,
2017-03-30 16:58:31 +00:00
"shareYourScreen" : "Share your screen" ,
2018-06-15 18:10:22 +00:00
"shareYourScreenDisabled" : "Screen sharing disabled." ,
2022-01-22 00:50:33 +00:00
"sharedVideoDialogError" : "Error: Invalid URL" ,
2022-01-18 17:36:05 +00:00
"sharedVideoLinkPlaceholder" : "YouTube link or direct video link" ,
2022-10-04 10:52:37 +00:00
"show" : "Show" ,
2022-02-08 11:25:32 +00:00
"start" : "Start " ,
2019-01-11 23:33:01 +00:00
"startLiveStreaming" : "Start live stream" ,
"startRecording" : "Start recording" ,
"startRemoteControlErrorMessage" : "An error occurred while trying to start the remote control session!" ,
"stopLiveStreaming" : "Stop live stream" ,
"stopRecording" : "Stop recording" ,
"stopRecordingWarning" : "Are you sure you would like to stop the recording?" ,
"stopStreamingWarning" : "Are you sure you would like to stop the live streaming?" ,
"streamKey" : "Live stream key" ,
2019-07-22 10:10:25 +00:00
"thankYou" : "Thank you for using {{appName}}!" ,
2019-01-11 23:33:01 +00:00
"token" : "token" ,
"tokenAuthFailed" : "Sorry, you're not allowed to join this call." ,
"tokenAuthFailedTitle" : "Authentication failed" ,
"transcribing" : "Transcribing" ,
2019-07-02 13:14:58 +00:00
"unlockRoom" : "Remove meeting $t(lockRoomPassword)" ,
2021-03-24 14:09:40 +00:00
"user" : "User" ,
"userIdentifier" : "User identifier" ,
"userPassword" : "User password" ,
2022-12-06 17:29:33 +00:00
"verifyParticipantConfirm" : "They match" ,
"verifyParticipantDismiss" : "They do not match" ,
"verifyParticipantQuestion" : "EXPERIMENTAL: Ask participant {{participantName}} if they see the same content, in the same order." ,
"verifyParticipantTitle" : "User verification" ,
2021-03-03 14:37:38 +00:00
"videoLink" : "Video link" ,
2021-06-25 13:28:54 +00:00
"viewUpgradeOptions" : "View upgrade options" ,
"viewUpgradeOptionsContent" : "To get unlimited access to premium features like recording, transcriptions, RTMP Streaming & more, you'll need to upgrade your plan." ,
"viewUpgradeOptionsTitle" : "You discovered a premium feature!" ,
2022-01-18 17:36:05 +00:00
"yourEntireScreen" : "Your entire screen"
2019-01-11 23:33:01 +00:00
} ,
2020-01-23 09:32:52 +00:00
"documentSharing" : {
2019-10-04 15:10:19 +00:00
"title" : "Shared Document"
} ,
2020-04-23 13:45:36 +00:00
"e2ee" : {
2020-05-18 12:12:00 +00:00
"labelToolTip" : "Audio and Video Communication on this call is end-to-end encrypted"
2020-04-23 13:45:36 +00:00
} ,
2020-07-23 08:16:40 +00:00
"embedMeeting" : {
"title" : "Embed this meeting"
} ,
2019-01-11 23:33:01 +00:00
"feedback" : {
"average" : "Average" ,
"bad" : "Bad" ,
"detailsLabel" : "Tell us more about it." ,
"good" : "Good" ,
"rateExperience" : "Rate your meeting experience" ,
2022-01-18 17:36:05 +00:00
"star" : "Star" ,
2019-01-11 23:33:01 +00:00
"veryBad" : "Very Bad" ,
2022-01-18 17:36:05 +00:00
"veryGood" : "Very Good"
} ,
2023-02-28 14:52:06 +00:00
"filmstrip" : {
"accessibilityLabel" : {
"heading" : "Video thumbnails"
}
} ,
2022-03-11 13:00:49 +00:00
"giphy" : {
"noResults" : "No results found :(" ,
"search" : "Search GIPHY"
} ,
2019-01-11 23:33:01 +00:00
"incomingCall" : {
"answer" : "Answer" ,
"audioCallTitle" : "Incoming call" ,
"decline" : "Dismiss" ,
"productLabel" : "from Jitsi Meet" ,
"videoCallTitle" : "Incoming video call"
} ,
"info" : {
"accessibilityLabel" : "Show info" ,
2019-07-02 13:14:58 +00:00
"addPassword" : "Add $t(lockRoomPassword)" ,
"cancelPassword" : "Cancel $t(lockRoomPassword)" ,
2019-01-11 23:33:01 +00:00
"conferenceURL" : "Link:" ,
2022-01-18 17:36:05 +00:00
"copyNumber" : "Copy number" ,
2019-01-11 23:33:01 +00:00
"country" : "Country" ,
2019-02-26 13:32:46 +00:00
"dialANumber" : "To join your meeting, dial one of these numbers and then enter the pin." ,
2019-01-11 23:33:01 +00:00
"dialInConferenceID" : "PIN:" ,
2019-02-26 13:32:46 +00:00
"dialInNotSupported" : "Sorry, dialing in is currently not supported." ,
2019-01-11 23:33:01 +00:00
"dialInNumber" : "Dial-in:" ,
2019-05-07 14:50:57 +00:00
"dialInSummaryError" : "Error fetching dial-in info now. Please try again later." ,
2019-02-26 13:32:46 +00:00
"dialInTollFree" : "Toll Free" ,
2019-01-11 23:33:01 +00:00
"genericError" : "Whoops, something went wrong." ,
2019-07-22 10:10:25 +00:00
"inviteLiveStream" : "To view the live stream of this meeting, click this link: {{url}}" ,
"invitePhone" : "To join by phone instead, tap this: {{number}},,{{conferenceID}}#\n" ,
"invitePhoneAlternatives" : "Looking for a different dial-in number?\nSee meeting dial-in numbers: {{url}}\n\n\nIf also dialing-in through a room phone, join without connecting to audio: {{silentUrl}}" ,
2021-05-12 13:21:22 +00:00
"inviteSipEndpoint" : "To join using the SIP address, enter this: {{sipUri}}" ,
2021-07-15 13:12:06 +00:00
"inviteTextiOSInviteUrl" : "Click the following link to join: {{inviteUrl}}." ,
2022-01-18 17:36:05 +00:00
"inviteTextiOSJoinSilent" : "If you are dialing-in through a room phone, use this link to join without connecting to audio: {{silentUrl}}." ,
"inviteTextiOSPersonal" : "{{name}} is inviting you to a meeting." ,
2021-07-15 13:12:06 +00:00
"inviteTextiOSPhone" : "To join via phone, use this number: {{number}},,{{conferenceID}}#. If you are looking for a different number, this is the full list: {{didUrl}}." ,
2019-05-09 08:37:21 +00:00
"inviteURLFirstPartGeneral" : "You are invited to join a meeting." ,
2019-07-22 10:10:25 +00:00
"inviteURLFirstPartPersonal" : "{{name}} is inviting you to a meeting.\n" ,
"inviteURLSecondPart" : "\nJoin the meeting:\n{{url}}\n" ,
2022-01-18 17:36:05 +00:00
"label" : "Dial-in info" ,
2019-01-11 23:33:01 +00:00
"liveStreamURL" : "Live stream:" ,
"moreNumbers" : "More numbers" ,
"noNumbers" : "No dial-in numbers." ,
"noPassword" : "None" ,
"noRoom" : "No room was specified to dial-in into." ,
"numbers" : "Dial-in Numbers" ,
2021-12-10 16:23:27 +00:00
"password" : "$t(lockRoomPasswordUppercase): " ,
2022-09-30 07:08:34 +00:00
"reachedLimit" : "You have reached the limit of your plan." ,
2021-06-17 12:16:58 +00:00
"sip" : "SIP address" ,
2019-01-11 23:33:01 +00:00
"title" : "Share" ,
2022-09-29 14:35:47 +00:00
"tooltip" : "Share link and dial-in info for this meeting" ,
"upgradeOptions" : "Please check the upgrade options on"
2022-01-18 17:36:05 +00:00
} ,
"inlineDialogFailure" : {
"msg" : "We stumbled a bit." ,
"retry" : "Try again" ,
"support" : "Support" ,
"supportMsg" : "If this keeps happening, reach out to"
2019-01-11 23:33:01 +00:00
} ,
2019-02-26 10:41:57 +00:00
"inviteDialog" : {
"alertText" : "Failed to invite some participants." ,
"header" : "Invite" ,
"searchCallOnlyPlaceholder" : "Enter phone number" ,
"searchPeopleOnlyPlaceholder" : "Search for participants" ,
"searchPlaceholder" : "Participant or phone number" ,
"send" : "Send"
} ,
2021-06-10 12:48:44 +00:00
"jitsiHome" : "{{logo}} Logo, links to Homepage" ,
2019-01-11 23:33:01 +00:00
"keyboardShortcuts" : {
"focusLocal" : "Focus on your video" ,
"focusRemote" : "Focus on another person's video" ,
"fullScreen" : "View or exit full screen" ,
2022-03-11 13:00:49 +00:00
"giphyMenu" : "Toggle GIPHY menu" ,
2019-01-11 23:33:01 +00:00
"keyboardShortcuts" : "Keyboard shortcuts" ,
"localRecording" : "Show or hide local recording controls" ,
"mute" : "Mute or unmute your microphone" ,
"pushToTalk" : "Push to talk" ,
"raiseHand" : "Raise or lower your hand" ,
2022-11-22 13:56:37 +00:00
"showSpeakerStats" : "Show participants stats" ,
2019-01-11 23:33:01 +00:00
"toggleChat" : "Open or close the chat" ,
"toggleFilmstrip" : "Show or hide video thumbnails" ,
2021-04-21 13:48:05 +00:00
"toggleParticipantsPane" : "Show or hide the participants pane" ,
2019-01-11 23:33:01 +00:00
"toggleScreensharing" : "Switch between camera and screen sharing" ,
"toggleShortcuts" : "Show or hide keyboard shortcuts" ,
2020-12-08 14:01:16 +00:00
"videoMute" : "Start or stop your camera"
2019-01-11 23:33:01 +00:00
} ,
2022-08-05 09:11:09 +00:00
"largeVideo" : {
"screenIsShared" : "You are sharing your screen" ,
"showMeWhatImSharing" : "Show me what I'm sharing"
} ,
2019-01-11 23:33:01 +00:00
"liveStreaming" : {
"busy" : "We're working on freeing streaming resources. Please try again in a few minutes." ,
"busyTitle" : "All streamers are currently busy" ,
"changeSignIn" : "Switch accounts." ,
"choose" : "Choose a live stream" ,
2019-07-22 10:10:25 +00:00
"chooseCTA" : "Choose a streaming option. You're currently logged in as {{email}}." ,
2019-01-11 23:33:01 +00:00
"enterStreamKey" : "Enter your YouTube live stream key here." ,
"error" : "Live Streaming failed. Please try again." ,
"errorAPI" : "An error occurred while accessing your YouTube broadcasts. Please try logging in again." ,
2019-07-22 10:10:25 +00:00
"errorLiveStreamNotEnabled" : "Live Streaming is not enabled on {{email}}. Please enable live streaming or log into an account with live streaming enabled." ,
2019-01-11 23:33:01 +00:00
"expandedOff" : "The live streaming has stopped" ,
"expandedOn" : "The meeting is currently being streamed to YouTube." ,
"expandedPending" : "The live streaming is being started..." ,
"failedToStart" : "Live Streaming failed to start" ,
"getStreamKeyManually" : "We weren’ t able to fetch any live streams. Try getting your live stream key from YouTube." ,
2022-01-18 17:36:05 +00:00
"googlePrivacyPolicy" : "Google Privacy Policy" ,
2021-11-09 18:58:49 +00:00
"inProgress" : "Recording or live streaming in progress" ,
2019-01-11 23:33:01 +00:00
"invalidStreamKey" : "Live stream key may be incorrect." ,
2022-01-18 17:36:05 +00:00
"limitNotificationDescriptionNative" : "Your streaming will be limited to {{limit}} min. For unlimited streaming try {{app}}." ,
"limitNotificationDescriptionWeb" : "Due to high demand your streaming will be limited to {{limit}} min. For unlimited streaming try <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>." ,
2019-01-11 23:33:01 +00:00
"off" : "Live Streaming stopped" ,
2019-10-03 19:35:21 +00:00
"offBy" : "{{name}} stopped the live streaming" ,
2021-01-11 14:21:33 +00:00
"on" : "Live Streaming started" ,
2019-10-03 19:35:21 +00:00
"onBy" : "{{name}} started the live streaming" ,
2019-01-11 23:33:01 +00:00
"pending" : "Starting Live Stream..." ,
"serviceName" : "Live Streaming service" ,
2021-11-09 00:08:21 +00:00
"sessionAlreadyActive" : "This session is already being recorded or live streamed." ,
2019-01-11 23:33:01 +00:00
"signIn" : "Sign in with Google" ,
"signInCTA" : "Sign in or enter your live stream key from YouTube." ,
"signOut" : "Sign out" ,
2022-01-18 17:36:05 +00:00
"signedInAs" : "You are currently signed in as:" ,
2019-01-11 23:33:01 +00:00
"start" : "Start a live stream" ,
"streamIdHelp" : "What's this?" ,
2022-11-03 09:53:25 +00:00
"title" : "Live Stream" ,
2020-04-03 21:04:28 +00:00
"unavailableTitle" : "Live Streaming unavailable" ,
2022-01-18 17:36:05 +00:00
"youtubeTerms" : "YouTube terms of services"
} ,
"lobby" : {
"admit" : "Admit" ,
"admitAll" : "Admit all" ,
"backToKnockModeButton" : "Ask to join" ,
2022-03-03 17:29:38 +00:00
"chat" : "Chat" ,
2022-01-18 17:36:05 +00:00
"dialogTitle" : "Lobby mode" ,
"disableDialogContent" : "Lobby mode is currently enabled. This feature ensures that unwanted participants can't join your meeting. Do you want to disable it?" ,
"disableDialogSubmit" : "Disable" ,
"emailField" : "Enter your email address" ,
"enableDialogPasswordField" : "Set password (optional)" ,
"enableDialogSubmit" : "Enable" ,
"enableDialogText" : "Lobby mode lets you protect your meeting by only allowing people to enter after a formal approval by a moderator." ,
"enterPasswordButton" : "Enter meeting password" ,
"enterPasswordTitle" : "Enter password to join meeting" ,
"errorMissingPassword" : "Please enter the meeting password" ,
"invalidPassword" : "Invalid password" ,
"joinRejectedMessage" : "Your join request was rejected by a moderator." ,
2022-03-24 11:15:30 +00:00
"joinRejectedTitle" : "Join request rejected." ,
2022-01-18 17:36:05 +00:00
"joinTitle" : "Join Meeting" ,
"joinWithPasswordMessage" : "Trying to join with password, please wait..." ,
"joiningMessage" : "You'll join the meeting as soon as someone accepts your request" ,
"joiningTitle" : "Asking to join meeting..." ,
"joiningWithPasswordTitle" : "Joining with password..." ,
"knockButton" : "Ask to Join" ,
"knockTitle" : "Someone wants to join the meeting" ,
"knockingParticipantList" : "Knocking participant list" ,
2022-03-03 17:29:38 +00:00
"lobbyChatStartedNotification" : "{{moderator}} started a lobby chat with {{attendee}}" ,
"lobbyChatStartedTitle" : "{{moderator}} has started a lobby chat with you." ,
2022-01-18 17:36:05 +00:00
"nameField" : "Enter your name" ,
"notificationLobbyAccessDenied" : "{{targetParticipantName}} has been rejected to join by {{originParticipantName}}" ,
"notificationLobbyAccessGranted" : "{{targetParticipantName}} has been allowed to join by {{originParticipantName}}" ,
"notificationLobbyDisabled" : "Lobby has been disabled by {{originParticipantName}}" ,
"notificationLobbyEnabled" : "Lobby has been enabled by {{originParticipantName}}" ,
"notificationTitle" : "Lobby" ,
"passwordField" : "Enter meeting password" ,
"passwordJoinButton" : "Join" ,
"reject" : "Reject" ,
"rejectAll" : "Reject all" ,
2022-09-30 10:06:58 +00:00
"title" : "Lobby" ,
2022-01-18 17:36:05 +00:00
"toggleLabel" : "Enable lobby"
2019-01-11 23:33:01 +00:00
} ,
"localRecording" : {
"clientState" : {
"off" : "Off" ,
"on" : "On" ,
"unknown" : "Unknown"
} ,
"dialogTitle" : "Local Recording Controls" ,
"duration" : "Duration" ,
"durationNA" : "N/A" ,
"encoding" : "Encoding" ,
"label" : "LOR" ,
"labelToolTip" : "Local recording is engaged" ,
"localRecording" : "Local Recording" ,
"me" : "Me" ,
"messages" : {
"engaged" : "Local recording engaged." ,
2019-07-22 10:10:25 +00:00
"finished" : "Recording session {{token}} finished. Please send the recorded file to the moderator." ,
"finishedModerator" : "Recording session {{token}} finished. The recording of the local track has been saved. Please ask the other participants to submit their recordings." ,
2019-01-11 23:33:01 +00:00
"notModerator" : "You are not the moderator. You cannot start or stop local recording."
} ,
"moderator" : "Moderator" ,
"no" : "No" ,
"participant" : "Participant" ,
"participantStats" : "Participant Stats" ,
2022-10-04 08:59:19 +00:00
"selectTabTitle" : "🎥 Please select this tab for recording" ,
2019-01-11 23:33:01 +00:00
"sessionToken" : "Session Token" ,
"start" : "Start Recording" ,
"stop" : "Stop Recording" ,
"yes" : "Yes"
} ,
2019-07-02 13:14:58 +00:00
"lockRoomPassword" : "password" ,
"lockRoomPasswordUppercase" : "Password" ,
2022-01-18 17:36:05 +00:00
"lonelyMeetingExperience" : {
"button" : "Invite others" ,
"youAreAlone" : "You are the only one in the meeting"
} ,
2019-01-11 23:33:01 +00:00
"me" : "me" ,
"notify" : {
2022-01-18 17:36:05 +00:00
"OldElectronAPPTitle" : "Security vulnerability!" ,
2021-09-10 11:05:16 +00:00
"allowAction" : "Allow" ,
"allowedUnmute" : "You can unmute your microphone, start your camera or share your screen." ,
2021-11-30 20:08:25 +00:00
"audioUnmuteBlockedDescription" : "Mic unmute operation has been temporarily blocked because of system limits." ,
2022-01-18 17:36:05 +00:00
"audioUnmuteBlockedTitle" : "Mic unmute blocked!" ,
2021-12-17 12:39:15 +00:00
"chatMessages" : "Chat messages" ,
2019-07-22 10:10:25 +00:00
"connectedOneMember" : "{{name}} joined the meeting" ,
2021-09-02 12:46:16 +00:00
"connectedThreePlusMembers" : "{{name}} and many others joined the meeting" ,
2019-07-22 10:10:25 +00:00
"connectedTwoMembers" : "{{first}} and {{second}} joined the meeting" ,
2022-11-15 15:54:24 +00:00
"dataChannelClosed" : "Video quality impaired" ,
"dataChannelClosedDescription" : "The bridge channel has been disconnected and thus video quality is limited to its lowest setting." ,
2019-01-11 23:33:01 +00:00
"disconnected" : "disconnected" ,
2021-12-17 12:39:15 +00:00
"displayNotifications" : "Display notifications for" ,
2019-01-11 23:33:01 +00:00
"focus" : "Conference focus" ,
2019-07-22 10:10:25 +00:00
"focusFail" : "{{component}} not available - retry in {{ms}} sec" ,
2022-03-30 13:54:03 +00:00
"gifsMenu" : "GIPHY" ,
2022-01-18 17:36:05 +00:00
"groupTitle" : "Notifications" ,
2021-09-10 11:05:16 +00:00
"hostAskedUnmute" : "The moderator would like you to speak" ,
2019-07-22 10:10:25 +00:00
"invitedOneMember" : "{{name}} has been invited" ,
"invitedThreePlusMembers" : "{{name}} and {{count}} others have been invited" ,
"invitedTwoMembers" : "{{first}} and {{second}} have been invited" ,
"kickParticipant" : "{{kicked}} was kicked by {{kicker}}" ,
2021-12-02 13:17:07 +00:00
"leftOneMember" : "{{name}} left the meeting" ,
"leftThreePlusMembers" : "{{name}} and many others left the meeting" ,
"leftTwoMembers" : "{{first}} and {{second}} left the meeting" ,
2022-03-08 09:10:30 +00:00
"linkToSalesforce" : "Link to Salesforce" ,
"linkToSalesforceDescription" : "You can link the meeting summary to a Salesforce object." ,
"linkToSalesforceError" : "Failed to link meeting to Salesforce" ,
"linkToSalesforceKey" : "Link this meeting" ,
"linkToSalesforceProgress" : "Linking meeting to Salesforce..." ,
"linkToSalesforceSuccess" : "The meeting was linked to Salesforce" ,
2022-06-03 11:45:27 +00:00
"localRecordingStarted" : "{{name}} has started a local recording." ,
"localRecordingStopped" : "{{name}} has stopped a local recording." ,
2019-01-11 23:33:01 +00:00
"me" : "Me" ,
2022-01-18 17:36:05 +00:00
"moderationInEffectCSDescription" : "Please raise hand if you want to share your screen." ,
"moderationInEffectCSTitle" : "Screen sharing is blocked by the moderator" ,
"moderationInEffectDescription" : "Please raise hand if you want to speak." ,
"moderationInEffectTitle" : "Your microphone is muted by the moderator" ,
"moderationInEffectVideoDescription" : "Please raise your hand if you want to start your camera." ,
"moderationInEffectVideoTitle" : "Your camera is blocked by the moderator" ,
"moderationRequestFromModerator" : "The host would like you to unmute" ,
"moderationRequestFromParticipant" : "Wants to speak" ,
"moderationStartedTitle" : "Moderation started" ,
"moderationStoppedTitle" : "Moderation stopped" ,
"moderationToggleDescription" : "by {{participantDisplayName}}" ,
2021-09-10 11:05:16 +00:00
"moderator" : "You're now a moderator" ,
2019-01-11 23:33:01 +00:00
"muted" : "You have started the conversation muted." ,
2019-06-17 14:00:09 +00:00
"mutedRemotelyDescription" : "You can always unmute when you're ready to speak. Mute back when you're done to keep noise away from the meeting." ,
2022-01-18 17:36:05 +00:00
"mutedRemotelyTitle" : "You've been muted by {{participantDisplayName}}" ,
"mutedTitle" : "You're muted!" ,
"newDeviceAction" : "Use" ,
"newDeviceAudioTitle" : "New audio device detected" ,
"newDeviceCameraTitle" : "New camera detected" ,
2022-07-20 12:31:17 +00:00
"noiseSuppressionDesktopAudioDescription" : "Noise suppression can't be enabled while sharing desktop audio, please disable it and try again." ,
"noiseSuppressionFailedTitle" : "Failed to start noise suppression" ,
"noiseSuppressionNoTrackDescription" : "Please unmute your microphone first." ,
"noiseSuppressionStereoDescription" : "Stereo audio noise suppression is not currently supported." ,
2022-01-18 17:36:05 +00:00
"oldElectronClientDescription1" : "You appear to be using an old version of the Jitsi Meet client which has known security vulnerabilities. Please make sure you update to our " ,
"oldElectronClientDescription2" : "latest build" ,
"oldElectronClientDescription3" : " now!" ,
2022-01-20 14:26:03 +00:00
"participantWantsToJoin" : "Wants to join the meeting" ,
"participantsWantToJoin" : "Want to join the meeting" ,
2019-07-02 13:14:58 +00:00
"passwordRemovedRemotely" : "$t(lockRoomPasswordUppercase) removed by another participant" ,
"passwordSetRemotely" : "$t(lockRoomPasswordUppercase) set by another participant" ,
2022-01-18 17:36:05 +00:00
"raiseHandAction" : "Raise hand" ,
2021-09-10 11:05:16 +00:00
"raisedHand" : "Would like to speak." ,
2021-12-02 13:17:07 +00:00
"raisedHands" : "{{participantName}} and {{raisedHands}} more people" ,
2022-01-18 17:36:05 +00:00
"reactionSounds" : "Disable sounds" ,
"reactionSoundsForAll" : "Disable sounds for all" ,
2022-01-11 14:39:39 +00:00
"screenShareNoAudio" : "Share audio box was not checked in the window selection screen." ,
2021-07-07 08:07:30 +00:00
"screenShareNoAudioTitle" : "Couldn't share system audio!" ,
2022-12-20 01:20:30 +00:00
"screenSharingAudioOnlyDescription" : "Please note that by sharing your screen you're affecting the \"Best performance\" mode and you will use more bandwidth." ,
"screenSharingAudioOnlyTitle" : "\"Best performance\" mode" ,
2021-12-07 08:24:00 +00:00
"selfViewTitle" : "You can always un-hide the self-view from settings" ,
2019-01-11 23:33:01 +00:00
"somebody" : "Somebody" ,
2019-06-05 17:01:18 +00:00
"startSilentDescription" : "Rejoin the meeting to enable audio" ,
2022-01-18 17:36:05 +00:00
"startSilentTitle" : "You joined with no audio output!" ,
2020-05-15 17:28:47 +00:00
"suboptimalBrowserWarning" : "We are afraid your meeting experience isn't going to be that great here. We are looking for ways to improve this, but until then please try using one of the <a href='{{recommendedBrowserPageLink}}' target='_blank'>fully supported browsers</a>." ,
2019-05-03 17:25:33 +00:00
"suboptimalExperienceTitle" : "Browser Warning" ,
2019-07-02 11:59:25 +00:00
"unmute" : "Unmute" ,
2022-01-18 17:36:05 +00:00
"videoMutedRemotelyDescription" : "You can always turn it on again." ,
"videoMutedRemotelyTitle" : "Your video has been turned off by {{participantDisplayName}}" ,
"videoUnmuteBlockedDescription" : "Camera unmute and desktop sharing operation have been temporarily blocked because of system limits." ,
2022-01-20 14:26:03 +00:00
"videoUnmuteBlockedTitle" : "Camera unmute and desktop sharing blocked!" ,
"viewLobby" : "View lobby" ,
"waitingParticipants" : "{{waitingParticipants}} people"
2019-01-11 23:33:01 +00:00
} ,
2021-04-21 13:48:05 +00:00
"participantsPane" : {
"actions" : {
2021-06-23 11:23:44 +00:00
"allow" : "Allow attendees to:" ,
2021-09-22 13:26:55 +00:00
"allowVideo" : "Allow video" ,
2022-01-18 17:36:05 +00:00
"askUnmute" : "Ask to unmute" ,
2021-09-10 11:05:16 +00:00
"audioModeration" : "Unmute themselves" ,
2021-07-01 07:25:29 +00:00
"blockEveryoneMicCamera" : "Block everyone's mic and camera" ,
2021-05-16 16:04:33 +00:00
"invite" : "Invite Someone" ,
2021-10-22 13:23:52 +00:00
"moreModerationActions" : "More moderation options" ,
2022-01-18 17:36:05 +00:00
"moreModerationControls" : "More moderation controls" ,
2021-09-14 15:31:30 +00:00
"moreParticipantOptions" : "More participant options" ,
2021-07-02 13:43:52 +00:00
"mute" : "Mute" ,
2021-04-21 13:48:05 +00:00
"muteAll" : "Mute all" ,
2021-07-02 13:43:52 +00:00
"muteEveryoneElse" : "Mute everyone else" ,
2021-06-23 11:23:44 +00:00
"stopEveryonesVideo" : "Stop everyone's video" ,
2021-07-01 07:25:29 +00:00
"stopVideo" : "Stop video" ,
2021-09-10 11:05:16 +00:00
"unblockEveryoneMicCamera" : "Unblock everyone's mic and camera" ,
2022-01-18 17:36:05 +00:00
"videoModeration" : "Start their video"
} ,
"close" : "Close" ,
"headings" : {
"lobby" : "Lobby ({{count}})" ,
"participantsList" : "Meeting participants ({{count}})" ,
2023-02-08 17:48:51 +00:00
"visitors" : "Visitors ({{count}})" ,
2022-01-18 17:36:05 +00:00
"waitingLobby" : "Waiting in lobby ({{count}})"
2021-10-21 11:58:44 +00:00
} ,
2022-09-30 10:06:58 +00:00
"search" : "Search participants" ,
"title" : "Participants"
2021-04-21 13:48:05 +00:00
} ,
2019-07-22 10:10:25 +00:00
"passwordDigitsOnly" : "Up to {{number}} digits" ,
2022-01-18 17:36:05 +00:00
"passwordSetRemotely" : "Set by another participant" ,
2023-02-28 10:21:15 +00:00
"pinParticipant" : "{{participantName}} - Pin" ,
2022-03-29 08:45:09 +00:00
"pinnedParticipant" : "The participant is pinned" ,
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"polls" : {
2022-01-18 17:36:05 +00:00
"answer" : {
"skip" : "Skip" ,
"submit" : "Submit"
} ,
2021-11-02 11:01:58 +00:00
"by" : "By {{ name }}" ,
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"create" : {
"addOption" : "Add option" ,
"answerPlaceholder" : "Option {{index}}" ,
"cancel" : "Cancel" ,
2022-01-18 17:36:05 +00:00
"create" : "Create a poll" ,
"pollOption" : "Poll option {{index}}" ,
"pollQuestion" : "Poll Question" ,
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
"questionPlaceholder" : "Ask a question" ,
"removeOption" : "Remove option" ,
"send" : "Send"
} ,
2022-01-18 17:36:05 +00:00
"notification" : {
"description" : "Open polls tab to vote" ,
"title" : "A new poll was added to this meeting"
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
} ,
"results" : {
"changeVote" : "Change vote" ,
"empty" : "There are no polls in the meeting yet. Start a poll here!" ,
"hideDetailedResults" : "Hide details" ,
2022-01-18 17:36:05 +00:00
"showDetailedResults" : "Show details" ,
"vote" : "Vote"
feat(polls) Ability to create polls inside Jitsi (#9166)
* feat(polls) Added boilerplate code for polls feature
* feat(polls) Implemented simple poll creation and answer modals in web app
feat(polls) Added button to create a poll in toolbar
feat(polls) Added Modal to answer an incoming poll
feat(polls) Implemented basic client-side sending and reception of polls
feat(polls): linked Poll creation to poll answering
fix(polls) Linted code
feat(polls.create) Added fields for question and answers (#3)
* feat(polls.create) Added fields for question and answers + keyboard navigation
* feat(polls.create) Minor changes, added some comments
feat(PollAnswer Component): Component to display modal to answer poll #1 (#2)
* fix(polls) removing necessity of current_poll_id variable
* fix(polls) linting, polls are now updated when an answer is sent
* feat(polls answer) added translation
* fix(polls answer) remove extra comments, fixed typo
* improvement (polls answer) use useSelector instead of mapStateToProps. cleaner code
* fix (polls create) renamed sender to senderId
* fix (polls answer) turned arrow function into useCallBack
feat(PollResults Component): Component to display poll results (#1)
* feat(PollResults Component): fist version of the component
* feat(detailed votes): Display the detailed results of a poll
* feat(Poll results): Use display name instead of ids in detailed results mode
* fix(Poll): change title to question
* fix(Poll type): import Poll type from types.js
* fix(Poll): change title to question
* fix(Poll): get participants out of the map
* fix(Poll): replace filter with find
feat(polls.create) Added "+" and "x" buttons in poll creation form + improved keyboard navigation a bit
feat (polls) Answer modal now display results in real time after validation or skip
feat(polls.create) Minor improvements to poll creation form
feat(poll result) Added default message when trying to display no answer
fix (polls) result windows is now small by default
fix (polls) sanitizes imports to allow startup on react native
* feat(polls.native) Implemented native toolbar button & poll create modal
feat( poll native) added poll creation button in native toolbar
improvement(polls) only one file used for PollCreateButton
feat (polls native) added an example dialog
feat (polls native) added possibility to create and delete options in poll creation
improvement (polls) better styling for PollCreateDialog
* feat(polls) Added ability to drag&drop answers in web poll creation form
* feat(polls) Added native poll answer modal + chat integration, refactored components
Merge branch 'polls-native' of https://github.com/jade-guiton/jitsi-meet into polls-native
improvement (poll) Better styling for poll answer, now uses icons
feat(poll.PollResults): Add native version of PollResults
feat(poll.PollResults): Post results in chat in Native
fix(poll.PollResults): Fix linter error in ChatMessage
feat(polls.native) Improved styling for native poll answer dialog (required some internal changes)
* fix(polls) Heavily refactored and added bars to poll results, other minor changes
fix(poll.create): Move title to Dialog title
feat(poll.create) Minor changes to poll creation / answer dialogs
fix(poll.create) Refactored and improved translations
feat(poll) Improved CSS for modals in web version
fix(poll.pollcreate): Fix button size in native
fix(polls) Refactored poll results component and other minor changes
fix (polls) remove double import
refactor(poll) Heavily refactored poll results (native + web)
feat(polls.results) Added percentage bars and vote counts in web poll results, minor changes to mobile poll results
* fix(polls) Fixes and linting
fix(polls) Reformatted and fixed some linter and Flow errors
fix(polls.results) Fixed voter list border appearing with 0 voters
* feat(polls): Add modal with detailed votes that can be open from the result summary in the chat
* fix(polls) Fixes, refactorings, and minor design changes
feat(polls.results): Refactored poll chat message and improved design in web app
feat(polls.results) Same as last commit, but for mobile version
refactor(polls.results) Refactored PollResultsMessage and removed unnecessary prop in PollResults
fix(polls.results) Fixed all remaining linter and Flow errors
improvement(polls) removed console logs, added comments
fix (polls) linting
fix(polls.results) Fixed bug with poll chat message displaying the wrong name
feat(polls.results) Minor improvement on poll results display (web)
fix(poll.results): Use getParticipantDisplayName to get participant name and avoid empty string as name
* Feat(poll.results): Remember voters names to display after they left the conference (#10)
* feat(poll.results): Add the sender name in Poll object to remember names if participants leave the conference. Names are also updated if changed
* refactor(poll.results): Refactor the memorization of the names of voters to use the same logic as in the chat
* refactor(poll.results): use Map instead of Array.From(
* refactor(poll.answer): change the way names are stored in poll answers to persist if participant left the call
* Update react/features/polls/components/AbstractPollAnswerDialog.js
* Update react/features/polls/components/AbstractPollCreateDialog.js
* refactor(poll.answer): use voterName instead of senderName to avoid confusion with senderId the id of the sender of the poll
* improvement(polls) Simplified poll answer voter name logic
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* fix(poll.native): Fix UI overflow when asking long questions & long options in the mobile app (#11)
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
* fix(polls) Fixed close button behavior in answer and results dialog (#12)
* fix(polls) Fixed close button behavior in answer and results dialog
* fix(polls) Fixed linter error
* fix(polls) Added a poll queue to avoid overwriting open modals (#13)
* fix(polls) Added a poll queue to avoid overwriting open modals
* fix(polls) Updated documentation for action RECEIVE_POLL
* Refactor(poll.chatresults): Add message in chat with hidden results until the participant has answered (#14)
* refactor(poll.chat): Display poll results in chat when the poll is created instead of when the participant has ansered
* refactor(poll.chat): Hide results until the participant has answered, skipped or canceled a responde to the poll
* Use getParticipantDisplayName instead of only getStore()
* Hide results also in native
* fix(polls) Fixed previous merge
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Jade Guiton <jade.guiton@centralesupelec.fr>
* minor improvements (polls)
refactor (polls) uniformized string for command names
refactor (polls) changed pollId type to number everywhere
* feat(polls) Added persistence to polls using sendMessage instead of sendCommandOnce (#16)
* feat(polls) Using sendMessage instead of sendCommandOnce, switched poll IDs to string, and ability to receive old polls from backend
* improvement(polls) Linted everything, fixed Flow errors, and added Prosody plugin for polls
* improvement(polls) Historic polls are now displayed in chronological order
* (polls) Minor improvements (#17)
* renaming (polls) Renaming senderId -> voterID for voters
* improvement (polls) sender's name is now provided with poll
* comments (polls) updated comments for senderName types
* fix(polls) Finished merging with json-messages feature
* fix(polls) Fixed incorrect json-message sent with 0 polls
Co-authored-by: Jade Guiton <guiton.jade@gmail.com>
* Move polls to tab (#23)
* Draft(polls): Move polls to polls-pane ; first version for web
* Draft(polls): Move polls to polls-pane ; clean styled.js and remove Participant objects
* fix missing newline at the end of file
* Change behaviour to allow answer poll later
* Fix(polls): change pollId type from number to string for consistency
* feat(polls-pane): Ability to answer to a poll in polls-pane
* feat(polls-pane): Ability to create to a poll in polls-pane
* feat (polls.pane) display a notification when a new poll arrives
* refactor(polls-pane): Update CSS to have a design closer to the mockups
* fix(poll.vote count): Fix votes counting when computing percentage
* fix(poll.vote count): Fix votes counting when computing percentage
* refresh fork with jitsi/jitsi-meet
* design (polls) Better look for poll creation
* refactor(polls pane): Move polls-pane as a chat tab
* Remove the first version of the polls-pane and the button to open it
* Fix notifications and typo
* Translate new polls tab in chat
* Change polls_pane to polls-pane
* Remove unless functions
* Remove usage of styled.js
* Improve responsiveness
* Separate web and native logic
* Remove Create a Poll button in web toolbox
* improvement (polls) added auto scrolling to bottom when a new poll arrives
* Add tabs to swicth between polls and chat in native
* Add AbstractPollsPane
* Add AbstractPollCreate
* Add AbstractPollAnswer
* Add PollAnswer, PollItem and PollList for native
* Add PollCreate for native
* Remove dialogs in web and native
* Remove dialog queue
* Remove useless files
* Move _polls.scss outside dialog folder
* Add possibility to skip answer
* Add (useless for now) see details link
* Add possibility to show detailed results for a poll
* Resize progress bar to make details display
* refactor, design (polls) better style to native design chat
* fix (polls) Removed unecessary files
* translate (polls) added french translation to empty polls
* design fix (polls.native) 'show details' now correctly switch between progress bar and voters mode
* Change See detailed results for Show details and add cursor: pointer
* Fix progress bars not aligned with text
* fix (polls.native) added autoselection of newly created option
* Remove poll answer
* improvement(polls.create) Improved web poll creation form marginally
* improvement(polls.change) Simplified answer removal by reusing poll-answer command
* fix linter
* Fix(translation): update translation
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
* Merge pull request #22 from jade-guiton/polls-with-notification
feat (polls) chat notification badge now display the sum of unread messages and unread polls
fix(translation): Fix missing translation
Fix flow error
* Cleaned up, fixed, and uniformized translations
* Small improvements to PollAnswer and PollResult + Much refactoring
Specifically:
- "Change vote" button now says "Vote" if voting was skipped
- Clicking on "Change vote" resets the voting form to the last submitted answers instead of a blank slate
- The "answered" field of Polls was replaced by "showResults" and "lastVote"
- The "setAnsweredStatus" action was replaced by "registerVote" and "retractVote"
- Some newly unreachable/useless code was removed
- "showDetails" state is now handled by AbstractPollResults instead of PollItem
* fix(polls tab): change tab underline color to #525252
* fix(poll create): Enforce at least two options to create a poll
* fix(poll create): change 'remove option' color to #E04757
* fix(poll create): Update Poll create CSS to adapt to design
* fix(poll answer): Adapt CSS to make poll answer closer to mockup
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll result): Udpdate poll result CSS to match mockups
* fix(poll create): Display 'remove option' only when there is at least 3 options
* fix(polls button): Add hover, active, focus and disabled state to polls buttons
* Last improvements for web
* Native design fixes
* Fix rebase issue in land/main.json
* Fix french translation after rebase
* Fixmobile behaviour
* Fixed keyboard navigation in web poll creation form
* Fixed Flow error related to "no polls" icon in PollsList
* fix(polls): Enabled polls Prosody module in Debian config files
* doc(polls) Added comments to the Prosody module code
* fix(polls): Switched from using an internal LJM event to ones from the public API
* Capitalize I of setIsPollsTabFocused
* extract the 2 button modes into a const
* remove extra new lines
* Rename CLOSE_POLL_TAB for POLL_TAB_CLOSED for clarity
* Rename answers2 for answersParsed for clarity
* use switch instead of if/else chain
* improve syntax for localId fetching
* Refactor: Use BUTTON_MODE.CONTAINED variable instead of 'contained'
* Disable send poll button if not enough data is provided in the form (#30)
* Feat: Add notification badge on chat and poll tabs (#31)
* Feat: Add notification badge on chat and poll tabs
* Add badge equivalent for native
* Update displayNameForm text to mention polls (#34)
* Disable polls UI with a config in config.js (#33)
* Change remove option text color from red to grey (#32)
Co-authored-by: spineki <marras.antoine@gmail.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@student-cs.fr>
Co-authored-by: Fabien Zucchet <80532941+fabienzucchet@users.noreply.github.com>
Co-authored-by: Fabien Zucchet <fabien.zucchet@viarezo.fr>
2021-08-14 13:29:42 +00:00
}
} ,
2019-01-11 23:33:01 +00:00
"poweredby" : "powered by" ,
2020-04-16 10:47:10 +00:00
"prejoin" : {
"audioAndVideoError" : "Audio and video error:" ,
2020-08-12 07:19:31 +00:00
"audioDeviceProblem" : "There is a problem with your audio device" ,
2020-04-16 10:47:10 +00:00
"audioOnlyError" : "Audio error:" ,
"audioTrackError" : "Could not create audio track." ,
"callMe" : "Call me" ,
"callMeAtNumber" : "Call me at this number:" ,
2022-01-18 17:36:05 +00:00
"calling" : "Calling" ,
2020-04-16 10:47:10 +00:00
"configuringDevices" : "Configuring devices..." ,
"connectedWithAudioQ" : "You’ re connected with audio?" ,
2020-07-29 10:27:32 +00:00
"connection" : {
2022-01-18 17:36:05 +00:00
"good" : "Your internet connection looks good!" ,
"nonOptimal" : "Your internet connection is not optimal" ,
"poor" : "You have a poor internet connection"
2020-07-29 10:27:32 +00:00
} ,
"connectionDetails" : {
2022-01-18 17:36:05 +00:00
"audioClipping" : "We expect your audio to be clipped." ,
"audioHighQuality" : "We expect your audio to have excellent quality." ,
"audioLowNoVideo" : "We expect your audio quality to be low and no video." ,
"goodQuality" : "Awesome! Your media quality is going to be great." ,
"noMediaConnectivity" : "We could not find a way to establish media connectivity for this test. This is typically caused by a firewall or NAT." ,
"noVideo" : "We expect that your video will be terrible." ,
"undetectable" : "If you still can not make calls in browser, we recommend that you make sure your speakers, microphone and camera are properly set up, that you have granted your browser rights to use your microphone and camera, and that your browser version is up-to-date. If you still have trouble calling, you should contact the web application developer." ,
"veryPoorConnection" : "We expect your call quality to be really terrible." ,
"videoFreezing" : "We expect your video to freeze, turn black, and be pixelated." ,
"videoHighQuality" : "We expect your video to have good quality." ,
"videoLowQuality" : "We expect your video to have low quality in terms of frame rate and resolution." ,
"videoTearing" : "We expect your video to be pixelated or have visual artefacts."
2020-07-29 10:27:32 +00:00
} ,
2020-04-16 10:47:10 +00:00
"copyAndShare" : "Copy & share meeting link" ,
"dialInMeeting" : "Dial into the meeting" ,
"dialInPin" : "Dial into the meeting and enter PIN code:" ,
"dialing" : "Dialing" ,
2020-09-29 11:00:30 +00:00
"doNotShow" : "Don't show this screen again" ,
2020-05-14 12:30:24 +00:00
"errorDialOut" : "Could not dial out" ,
"errorDialOutDisconnected" : "Could not dial out. Disconnected" ,
"errorDialOutFailed" : "Could not dial out. Call failed" ,
"errorDialOutStatus" : "Error getting dial out status" ,
2020-08-13 09:00:20 +00:00
"errorMissingName" : "Please enter your name to join the meeting" ,
2021-09-17 10:12:34 +00:00
"errorNoPermissions" : "You need to enable microphone and camera access" ,
2020-05-14 12:30:24 +00:00
"errorStatusCode" : "Error dialing out, status code: {{status}}" ,
"errorValidation" : "Number validation failed" ,
2020-04-16 10:47:10 +00:00
"iWantToDialIn" : "I want to dial in" ,
2022-01-18 17:36:05 +00:00
"initiated" : "Call initiated" ,
2020-04-16 10:47:10 +00:00
"joinAudioByPhone" : "Join with phone audio" ,
"joinMeeting" : "Join meeting" ,
2022-06-16 09:49:07 +00:00
"joinMeetingInLowBandwidthMode" : "Join in low bandwidth mode" ,
2020-04-16 10:47:10 +00:00
"joinWithoutAudio" : "Join without audio" ,
2022-01-18 17:36:05 +00:00
"keyboardShortcuts" : "Enable Keyboard shortcuts" ,
2020-04-16 10:47:10 +00:00
"linkCopied" : "Link copied to clipboard" ,
2021-08-20 08:53:11 +00:00
"lookGood" : "Your microphone is working properly" ,
2020-04-16 10:47:10 +00:00
"or" : "or" ,
2020-07-16 10:00:37 +00:00
"premeeting" : "Pre meeting" ,
2022-01-18 17:36:05 +00:00
"screenSharingError" : "Screen sharing error:" ,
2020-07-16 10:00:37 +00:00
"showScreen" : "Enable pre meeting screen" ,
2020-04-16 10:47:10 +00:00
"startWithPhone" : "Start with phone audio" ,
"videoOnlyError" : "Video error:" ,
"videoTrackError" : "Could not create video track." ,
"viewAllNumbers" : "view all numbers"
} ,
2019-01-11 23:33:01 +00:00
"presenceStatus" : {
"busy" : "Busy" ,
"calling" : "Calling..." ,
"connected" : "Connected" ,
"connecting" : "Connecting..." ,
"connecting2" : "Connecting*..." ,
"disconnected" : "Disconnected" ,
"expired" : "Expired" ,
"ignored" : "Ignored" ,
"initializingCall" : "Initializing Call..." ,
"invited" : "Invited" ,
"rejected" : "Rejected" ,
"ringing" : "Ringing..."
} ,
"profile" : {
2021-06-10 12:48:44 +00:00
"avatar" : "avatar" ,
2023-03-03 08:42:59 +00:00
"setDisplayNameLabel" : "Name" ,
2021-11-23 11:12:12 +00:00
"setEmailInput" : "Enter email" ,
2023-03-03 08:42:59 +00:00
"setEmailLabel" : "Gravatar email" ,
2019-01-11 23:33:01 +00:00
"title" : "Profile"
2015-08-06 03:18:45 +00:00
} ,
2019-08-07 11:14:47 +00:00
"raisedHand" : "Would like to speak" ,
2021-12-21 10:22:30 +00:00
"raisedHandsLabel" : "Number of raised hands" ,
2022-03-08 09:10:30 +00:00
"record" : {
"already" : {
2022-03-31 13:11:44 +00:00
"linked" : "The meeting is already linked to this Salesforce object."
2022-03-08 09:10:30 +00:00
} ,
"type" : {
"account" : "Account" ,
"contact" : "Contact" ,
"lead" : "Lead" ,
"opportunity" : "Opportunity" ,
"owner" : "Owner"
}
} ,
2019-01-11 23:33:01 +00:00
"recording" : {
"authDropboxText" : "Upload to Dropbox" ,
2019-07-22 10:10:25 +00:00
"availableSpace" : "Available space: {{spaceLeft}} MB (approximately {{duration}} minutes of recording)" ,
2018-05-21 22:16:38 +00:00
"beta" : "BETA" ,
2017-11-03 19:05:03 +00:00
"busy" : "We're working on freeing recording resources. Please try again in a few minutes." ,
"busyTitle" : "All recorders are currently busy" ,
2021-06-21 08:36:18 +00:00
"copyLink" : "Copy Link" ,
2016-06-02 16:30:45 +00:00
"error" : "Recording failed. Please try again." ,
2021-06-21 08:36:18 +00:00
"errorFetchingLink" : "Error fetching recording link." ,
2018-09-11 10:16:01 +00:00
"expandedOff" : "Recording has stopped" ,
"expandedOn" : "The meeting is currently being recorded." ,
"expandedPending" : "Recording is being started..." ,
2017-11-03 19:05:03 +00:00
"failedToStart" : "Recording failed to start" ,
2022-03-08 16:08:36 +00:00
"fileSharingdescription" : "Share the recording link with the meeting participants" ,
2022-03-18 14:16:56 +00:00
"highlight" : "Highlight" ,
2022-03-14 08:31:08 +00:00
"highlightMoment" : "Highlight moment" ,
"highlightMomentDisabled" : "You can highlight moments when the recording starts" ,
"highlightMomentSuccess" : "Moment highlighted" ,
"highlightMomentSucessDescription" : "Your highlighted moment will be added to the meeting summary." ,
2021-11-09 18:58:49 +00:00
"inProgress" : "Recording or live streaming in progress" ,
2022-01-18 17:36:05 +00:00
"limitNotificationDescriptionNative" : "Due to high demand your recording will be limited to {{limit}} min. For unlimited recordings try <3>{{app}}</3>." ,
"limitNotificationDescriptionWeb" : "Due to high demand your recording will be limited to {{limit}} min. For unlimited recordings try <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>." ,
2021-06-21 08:36:18 +00:00
"linkGenerated" : "We have generated a link to your recording." ,
2018-05-16 14:00:16 +00:00
"live" : "LIVE" ,
2022-06-22 09:52:22 +00:00
"localRecordingNoNotificationWarning" : "The recording will not be announced to other participants. You will need to let them know that the meeting is recorded." ,
2022-06-24 12:07:40 +00:00
"localRecordingNoVideo" : "Video is not being recorded" ,
2022-06-29 07:05:55 +00:00
"localRecordingStartWarning" : "Please make sure you stop the recording before exiting the meeting in order to save it." ,
"localRecordingStartWarningTitle" : "Stop the recording to save it" ,
2022-06-24 12:07:40 +00:00
"localRecordingVideoStop" : "Stopping your video will also stop the local recording. Are you sure you want to continue?" ,
"localRecordingVideoWarning" : "To record your video you must have it on when starting the recording" ,
2022-06-03 11:45:27 +00:00
"localRecordingWarning" : "Make sure you select the current tab in order to use the right video and audio. The recording is currently limited to 1GB, which is around 100 minutes." ,
2019-07-22 10:10:25 +00:00
"loggedIn" : "Logged in as {{userName}}" ,
2023-02-03 09:34:07 +00:00
"noMicPermission" : "Microphone track could not be created. Please grant permission to use the microphone." ,
2022-06-24 12:07:40 +00:00
"noStreams" : "No audio or video stream detected." ,
2017-11-03 19:05:03 +00:00
"off" : "Recording stopped" ,
2019-10-03 19:35:21 +00:00
"offBy" : "{{name}} stopped the recording" ,
2021-01-11 14:21:33 +00:00
"on" : "Recording started" ,
2019-10-03 19:35:21 +00:00
"onBy" : "{{name}} started the recording" ,
2022-06-24 12:07:40 +00:00
"onlyRecordSelf" : "Record only my audio and video streams" ,
2018-06-11 21:23:20 +00:00
"pending" : "Preparing to record the meeting..." ,
2018-05-16 14:00:16 +00:00
"rec" : "REC" ,
2022-07-13 07:42:06 +00:00
"saveLocalRecording" : "Save recording file locally (Beta)" ,
2019-03-11 16:17:21 +00:00
"serviceDescription" : "Your recording will be saved by the recording service" ,
2020-12-21 10:19:10 +00:00
"serviceDescriptionCloud" : "Cloud recording" ,
2022-03-08 16:08:36 +00:00
"serviceDescriptionCloudInfo" : "Recorded meetings are automatically cleared 24h after their recording time." ,
2017-11-21 22:45:14 +00:00
"serviceName" : "Recording service" ,
2021-11-09 00:08:21 +00:00
"sessionAlreadyActive" : "This session is already being recorded or live streamed." ,
2019-03-11 16:17:21 +00:00
"signIn" : "Sign in" ,
"signOut" : "Sign out" ,
2022-06-03 11:45:27 +00:00
"surfaceError" : "Please select the current tab." ,
2022-09-30 10:06:58 +00:00
"title" : "Recording" ,
2019-07-22 10:10:25 +00:00
"unavailable" : "Oops! The {{serviceName}} is currently unavailable. We're working on resolving the issue. Please try again later." ,
2021-06-21 08:36:18 +00:00
"unavailableTitle" : "Recording unavailable" ,
"uploadToCloud" : "Upload to the cloud"
2016-03-29 17:13:54 +00:00
} ,
2022-04-18 14:58:41 +00:00
"screenshareDisplayName" : "{{name}}'s screen" ,
2019-01-11 23:33:01 +00:00
"sectionList" : {
"pullToRefresh" : "Pull to refresh"
} ,
2020-05-18 12:07:09 +00:00
"security" : {
2020-06-25 13:59:55 +00:00
"about" : "You can add a $t(lockRoomPassword) to your meeting. Participants will need to provide the $t(lockRoomPassword) before they are allowed to join the meeting." ,
"aboutReadOnly" : "Moderator participants can add a $t(lockRoomPassword) to the meeting. Participants will need to provide the $t(lockRoomPassword) before they are allowed to join the meeting." ,
2022-09-30 10:06:58 +00:00
"insecureRoomNameWarning" : "The room name is unsafe. Unwanted participants may join your conference. Consider securing your meeting using the security button." ,
"title" : "Security Options"
2020-05-18 12:07:09 +00:00
} ,
2019-01-11 23:33:01 +00:00
"settings" : {
2023-03-06 13:14:52 +00:00
"audio" : "Audio" ,
2022-07-28 07:28:29 +00:00
"buttonLabel" : "Settings" ,
2019-01-11 23:33:01 +00:00
"calendar" : {
2019-07-22 10:10:25 +00:00
"about" : "The {{appName}} calendar integration is used to securely access your calendar so it can read upcoming events." ,
2019-01-11 23:33:01 +00:00
"disconnect" : "Disconnect" ,
"microsoftSignIn" : "Sign in with Microsoft" ,
2019-07-22 10:10:25 +00:00
"signedIn" : "Currently accessing calendar events for {{email}}. Click the Disconnect button below to stop accessing calendar events." ,
2019-01-11 23:33:01 +00:00
"title" : "Calendar"
} ,
2021-06-28 07:48:16 +00:00
"desktopShareFramerate" : "Desktop sharing frame rate" ,
"desktopShareHighFpsWarning" : "A higher frame rate for desktop sharing might affect your bandwidth. You need to restart the screen share for the new settings to take effect." ,
2022-01-18 17:36:05 +00:00
"desktopShareWarning" : "You need to restart the screen share for the new settings to take effect." ,
2019-01-11 23:33:01 +00:00
"devices" : "Devices" ,
"followMe" : "Everyone follows me" ,
2021-06-28 07:48:16 +00:00
"framesPerSecond" : "frames-per-second" ,
2021-07-20 11:56:57 +00:00
"incomingMessage" : "Incoming message" ,
2019-01-11 23:33:01 +00:00
"language" : "Language" ,
2019-07-22 10:10:25 +00:00
"loggedIn" : "Logged in as {{name}}" ,
2022-11-15 14:53:11 +00:00
"maxStageParticipants" : "Maximum number of participants who can be pinned to the main stage (EXPERIMENTAL)" ,
2020-03-30 14:44:45 +00:00
"microphones" : "Microphones" ,
2019-01-11 23:33:01 +00:00
"moderator" : "Moderator" ,
2023-03-03 09:48:00 +00:00
"moderatorOptions" : "Moderator options" ,
2019-01-11 23:33:01 +00:00
"more" : "More" ,
"name" : "Name" ,
"noDevice" : "None" ,
2023-03-03 10:53:39 +00:00
"notifications" : "Notifications" ,
2021-07-20 11:56:57 +00:00
"participantJoined" : "Participant Joined" ,
2022-06-15 18:36:26 +00:00
"participantKnocking" : "Participant entered lobby" ,
2021-07-20 11:56:57 +00:00
"participantLeft" : "Participant Left" ,
"playSounds" : "Play sound on" ,
2021-08-23 09:57:56 +00:00
"reactions" : "Meeting reactions" ,
2021-05-14 21:37:48 +00:00
"sameAsSystem" : "Same as system ({{label}})" ,
2019-01-11 23:33:01 +00:00
"selectAudioOutput" : "Audio output" ,
"selectCamera" : "Camera" ,
"selectMic" : "Microphone" ,
2021-12-16 16:55:45 +00:00
"selfView" : "Self view" ,
2023-03-03 11:48:17 +00:00
"shortcuts" : "Shortcuts" ,
2020-03-30 14:17:18 +00:00
"speakers" : "Speakers" ,
2019-01-11 23:33:01 +00:00
"startAudioMuted" : "Everyone starts muted" ,
2021-11-10 11:19:40 +00:00
"startReactionsMuted" : "Mute reaction sounds for everyone" ,
2019-01-11 23:33:01 +00:00
"startVideoMuted" : "Everyone starts hidden" ,
2021-07-20 11:56:57 +00:00
"talkWhileMuted" : "Talk while muted" ,
2023-03-06 13:14:52 +00:00
"title" : "Settings" ,
"video" : "Video"
2019-01-11 23:33:01 +00:00
} ,
"settingsView" : {
2019-10-18 14:30:59 +00:00
"advanced" : "Advanced" ,
2020-05-07 21:05:48 +00:00
"alertCancel" : "Cancel" ,
2022-01-18 17:36:05 +00:00
"alertOk" : "OK" ,
2019-01-11 23:33:01 +00:00
"alertTitle" : "Warning" ,
"alertURLText" : "The entered server URL is invalid" ,
2019-04-02 08:03:01 +00:00
"buildInfoSection" : "Build Information" ,
2019-01-11 23:33:01 +00:00
"conferenceSection" : "Conference" ,
2019-10-18 14:30:59 +00:00
"disableCallIntegration" : "Disable native call integration" ,
2020-05-07 21:05:48 +00:00
"disableCrashReporting" : "Disable crash reporting" ,
"disableCrashReportingWarning" : "Are you sure you want to disable crash reporting? The setting will be applied after you restart the app." ,
2022-01-18 17:36:05 +00:00
"disableP2P" : "Disable Peer-To-Peer mode" ,
2019-01-11 23:33:01 +00:00
"displayName" : "Display name" ,
2022-06-10 12:50:12 +00:00
"displayNamePlaceholderText" : "Eg: John Doe" ,
2019-01-11 23:33:01 +00:00
"email" : "Email" ,
2022-11-08 15:46:46 +00:00
"emailPlaceholderText" : "email@example.com" ,
2022-07-28 07:28:29 +00:00
"goTo" : "Go to" ,
2019-01-11 23:33:01 +00:00
"header" : "Settings" ,
2022-07-28 07:28:29 +00:00
"help" : "Help" ,
"links" : "Links" ,
"privacy" : "Privacy" ,
2019-01-11 23:33:01 +00:00
"profileSection" : "Profile" ,
"serverURL" : "Server URL" ,
2019-10-18 14:30:59 +00:00
"showAdvanced" : "Show advanced settings" ,
2022-10-06 11:29:39 +00:00
"startCarModeInLowBandwidthMode" : "Start car mode in low bandwidth mode" ,
2019-01-11 23:33:01 +00:00
"startWithAudioMuted" : "Start with audio muted" ,
2019-04-02 08:03:01 +00:00
"startWithVideoMuted" : "Start with video muted" ,
2022-07-28 07:28:29 +00:00
"terms" : "Terms" ,
2019-04-02 08:03:01 +00:00
"version" : "Version"
2019-01-11 23:33:01 +00:00
} ,
"share" : {
2019-07-22 10:10:25 +00:00
"dialInfoText" : "\n\n=====\n\nJust want to dial in on your phone?\n\n{{defaultDialInNumber}}Click this link to see the dial in phone numbers for this meeting\n{{dialInfoPageUrl}}" ,
"mainText" : "Click the following link to join the meeting:\n{{roomUrl}}"
2019-01-11 23:33:01 +00:00
} ,
"speaker" : "Speaker" ,
"speakerStats" : {
2021-12-10 16:23:27 +00:00
"angry" : "Angry" ,
"disgusted" : "Disgusted" ,
2021-12-28 14:35:21 +00:00
"displayEmotions" : "Display emotions" ,
2021-12-10 16:23:27 +00:00
"fearful" : "Fearful" ,
"happy" : "Happy" ,
2019-07-22 10:10:25 +00:00
"hours" : "{{count}}h" ,
"minutes" : "{{count}}m" ,
2019-01-11 23:33:01 +00:00
"name" : "Name" ,
2021-11-17 14:33:03 +00:00
"neutral" : "Neutral" ,
"sad" : "Sad" ,
2021-12-10 16:23:27 +00:00
"search" : "Search" ,
"seconds" : "{{count}}s" ,
2022-11-22 13:56:37 +00:00
"speakerStats" : "Participants Stats" ,
2022-01-18 17:36:05 +00:00
"speakerTime" : "Speaker Time" ,
2021-12-10 16:23:27 +00:00
"surprised" : "Surprised"
2019-01-11 23:33:01 +00:00
} ,
"startupoverlay" : {
2020-11-11 10:54:09 +00:00
"genericTitle" : "The meeting needs to use your microphone and camera." ,
2022-01-18 17:36:05 +00:00
"policyText" : " " ,
2019-07-22 10:10:25 +00:00
"title" : "{{app}} needs to use your microphone and camera."
2019-01-11 23:33:01 +00:00
} ,
"suspendedoverlay" : {
"rejoinKeyTitle" : "Rejoin" ,
"text" : "Press the <i>Rejoin</i> button to reconnect." ,
"title" : "Your video call was interrupted because this computer went to sleep."
} ,
2022-01-18 17:36:05 +00:00
"termsView" : {
2022-09-30 10:06:58 +00:00
"title" : "Terms"
2022-01-18 17:36:05 +00:00
} ,
2022-06-29 13:59:49 +00:00
"toggleTopPanelLabel" : "Toggle top panel" ,
2019-01-11 23:33:01 +00:00
"toolbar" : {
2022-01-18 17:36:05 +00:00
"Settings" : "Settings" ,
2019-01-11 23:33:01 +00:00
"accessibilityLabel" : {
2022-01-18 17:36:05 +00:00
"Settings" : "Toggle settings" ,
2019-01-11 23:33:01 +00:00
"audioOnly" : "Toggle audio only" ,
"audioRoute" : "Select the sound device" ,
2021-07-15 07:26:27 +00:00
"boo" : "Boo" ,
2021-09-14 15:31:30 +00:00
"breakoutRoom" : "Join/leave breakout room" ,
2019-06-24 13:39:22 +00:00
"callQuality" : "Manage video quality" ,
2022-05-07 10:34:18 +00:00
"carmode" : "Car Mode" ,
2019-01-11 23:33:01 +00:00
"cc" : "Toggle subtitles" ,
2021-06-10 12:48:44 +00:00
"chat" : "Open / Close chat" ,
2021-07-13 06:50:08 +00:00
"clap" : "Clap" ,
2022-01-18 17:36:05 +00:00
"collapse" : "Collapse" ,
2019-01-11 23:33:01 +00:00
"document" : "Toggle shared document" ,
2019-10-16 11:11:02 +00:00
"download" : "Download our apps" ,
2020-07-23 08:16:40 +00:00
"embedMeeting" : "Embed meeting" ,
2022-08-26 18:25:04 +00:00
"endConference" : "End meeting for all" ,
2022-01-18 17:36:05 +00:00
"expand" : "Expand" ,
2019-01-11 23:33:01 +00:00
"feedback" : "Leave feedback" ,
"fullScreen" : "Toggle full screen" ,
2022-03-11 13:00:49 +00:00
"giphy" : "Toggle GIPHY menu" ,
2021-09-10 11:05:16 +00:00
"grantModerator" : "Grant Moderator Rights" ,
2021-06-10 12:48:44 +00:00
"hangup" : "Leave the meeting" ,
2023-02-28 14:52:06 +00:00
"heading" : "Toolbar" ,
2019-10-11 14:51:42 +00:00
"help" : "Help" ,
2019-01-11 23:33:01 +00:00
"invite" : "Invite people" ,
"kick" : "Kick participant" ,
2021-07-20 11:31:49 +00:00
"laugh" : "Laugh" ,
2022-08-26 18:25:04 +00:00
"leaveConference" : "Leave meeting" ,
2021-07-13 06:50:08 +00:00
"like" : "Thumbs Up" ,
2022-03-08 09:10:30 +00:00
"linkToSalesforce" : "Link to Salesforce" ,
2020-04-15 13:13:43 +00:00
"lobbyButton" : "Enable/disable lobby mode" ,
2019-01-11 23:33:01 +00:00
"localRecording" : "Toggle local recording controls" ,
2019-04-18 12:47:52 +00:00
"lockRoom" : "Toggle meeting password" ,
2021-06-10 12:48:44 +00:00
"moreActions" : "More actions" ,
2019-01-11 23:33:01 +00:00
"moreActionsMenu" : "More actions menu" ,
2020-02-20 14:52:41 +00:00
"moreOptions" : "Show more options" ,
2021-06-10 12:48:44 +00:00
"mute" : "Mute / Unmute" ,
2020-02-24 12:47:37 +00:00
"muteEveryone" : "Mute everyone" ,
2021-02-24 21:45:07 +00:00
"muteEveryoneElse" : "Mute everyone else" ,
2021-12-15 13:18:41 +00:00
"muteEveryoneElsesVideoStream" : "Stop everyone else's video" ,
2022-01-18 17:36:05 +00:00
"muteEveryonesVideoStream" : "Stop everyone's video" ,
2022-07-20 12:31:17 +00:00
"noiseSuppression" : "Noise suppression" ,
2021-04-21 13:48:05 +00:00
"participants" : "Participants" ,
2019-01-11 23:33:01 +00:00
"pip" : "Toggle Picture-in-Picture mode" ,
2019-10-07 12:35:04 +00:00
"privateMessage" : "Send private message" ,
2019-01-11 23:33:01 +00:00
"profile" : "Edit your profile" ,
2021-06-10 12:48:44 +00:00
"raiseHand" : "Raise / Lower your hand" ,
2021-07-13 06:50:08 +00:00
"reactionsMenu" : "Open / Close reactions menu" ,
2019-01-11 23:33:01 +00:00
"recording" : "Toggle recording" ,
"remoteMute" : "Mute participant" ,
2021-02-24 21:45:07 +00:00
"remoteVideoMute" : "Disable camera of participant" ,
2020-04-01 07:47:51 +00:00
"security" : "Security options" ,
2022-01-18 17:36:05 +00:00
"selectBackground" : "Select Background" ,
2022-01-28 10:47:54 +00:00
"selfView" : "Toggle self view" ,
2019-01-11 23:33:01 +00:00
"shareRoom" : "Invite someone" ,
2021-06-10 12:48:44 +00:00
"shareYourScreen" : "Start / Stop sharing your screen" ,
2022-01-18 17:36:05 +00:00
"shareaudio" : "Share audio" ,
2022-01-26 09:12:28 +00:00
"sharedvideo" : "Toggle video sharing" ,
2019-01-11 23:33:01 +00:00
"shortcuts" : "Toggle shortcuts" ,
2019-06-19 13:32:09 +00:00
"show" : "Show on stage" ,
2021-08-23 09:57:56 +00:00
"silence" : "Silence" ,
2022-11-22 13:56:37 +00:00
"speakerStats" : "Toggle participants statistics" ,
2021-07-13 06:50:08 +00:00
"surprised" : "Surprised" ,
2019-01-11 23:33:01 +00:00
"tileView" : "Toggle tile view" ,
"toggleCamera" : "Toggle camera" ,
2020-04-01 13:09:48 +00:00
"toggleFilmstrip" : "Toggle filmstrip" ,
2021-06-10 12:48:44 +00:00
"videoblur" : "Toggle video blur" ,
2022-09-30 14:50:45 +00:00
"videomute" : "Start / Stop camera" ,
"whiteboard" : "Show / Hide whiteboard"
2019-01-11 23:33:01 +00:00
} ,
"addPeople" : "Add people to your call" ,
2019-08-02 17:22:19 +00:00
"audioOnlyOff" : "Disable low bandwidth mode" ,
"audioOnlyOn" : "Enable low bandwidth mode" ,
2019-01-11 23:33:01 +00:00
"audioRoute" : "Select the sound device" ,
2022-01-18 17:36:05 +00:00
"audioSettings" : "Audio settings" ,
2019-01-11 23:33:01 +00:00
"authenticate" : "Authenticate" ,
2021-07-15 07:26:27 +00:00
"boo" : "Boo" ,
2019-06-24 13:39:22 +00:00
"callQuality" : "Manage video quality" ,
2019-01-11 23:33:01 +00:00
"chat" : "Open / Close chat" ,
2021-07-13 06:50:08 +00:00
"clap" : "Clap" ,
2019-03-05 14:26:45 +00:00
"closeChat" : "Close chat" ,
2021-07-13 06:50:08 +00:00
"closeReactionsMenu" : "Close reactions menu" ,
2022-07-20 12:31:17 +00:00
"disableNoiseSuppression" : "Disable noise suppression" ,
2021-08-23 09:57:56 +00:00
"disableReactionSounds" : "You can disable reaction sounds for this meeting" ,
2019-01-11 23:33:01 +00:00
"documentClose" : "Close shared document" ,
"documentOpen" : "Open shared document" ,
2019-10-16 11:11:02 +00:00
"download" : "Download our apps" ,
2020-04-16 11:26:44 +00:00
"e2ee" : "End-to-End Encryption" ,
2020-07-23 08:16:40 +00:00
"embedMeeting" : "Embed meeting" ,
2023-03-06 13:14:52 +00:00
"enableNoiseSuppression" : "Enable noise suppression" ,
2022-08-26 18:25:04 +00:00
"endConference" : "End meeting for all" ,
2019-01-11 23:33:01 +00:00
"enterFullScreen" : "View full screen" ,
2019-03-05 14:26:45 +00:00
"enterTileView" : "Enter tile view" ,
2019-01-11 23:33:01 +00:00
"exitFullScreen" : "Exit full screen" ,
2019-03-05 14:26:45 +00:00
"exitTileView" : "Exit tile view" ,
2019-01-11 23:33:01 +00:00
"feedback" : "Leave feedback" ,
2022-03-11 13:00:49 +00:00
"giphy" : "Toggle GIPHY menu" ,
2021-06-10 12:48:44 +00:00
"hangup" : "Leave the meeting" ,
2019-10-11 14:51:42 +00:00
"help" : "Help" ,
2022-09-30 14:50:45 +00:00
"hideWhiteboard" : "Hide whiteboard" ,
2019-01-11 23:33:01 +00:00
"invite" : "Invite people" ,
2021-09-14 15:31:30 +00:00
"joinBreakoutRoom" : "Join breakout room" ,
2021-07-20 11:31:49 +00:00
"laugh" : "Laugh" ,
2021-09-14 15:31:30 +00:00
"leaveBreakoutRoom" : "Leave breakout room" ,
2022-08-26 18:25:04 +00:00
"leaveConference" : "Leave meeting" ,
2021-07-13 06:50:08 +00:00
"like" : "Thumbs Up" ,
2022-03-08 09:10:30 +00:00
"linkToSalesforce" : "Link to Salesforce" ,
2020-04-15 13:13:43 +00:00
"lobbyButtonDisable" : "Disable lobby mode" ,
"lobbyButtonEnable" : "Enable lobby mode" ,
2019-01-11 23:33:01 +00:00
"login" : "Login" ,
"logout" : "Logout" ,
2019-03-05 14:26:45 +00:00
"lowerYourHand" : "Lower your hand" ,
2019-01-11 23:33:01 +00:00
"moreActions" : "More actions" ,
2020-02-20 14:52:41 +00:00
"moreOptions" : "More options" ,
2019-01-11 23:33:01 +00:00
"mute" : "Mute / Unmute" ,
2020-02-24 12:47:37 +00:00
"muteEveryone" : "Mute everyone" ,
2021-02-24 21:45:07 +00:00
"muteEveryonesVideo" : "Disable everyone's camera" ,
2020-02-05 18:10:57 +00:00
"noAudioSignalDesc" : "If you did not purposely mute it from system settings or hardware, consider switching the device." ,
"noAudioSignalDescSuggestion" : "If you did not purposely mute it from system settings or hardware, consider switching to the suggested device." ,
"noAudioSignalDialInDesc" : "You can also dial-in using:" ,
2020-03-30 14:17:18 +00:00
"noAudioSignalDialInLinkDesc" : "Dial-in numbers" ,
2022-01-18 17:36:05 +00:00
"noAudioSignalTitle" : "There is no input coming from your mic!" ,
2022-07-20 12:31:17 +00:00
"noiseSuppression" : "Noise suppression" ,
2020-03-04 13:35:22 +00:00
"noisyAudioInputDesc" : "It sounds like your microphone is making noise, please consider muting or changing the device." ,
2022-01-18 17:36:05 +00:00
"noisyAudioInputTitle" : "Your microphone appears to be noisy!" ,
2019-03-05 14:26:45 +00:00
"openChat" : "Open chat" ,
2021-07-13 06:50:08 +00:00
"openReactionsMenu" : "Open reactions menu" ,
2021-04-21 13:48:05 +00:00
"participants" : "Participants" ,
2019-01-11 23:33:01 +00:00
"pip" : "Enter Picture-in-Picture mode" ,
2019-10-07 12:35:04 +00:00
"privateMessage" : "Send private message" ,
2019-01-11 23:33:01 +00:00
"profile" : "Edit your profile" ,
"raiseHand" : "Raise / Lower your hand" ,
2019-03-05 14:26:45 +00:00
"raiseYourHand" : "Raise your hand" ,
2021-07-15 07:26:27 +00:00
"reactionBoo" : "Send boo reaction" ,
2021-07-13 06:50:08 +00:00
"reactionClap" : "Send clap reaction" ,
2021-07-20 11:31:49 +00:00
"reactionLaugh" : "Send laugh reaction" ,
2021-07-13 06:50:08 +00:00
"reactionLike" : "Send thumbs up reaction" ,
2021-08-23 09:57:56 +00:00
"reactionSilence" : "Send silence reaction" ,
2021-07-13 06:50:08 +00:00
"reactionSurprised" : "Send surprised reaction" ,
2020-04-01 07:47:51 +00:00
"security" : "Security options" ,
2022-01-18 17:36:05 +00:00
"selectBackground" : "Select background" ,
"shareRoom" : "Invite someone" ,
2021-04-12 07:37:39 +00:00
"shareaudio" : "Share audio" ,
2021-05-13 11:36:19 +00:00
"sharedvideo" : "Share video" ,
2019-01-11 23:33:01 +00:00
"shortcuts" : "View shortcuts" ,
2022-09-30 14:50:45 +00:00
"showWhiteboard" : "Show whiteboard" ,
2021-08-23 09:57:56 +00:00
"silence" : "Silence" ,
2022-11-22 13:56:37 +00:00
"speakerStats" : "Participants stats" ,
2019-03-05 14:26:45 +00:00
"startScreenSharing" : "Start screen sharing" ,
2022-08-31 15:57:31 +00:00
"startSubtitles" : "Subtitles • {{language}}" ,
2021-07-07 08:07:30 +00:00
"stopAudioSharing" : "Stop audio sharing" ,
2019-03-05 14:26:45 +00:00
"stopScreenSharing" : "Stop screen sharing" ,
2021-05-13 11:36:19 +00:00
"stopSharedVideo" : "Stop video" ,
2022-01-18 17:36:05 +00:00
"stopSubtitles" : "Stop subtitles" ,
2021-07-13 06:50:08 +00:00
"surprised" : "Surprised" ,
2019-01-11 23:33:01 +00:00
"talkWhileMutedPopup" : "Trying to speak? You are muted." ,
"tileViewToggle" : "Toggle tile view" ,
"toggleCamera" : "Toggle camera" ,
2022-01-18 17:36:05 +00:00
"videoSettings" : "Video settings" ,
"videomute" : "Start / Stop camera"
2019-01-11 23:33:01 +00:00
} ,
"transcribing" : {
2019-03-05 14:26:45 +00:00
"ccButtonTooltip" : "Start / Stop subtitles" ,
2018-07-26 16:33:40 +00:00
"error" : "Transcribing failed. Please try again." ,
2018-09-11 10:16:01 +00:00
"expandedLabel" : "Transcribing is currently on" ,
2018-07-26 16:33:40 +00:00
"failedToStart" : "Transcribing failed to start" ,
"labelToolTip" : "The meeting is being transcribed" ,
2019-01-11 23:33:01 +00:00
"off" : "Transcribing stopped" ,
"pending" : "Preparing to transcribe the meeting..." ,
2022-10-18 11:42:51 +00:00
"sourceLanguageDesc" : "Currently the meeting language is set to <b>{{sourceLanguage}}</b>. <br/> You can change it from " ,
"sourceLanguageHere" : "here" ,
2018-08-24 18:12:12 +00:00
"start" : "Start showing subtitles" ,
2019-01-11 23:33:01 +00:00
"stop" : "Stop showing subtitles" ,
2022-08-31 15:57:31 +00:00
"subtitles" : "Subtitles" ,
"subtitlesOff" : "Off" ,
2019-01-11 23:33:01 +00:00
"tr" : "TR"
2017-02-17 00:59:30 +00:00
} ,
2023-02-28 10:21:15 +00:00
"unpinParticipant" : "{{participantName}} - Unpin" ,
2019-01-11 23:33:01 +00:00
"userMedia" : {
"androidGrantPermissions" : "Select <b><i>Allow</i></b> when your browser asks for permissions." ,
"chromeGrantPermissions" : "Select <b><i>Allow</i></b> when your browser asks for permissions." ,
"edgeGrantPermissions" : "Select <b><i>Yes</i></b> when your browser asks for permissions." ,
2021-02-02 00:20:39 +00:00
"electronGrantPermissions" : "Trying to access your camera and microphone" ,
2019-01-11 23:33:01 +00:00
"firefoxGrantPermissions" : "Select <b><i>Share Selected Device</i></b> when your browser asks for permissions." ,
"iexplorerGrantPermissions" : "Select <b><i>OK</i></b> when your browser asks for permissions." ,
"nwjsGrantPermissions" : "Please grant permissions to use your camera and microphone" ,
"operaGrantPermissions" : "Select <b><i>Allow</i></b> when your browser asks for permissions." ,
"react-nativeGrantPermissions" : "Select <b><i>Allow</i></b> when your browser asks for permissions." ,
"safariGrantPermissions" : "Select <b><i>OK</i></b> when your browser asks for permissions."
} ,
"videoSIPGW" : {
2017-11-21 22:45:14 +00:00
"busy" : "We're working on freeing resources. Please try again in a few minutes." ,
"busyTitle" : "The Room service is currently busy" ,
2019-07-22 10:10:25 +00:00
"errorAlreadyInvited" : "{{displayName}} already invited" ,
2019-01-11 23:33:01 +00:00
"errorInvite" : "Conference not established yet. Please try again later." ,
2017-11-21 22:45:14 +00:00
"errorInviteFailed" : "We're working on resolving the issue. Please try again later." ,
2019-07-22 10:10:25 +00:00
"errorInviteFailedTitle" : "Inviting {{displayName}} failed" ,
2019-01-11 23:33:01 +00:00
"errorInviteTitle" : "Error inviting room" ,
2019-07-22 10:10:25 +00:00
"pending" : "{{displayName}} has been invited"
2017-11-21 22:45:14 +00:00
} ,
2017-05-15 18:55:08 +00:00
"videoStatus" : {
2021-10-08 08:05:16 +00:00
"adjustFor" : "Adjust for:" ,
2018-05-16 14:00:16 +00:00
"audioOnly" : "AUD" ,
2019-08-02 17:22:19 +00:00
"audioOnlyExpanded" : "You are in low bandwidth mode. In this mode you will receive only audio and screen sharing." ,
2022-01-18 17:36:05 +00:00
"bestPerformance" : "Best performance" ,
2019-06-24 13:39:22 +00:00
"callQuality" : "Video Quality" ,
2017-08-09 19:40:03 +00:00
"hd" : "HD" ,
2019-07-25 16:15:32 +00:00
"hdTooltip" : "Viewing high definition video" ,
2017-08-09 19:40:03 +00:00
"highDefinition" : "High definition" ,
2022-01-18 17:36:05 +00:00
"highestQuality" : "Highest quality" ,
2018-04-03 16:42:59 +00:00
"labelTooiltipNoVideo" : "No video" ,
2019-08-02 17:22:19 +00:00
"labelTooltipAudioOnly" : "Low bandwidth mode enabled" ,
2017-08-09 19:40:03 +00:00
"ld" : "LD" ,
2019-07-25 16:15:32 +00:00
"ldTooltip" : "Viewing low definition video" ,
2017-08-09 19:40:03 +00:00
"lowDefinition" : "Low definition" ,
2021-09-29 12:06:03 +00:00
"performanceSettings" : "Performance settings" ,
2023-02-28 14:52:33 +00:00
"recording" : "Recording in progress" ,
2017-08-09 19:40:03 +00:00
"sd" : "SD" ,
2019-07-25 16:15:32 +00:00
"sdTooltip" : "Viewing standard definition video" ,
2023-02-28 14:52:33 +00:00
"standardDefinition" : "Standard definition" ,
"streaming" : "Streaming in progress"
2018-06-19 16:43:33 +00:00
} ,
2019-01-11 23:33:01 +00:00
"videothumbnail" : {
2020-12-22 09:12:52 +00:00
"connectionInfo" : "Connection Info" ,
2019-01-11 23:33:01 +00:00
"domute" : "Mute" ,
2020-02-24 12:47:37 +00:00
"domuteOthers" : "Mute everyone else" ,
2022-01-18 17:36:05 +00:00
"domuteVideo" : "Disable camera" ,
2021-02-24 21:45:07 +00:00
"domuteVideoOfOthers" : "Disable camera of everyone else" ,
2019-01-11 23:33:01 +00:00
"flip" : "Flip" ,
2021-09-10 11:05:16 +00:00
"grantModerator" : "Grant Moderator Rights" ,
2021-12-07 08:24:00 +00:00
"hideSelfView" : "Hide self view" ,
2019-01-11 23:33:01 +00:00
"kick" : "Kick out" ,
2023-02-14 10:15:37 +00:00
"mirrorVideo" : "Mirror my video" ,
2018-06-19 16:43:33 +00:00
"moderator" : "Moderator" ,
2019-07-02 13:14:58 +00:00
"mute" : "Participant is muted" ,
2019-01-11 23:33:01 +00:00
"muted" : "Muted" ,
2022-03-29 08:45:09 +00:00
"pinToStage" : "Pin to stage" ,
2020-01-07 14:15:54 +00:00
"remoteControl" : "Start / Stop remote control" ,
2022-01-12 13:32:30 +00:00
"screenSharing" : "Participant is sharing their screen" ,
2019-06-19 13:32:09 +00:00
"show" : "Show on stage" ,
2022-01-28 10:47:54 +00:00
"showSelfView" : "Show self view" ,
2022-03-29 08:45:09 +00:00
"unpinFromStage" : "Unpin" ,
2022-12-06 17:29:33 +00:00
"verify" : "Verify participant" ,
2022-01-18 17:36:05 +00:00
"videoMuted" : "Camera disabled" ,
2019-07-02 13:14:58 +00:00
"videomute" : "Participant has stopped the camera"
2019-01-11 23:33:01 +00:00
} ,
2022-01-18 17:36:05 +00:00
"virtualBackground" : {
"addBackground" : "Add background" ,
"apply" : "Apply" ,
"backgroundEffectError" : "Failed to apply background effect." ,
"blur" : "Blur" ,
"deleteImage" : "Delete image" ,
"desktopShare" : "Desktop share" ,
"desktopShareError" : "Could not create desktop share" ,
"image1" : "Beach" ,
"image2" : "White neutral wall" ,
"image3" : "White empty room" ,
"image4" : "Black floor lamp" ,
"image5" : "Mountain" ,
"image6" : "Forest " ,
"image7" : "Sunrise" ,
"none" : "None" ,
"pleaseWait" : "Please wait..." ,
"removeBackground" : "Remove background" ,
"slightBlur" : "Slight Blur" ,
"title" : "Virtual backgrounds" ,
"uploadedImage" : "Uploaded image {{index}}" ,
"webAssemblyWarning" : "WebAssembly not supported" ,
"webAssemblyWarningDescription" : "WebAssembly disabled or not supported by this browser"
} ,
2023-02-08 19:14:53 +00:00
"visitorsLabel" : "Number of visitors: {{count}}" ,
2022-01-18 17:36:05 +00:00
"volumeSlider" : "Volume slider" ,
2019-01-11 23:33:01 +00:00
"welcomepage" : {
"accessibilityLabel" : {
"join" : "Tap to join" ,
"roomname" : "Enter room name"
2018-06-19 16:43:33 +00:00
} ,
2022-01-18 17:36:05 +00:00
"addMeetingName" : "Add Meeting name" ,
2019-07-22 10:10:25 +00:00
"appDescription" : "Go ahead, video chat with the whole team. In fact, invite everyone you know. {{app}} is a fully encrypted, 100% open source video conferencing solution that you can use all day, every day, for free — with no account needed." ,
2019-01-11 23:33:01 +00:00
"audioVideoSwitch" : {
"audio" : "Voice" ,
"video" : "Video"
2018-06-19 16:43:33 +00:00
} ,
2019-01-11 23:33:01 +00:00
"calendar" : "Calendar" ,
"connectCalendarButton" : "Connect your calendar" ,
2019-07-22 10:10:25 +00:00
"connectCalendarText" : "Connect your calendar to view all your meetings in {{app}}. Plus, add {{provider}} meetings to your calendar and start them with one click." ,
2019-01-11 23:33:01 +00:00
"enterRoomTitle" : "Start a new meeting" ,
2020-03-30 15:26:15 +00:00
"getHelp" : "Get help" ,
2019-01-11 23:33:01 +00:00
"go" : "GO" ,
2019-11-04 11:20:16 +00:00
"goSmall" : "GO" ,
2020-11-09 12:29:42 +00:00
"headerSubtitle" : "Secure and high quality meetings" ,
2022-01-18 17:36:05 +00:00
"headerTitle" : "Jitsi Meet" ,
2020-09-08 16:06:06 +00:00
"info" : "Dial-in info" ,
2020-10-19 07:37:19 +00:00
"jitsiOnMobile" : "Jitsi on mobile – download our apps and start a meeting from anywhere" ,
2022-01-18 17:36:05 +00:00
"join" : "CREATE / JOIN" ,
"logo" : {
"calendar" : "Calendar logo" ,
"desktopPreviewThumbnail" : "Desktop preview thumbnail" ,
"googleLogo" : "Google Logo" ,
"logoDeepLinking" : "Jitsi meet logo" ,
"microsoftLogo" : "Microsoft logo" ,
"policyLogo" : "Policy logo"
} ,
2023-03-06 15:13:29 +00:00
"meetingsAccessibilityLabel" : "Meetings" ,
2021-06-10 12:48:44 +00:00
"mobileDownLoadLinkAndroid" : "Download mobile app for Android" ,
"mobileDownLoadLinkFDroid" : "Download mobile app for F-Droid" ,
2022-01-18 17:36:05 +00:00
"mobileDownLoadLinkIos" : "Download mobile app for iOS" ,
2020-06-29 12:17:35 +00:00
"moderatedMessage" : "Or <a href=\"{{url}}\" rel=\"noopener noreferrer\" target=\"_blank\">book a meeting URL</a> in advance where you are the only moderator." ,
2019-01-11 23:33:01 +00:00
"privacy" : "Privacy" ,
"recentList" : "Recent" ,
2020-09-08 16:06:06 +00:00
"recentListDelete" : "Delete entry" ,
2019-01-11 23:33:01 +00:00
"recentListEmpty" : "Your recent list is currently empty. Chat with your team and you will find all your recent meetings here." ,
2022-12-22 13:18:06 +00:00
"recentMeetings" : "Your recent meetings" ,
2019-07-22 10:10:25 +00:00
"reducedUIText" : "Welcome to {{app}}!" ,
2020-06-29 12:17:35 +00:00
"roomNameAllowedChars" : "Meeting name should not contain any of these characters: ?, &, :, ', \", %, #." ,
2019-01-11 23:33:01 +00:00
"roomname" : "Enter room name" ,
"roomnameHint" : "Enter the name or URL of the room you want to join. You may make a name up, just let the people you are meeting know it so that they enter the same name." ,
"sendFeedback" : "Send feedback" ,
2022-09-30 09:07:00 +00:00
"settings" : "Settings" ,
2020-10-19 07:37:19 +00:00
"startMeeting" : "Start meeting" ,
2019-01-11 23:33:01 +00:00
"terms" : "Terms" ,
2022-12-22 13:18:06 +00:00
"title" : "Secure, fully featured, and completely free video conferencing" ,
"upcomingMeetings" : "Your upcoming meetings"
2023-02-28 14:52:06 +00:00
} ,
"whiteboard" : {
"accessibilityLabel" : {
"heading" : "Whiteboard"
}
2015-02-06 15:46:50 +00:00
}
2015-02-20 16:17:46 +00:00
}